Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LifeCycleTest ¶
type LifeCycleTest struct {
// Resource token
Resource string
// Create operation
Create Operation
// Update operations, in order
Updates []Operation
// Command to run before the final delete operation
AssertBeforeDeleteCommand string
// Command to run after the final delete operation
AssertDeleteCommand string
}
func (LifeCycleTest) Run ¶
func (l LifeCycleTest) Run(t *testing.T, harness *ProviderTestHarness)
type Operation ¶
type Operation struct {
// The inputs for the operation
Inputs property.Map
// The expected output for the operation. If ExpectedOutput is nil, no check
// will be made.
ExpectedOutput *property.Map
// A function called on the output of this operation.
Hook func(t *testing.T, inputs property.Map, output property.Map)
// If the test should expect the operation to signal an error.
ExpectFailure bool
// If CheckFailures is non-nil, expect the check step to fail with the
// provided output.
CheckFailures []p.CheckFailure
// The expected diff for this operation
ExpectedDiff *p.DiffResponse
// Command to run to assert test success
AssertCommand string
// Command to run before running the operation
AssertBeforeCommand string
// Command to run after the dry run but before the real operation
AssertAfterDryRunCommand string
// Command to run between delete and create operations in a replace-update
// operation
AssertInMiddleOfReplaceCommand string
// Run a "refresh" (read) before the operation. Ignored on create.
Refresh bool
// If the test should expect the "refresh" to fail.
ExpectRefreshFailure bool
// A function called on the read outputs
RefreshHook func(t *testing.T, res p.ReadResponse, err error)
// Command to run after refresh (if enabled)
AssertAfterRefreshCommand string
}
type ProviderTestHarness ¶
type ProviderTestHarness struct {
TestMachine *testmachine.TestMachine
Provider p.Provider
Server integration.Server
Telemetry *telemetry.TelemetryStuff
}
func NewProviderTestHarness ¶
func NewProviderTestHarness(t *testing.T, tmConfig testmachine.Config) *ProviderTestHarness
func (*ProviderTestHarness) AssertCommand ¶
func (harness *ProviderTestHarness) AssertCommand(t *testing.T, cmd string) bool
func (*ProviderTestHarness) Close ¶
func (harness *ProviderTestHarness) Close()
Click to show internal directories.
Click to hide internal directories.