mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-16 14:18:42 +00:00
45 lines
953 B
Go
45 lines
953 B
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var t *Tester
|
|
|
|
func TestE2E(tt *testing.T) {
|
|
var err error
|
|
t, err = NewTester("")
|
|
if err != nil {
|
|
tt.Fatalf("failed to new tester. error:%v", err)
|
|
}
|
|
|
|
OutputFail := func(message string, callerSkip ...int) {
|
|
t.OutputDebugLogs()
|
|
Fail(message, callerSkip...)
|
|
}
|
|
|
|
RegisterFailHandler(OutputFail)
|
|
RunSpecs(tt, "registration-operator E2E Suite")
|
|
}
|
|
|
|
// This suite is sensitive to the following environment variables:
|
|
//
|
|
// - KUBECONFIG is the location of the kubeconfig file to use
|
|
var _ = BeforeSuite(func() {
|
|
var err error
|
|
|
|
Eventually(func() error {
|
|
return t.CheckHubReady()
|
|
}, t.EventuallyTimeout, t.EventuallyInterval).Should(Succeed())
|
|
|
|
Eventually(func() error {
|
|
return t.CheckKlusterletOperatorReady()
|
|
}, t.EventuallyTimeout, t.EventuallyInterval).Should(Succeed())
|
|
|
|
err = t.SetBootstrapHubSecret("")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
})
|