Skip to content

Consider introducing statecheck support for Import test mode #365

Open
@austinvalle

Description

@austinvalle

terraform-plugin-testing version

v1.9.0

Use cases

terraform-plugin-testing currently supports a new method of asserting values in Terraform state during Config mode with the statecheck package and the (TestStep).ConfigStateChecks field.

The Import mode for testing also has the (TestStep).ImportStateCheck field for performing state checks after, see:

if step.ImportStateCheck != nil {
logging.HelperResourceTrace(ctx, "Using TestStep ImportStateCheck")
var states []*terraform.InstanceState
for address, r := range importState.RootModule().Resources {
if strings.HasPrefix(address, "data.") {
continue
}
if r.Primary == nil {
continue
}
is := r.Primary.DeepCopy() //nolint:staticcheck // legacy usage
is.Ephemeral.Type = r.Type // otherwise the check function cannot see the type
states = append(states, is)
}
logging.HelperResourceDebug(ctx, "Calling TestStep ImportStateCheck")
if err := step.ImportStateCheck(states); err != nil {
t.Fatal(err)
}
logging.HelperResourceDebug(ctx, "Called TestStep ImportStateCheck")
}

Proposal

We could introduce a similar state check implementation to ConfigStateChecks, with a new field (TestStep).ImportStateChecks. This implementation should be equivalent to the Config mode, since they both use terraform show to grab the JSON state representation.

We could also consider adjusting these tests and our documentation to use the import block, where we would then switch to using the plancheck package for checking values.

References

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions