mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-19 20:46:37 +00:00
* Chore: remove legacy rollout & scope Signed-off-by: Somefive <yd219913@alibaba-inc.com> * remove outdated params Signed-off-by: Somefive <yd219913@alibaba-inc.com> * fix Signed-off-by: Somefive <yd219913@alibaba-inc.com> --------- Signed-off-by: Somefive <yd219913@alibaba-inc.com>
90 lines
2.5 KiB
Go
90 lines
2.5 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package apply
|
|
|
|
import (
|
|
"context"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
oamcore "github.com/oam-dev/kubevela/apis/core.oam.dev"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
|
|
"k8s.io/client-go/rest"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/envtest"
|
|
logf "sigs.k8s.io/controller-runtime/pkg/log"
|
|
"sigs.k8s.io/controller-runtime/pkg/log/zap"
|
|
)
|
|
|
|
var testEnv *envtest.Environment
|
|
var cfg *rest.Config
|
|
var rawClient client.Client
|
|
var k8sApplicator Applicator
|
|
var testScheme = runtime.NewScheme()
|
|
var ns = "test-apply"
|
|
var applyNS corev1.Namespace
|
|
|
|
func TestApplicator(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Applicator Suite")
|
|
}
|
|
|
|
var _ = BeforeSuite(func() {
|
|
By("Bootstrapping test environment")
|
|
testEnv = &envtest.Environment{
|
|
ControlPlaneStartTimeout: time.Minute,
|
|
ControlPlaneStopTimeout: time.Minute,
|
|
CRDDirectoryPaths: []string{
|
|
filepath.Join("../../..", "charts/vela-core/crds"), // this has all the required CRDs,
|
|
},
|
|
}
|
|
var err error
|
|
cfg, err = testEnv.Start()
|
|
Expect(err).ShouldNot(HaveOccurred())
|
|
Expect(cfg).ShouldNot(BeNil())
|
|
|
|
logf.SetLogger(zap.New(zap.UseDevMode(true), zap.WriteTo(GinkgoWriter)))
|
|
Expect(clientgoscheme.AddToScheme(testScheme)).Should(Succeed())
|
|
Expect(oamcore.AddToScheme(testScheme)).Should(Succeed())
|
|
|
|
By("Setting up applicator")
|
|
rawClient, err = client.New(cfg, client.Options{Scheme: testScheme})
|
|
Expect(err).ShouldNot(HaveOccurred())
|
|
Expect(rawClient).ShouldNot(BeNil())
|
|
k8sApplicator = NewAPIApplicator(rawClient)
|
|
|
|
By("Create test namespace")
|
|
applyNS = corev1.Namespace{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: ns,
|
|
},
|
|
}
|
|
Expect(rawClient.Create(context.Background(), &applyNS)).Should(Succeed())
|
|
})
|
|
|
|
var _ = AfterSuite(func() {
|
|
Expect(testEnv.Stop()).Should(Succeed())
|
|
})
|