Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TestEnvironment ¶
type TestEnvironment struct { manager.Manager client.Client Config *rest.Config Kubeconfig []byte // contains filtered or unexported fields }
TestEnvironment encapsulates a Kubernetes local test environment.
func (*TestEnvironment) StartManager ¶
func (t *TestEnvironment) StartManager(ctx context.Context) error
StartManager starts the test controller against the local API server.
func (*TestEnvironment) Stop ¶
func (t *TestEnvironment) Stop() error
Stop stops the test environment.
type TestEnvironmentConfiguration ¶
type TestEnvironmentConfiguration struct {
// contains filtered or unexported fields
}
func NewTestEnvironmentConfiguration ¶
func NewTestEnvironmentConfiguration(crdDirectoryPaths []string, s *apimachineryscheme.Scheme) *TestEnvironmentConfiguration
NewTestEnvironmentConfiguration creates a new test environment configuration for running tests.
func (*TestEnvironmentConfiguration) Build ¶
func (t *TestEnvironmentConfiguration) Build(s *apimachineryscheme.Scheme) (*TestEnvironment, error)
Build creates a new environment spinning up a local api-server. This function should be called only once for each package you're running tests within, usually the environment is initialized in a suite_test.go file within a `BeforeSuite` ginkgo block.
Click to show internal directories.
Click to hide internal directories.