mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
104 lines
2.5 KiB
Go
104 lines
2.5 KiB
Go
/*
|
|
Copyright 2018 The CDI 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 controller
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
extv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/kubernetes"
|
|
"k8s.io/client-go/rest"
|
|
"sigs.k8s.io/controller-runtime/pkg/envtest"
|
|
"sigs.k8s.io/controller-runtime/pkg/metrics"
|
|
logf "sigs.k8s.io/controller-runtime/pkg/runtime/log"
|
|
|
|
"kubevirt.io/containerized-data-importer/tests/reporters"
|
|
)
|
|
|
|
func TestOperator(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecsWithDefaultAndCustomReporters(t, "Controller Suite", reporters.NewReporters())
|
|
}
|
|
|
|
var testenv *envtest.Environment
|
|
var cfg *rest.Config
|
|
var clientset *kubernetes.Clientset
|
|
|
|
var crd = &extv1beta1.CustomResourceDefinition{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cdis.cdi.kubevirt.io",
|
|
Labels: map[string]string{
|
|
"operator.cdi.kubevirt.io": "",
|
|
},
|
|
},
|
|
Spec: extv1beta1.CustomResourceDefinitionSpec{
|
|
Group: "cdi.kubevirt.io",
|
|
Names: extv1beta1.CustomResourceDefinitionNames{
|
|
Kind: "CDI",
|
|
ListKind: "CDIList",
|
|
Plural: "cdis",
|
|
Singular: "cdi",
|
|
},
|
|
Scope: "Cluster",
|
|
Version: "v1alpha1",
|
|
},
|
|
}
|
|
|
|
var _ = BeforeSuite(func(done Done) {
|
|
logf.SetLogger(logf.ZapLoggerTo(GinkgoWriter, true))
|
|
|
|
env := &envtest.Environment{}
|
|
|
|
var err error
|
|
cfg, err = env.Start()
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
clientset, err = kubernetes.NewForConfig(cfg)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
opts := envtest.CRDInstallOptions{
|
|
CRDs: []*extv1beta1.CustomResourceDefinition{crd},
|
|
}
|
|
|
|
crds, err := envtest.InstallCRDs(cfg, opts)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
err = envtest.WaitForCRDs(cfg, crds, envtest.CRDInstallOptions{})
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
// Prevent the metrics listener being created
|
|
metrics.DefaultBindAddress = "0"
|
|
|
|
testenv = env
|
|
|
|
close(done)
|
|
}, 60)
|
|
|
|
var _ = AfterSuite(func() {
|
|
if testenv == nil {
|
|
return
|
|
}
|
|
|
|
testenv.Stop()
|
|
|
|
// Put the DefaultBindAddress back
|
|
metrics.DefaultBindAddress = ":8080"
|
|
})
|