63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
/*
|
|
Copyright 2020 The KubeSphere 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 notification
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
"k8s.io/client-go/rest"
|
|
"sigs.k8s.io/controller-runtime/pkg/envtest"
|
|
"sigs.k8s.io/controller-runtime/pkg/envtest/printer"
|
|
|
|
"kubesphere.io/kubesphere/pkg/apis"
|
|
"kubesphere.io/kubesphere/pkg/apis/notification/v2beta1"
|
|
)
|
|
|
|
func TestSource(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
suiteName := "Cache Suite"
|
|
RunSpecsWithDefaultAndCustomReporters(t, suiteName, []Reporter{printer.NewlineReporter{}, printer.NewProwReporter(suiteName)})
|
|
}
|
|
|
|
var testenv *envtest.Environment
|
|
var cfg *rest.Config
|
|
|
|
var _ = BeforeSuite(func(done Done) {
|
|
|
|
testenv = &envtest.Environment{
|
|
CRDDirectoryPaths: []string{filepath.Join("..", "..", "..", "config", "crds")},
|
|
}
|
|
|
|
var err error
|
|
cfg, err = testenv.Start()
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(cfg).ToNot(BeNil())
|
|
|
|
Expect(v2beta1.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())
|
|
Expect(apis.AddToScheme(scheme.Scheme)).NotTo(HaveOccurred())
|
|
|
|
close(done)
|
|
}, 60)
|
|
|
|
var _ = AfterSuite(func() {
|
|
Expect(testenv.Stop()).To(Succeed())
|
|
})
|