Documentation
¶
Overview ¶
Package drivertest provides a conformance test for implementations of runtimevar.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RunConformanceTests ¶
func RunConformanceTests(t *testing.T, newHarness HarnessMaker)
RunConformanceTests runs conformance tests for provider implementations of runtimevar.
Types ¶
type Harness ¶
type Harness interface { // MakeVar creates a *runtimevar.Variable to watch the given variable. MakeVar(ctx context.Context, name string, decoder *runtimevar.Decoder) (*runtimevar.Variable, error) // CreateVariable creates the variable with the given contents in the provider. CreateVariable(ctx context.Context, name string, val []byte) error // UpdateVariable updates an existing variable to have the given contents in the provider. UpdateVariable(ctx context.Context, name string, val []byte) error // DeleteVariable deletes an existing variable in the provider. DeleteVariable(ctx context.Context, name string) error // Close is called when the test is complete. Close() }
Harness descibes the functionality test harnesses must provide to run conformance tests.
type HarnessMaker ¶
HarnessMaker describes functions that construct a harness for running tests. It is called exactly once per test; Harness.Close() will be called when the test is complete.
Click to show internal directories.
Click to hide internal directories.