Files
open-cluster-management/test/e2e/e2e_suite_test.go
2020-08-13 14:10:13 +08:00

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())
})