mirror of
https://github.com/kubevela/kubevela.git
synced 2026-04-22 10:37:04 +00:00
* upgrade K8s dependency to v0.21 * update CRD for new version of controller-runtime * fix ci component revision create must fill Raw in runtime.RawExtension * try fix test * start control plane timeout set to 1min and fix tests * add timeout for env test start and stop * longer timeout time for BeforeSuit function * upgrade kubebuilder and k8s cluster version to match with v1.21.2 in github action * fix test * fix resource tracker ownerRef override * update developer guides
94 lines
2.6 KiB
Go
94 lines
2.6 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"
|
|
. "github.com/onsi/gomega"
|
|
|
|
oamcore "github.com/oam-dev/kubevela/apis/core.oam.dev"
|
|
oamstd "github.com/oam-dev/kubevela/apis/standard.oam.dev/v1alpha1"
|
|
|
|
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(done Done) {
|
|
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())
|
|
Expect(oamstd.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())
|
|
|
|
close(done)
|
|
}, 300)
|
|
|
|
var _ = AfterSuite(func() {
|
|
Expect(testEnv.Stop()).Should(Succeed())
|
|
})
|