Acceptance Tests
Implement provider resource and data source acceptance tests with the terraform-plugin-testing module. These tests are designed to execute Terraform commands against real Terraform configurations, simulating practitioner experiences with creating, refreshing, updating, and deleting infrastructure.
This page only describes requirements of using the testing module with a framework provider. Refer to the testing module documentation for additional information on all available functionality in tests.
Requirements
The testing module must know how to reference your provider code before Terraform commands and configurations can succeed. This is achieved by pointing the testing module at a provider server which wraps your provider.
Use one of the resource.TestCase
type ProtoV6ProviderFactories
field for protocol version 6 or ProtoV5ProviderFactories
field for protocol version 5. It is only necessary to test with the single protocol version matching the production provider server, typically defined in the main.go
file of the provider codebase.
Protocol Version 6
Use the providerserver.NewProtocol6WithError
helper function to implement the provider server in the ProtoV6ProviderFactories
field.
Protocol Version 5
Use the providerserver.NewProtocol5WithError
helper function to implement the provider server in the ProtoV5ProviderFactories
field.
Troubleshooting
No id found in attributes
Tip
terraform-plugin-testing version 1.5.0 and later no longer require managed resources and data resources to implement the id
attribute.
In SDKv2, resources and data sources automatically included an implicit, root level id
attribute. In the framework, the id
attribute is not implicitly added.
When testing resources and data sources without the id
attribute, the acceptance testing framework will return errors such as:
To avoid this, add a root level id
attribute to resource and data source schemas. Ensure the attribute value is appropriately written to state. Conventionally, id
is a computed attribute that contains the identifier for the resource.
For example, in the Schema
method implementation of a datasource.DataSource
or resource.Resource
: