Releases: hashicorp/terraform-plugin-testing
Releases · hashicorp/terraform-plugin-testing
v1.4.0
FEATURES:
- tfjsonpath: Introduced new
tfjsonpath
package which contains methods that allow traversal of Terraform JSON data (#154) - plancheck: Added
ExpectUnknownValue
built-in plan check, which asserts that a given attribute has an unknown value (#154) - plancheck: Added
ExpectSensitiveValue
built-in plan check, which asserts that a given attribute has a sensitive value (#154)
v1.3.0
FEATURES:
- tfversion: Introduced new
tfversion
package with interface and built-in Terraform version check functionality (#128) - tfversion: Added
SkipAbove
built-in version check, which skips the test if the Terraform CLI version is above the given maximum. (#128) - tfversion: Added
SkipBelow
built-in version check, which skips the test if the Terraform CLI version is below the given minimum. (#128) - tfversion: Added
SkipBetween
built-in version check, which skips the test if the Terraform CLI version is between the given minimum (inclusive) and maximum (exclusive). (#128) - tfversion: Added
SkipIf
built-in version check, which skips the test if the Terraform CLI version matches the given version. (#128) - tfversion: Added
RequireAbove
built-in version check, which fails the test if the Terraform CLI version is below the given maximum. (#128) - tfversion: Added
RequireBelow
built-in version check, which fails the test if the Terraform CLI version is above the given minimum. (#128) - tfversion: Added
RequireBetween
built-in version check, fails the test if the Terraform CLI version is outside the given minimum (exclusive) and maximum (inclusive). (#128) - tfversion: Added
RequireNot
built-in version check, which fails the test if the Terraform CLI version matches the given version. (#128) - tfversion: Added
Any
built-in version check, which fails the test if none of the given sub-checks return a nil error and empty skip message. (#128) - tfversion: Added
All
built-in version check, which fails or skips the test if any of the given sub-checks return a non-nil error or non-empty skip message. (#128)
BUG FIXES:
- helper/resource: Fix path used when persisting working directory (#113)
v1.2.0
NOTES:
- This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#91)
- helper/resource: Deprecated
PrefixedUniqueId()
andUniqueId()
. Use thegithub.com/hashicorp/terraform-plugin-sdk/v2/helper/id
package instead. (#96) - helper/resource: Deprecated
RetryContext()
,StateChangeConf
, and associated*Error
types. Use thegithub.com/hashicorp/terraform-plugin-sdk/v2/helper/retry
package instead. (#96) - helper/resource: Deprecated Terraform module-based
TestCheckFunc
, such asTestCheckModuleResourceAttr
. Provider testing should always be possible within the root module of a Terraform configuration. Terraform module testing should be performed with Terraform core functionality or using tooling outside this Go module. (#109)
FEATURES:
- plancheck: Introduced new
plancheck
package with interface and built-in plan check functionality (#63) - plancheck: Added
ExpectResourceAction
built-in plan check, which asserts that a given resource will have a specific resource change type in the plan (#63) - plancheck: Added
ExpectEmptyPlan
built-in plan check, which asserts that there are no resource changes in the plan (#63) - plancheck: Added
ExpectNonEmptyPlan
built-in plan check, which asserts that there is at least one resource change in the plan (#63)
ENHANCEMENTS:
- helper/resource: Added plan check functionality to config and refresh modes with new fields
TestStep.ConfigPlanChecks
andTestStep.RefreshPlanChecks
(#63)
v1.1.0
FEATURES:
- helper/resource: Added
TF_ACC_PERSIST_WORKING_DIR
environment variable to allow persisting of Terraform files generated during each test step (#18) - helper/resource: Added
TestCase
typeWorkingDir
field to allow specifying the base directory where testing files used by the testing module are generated (#18)