Running all the tests for this provider requires access to HCP Terraform with a full feature set; most tests can be run against your own installation of Terraform Enterprise.
If you are planning to run the full suite of tests or work on policy sets, registry modules, or workspaces, you'll need to set up repositories for them in GitHub.
Your policy set repository will need the following:
- A policy set stored in a subdirectory
- A branch other than
main
.
Your registry module repository will need to be a valid module. It will need the following:
- To be named
terraform-<PROVIDER>-<NAME>
- At least one valid SemVer tag in the format
x.y.z
terraform-random-module is a good example repo.
Your workspace repository will need the following:
- A branch other than
main
.
To run all tests, you will need to set the following environment variables:
A hostname and token must be provided in order to run the acceptance tests. By
default, these are loaded from the credentials
in the CLI config
file. You can override
these values with the environment variables specified below:
TFE_HOSTNAME
- URL of a HCP Terraform or Terraform Enterprise instance to be used for testing, without the scheme. Example:tfe.local
TFE_TOKEN
- A user API token for an administrator account on the HCP Terraform or Terraform Enterprise instance being used for testing.
TFE_USER1
andTFE_USER2
: The usernames of two pre-existing users on the HCP Terraform or Terraform Enterprise instance being used for testing. Required for running team membership tests.GITHUB_TOKEN
- GitHub personal access token. Used to establish a VCS provider connection.GITHUB_POLICY_SET_IDENTIFIER
- GitHub policy set repository identifier in the formatusername/repository
. Required for running policy set tests.GITHUB_POLICY_SET_BRANCH
: A GitHub branch for the repository specified byGITHUB_POLICY_SET_IDENTIFIER
. Required for running policy set tests.GITHUB_POLICY_SET_PATH
: A GitHub subdirectory for the repository specified byGITHUB_POLICY_SET_IDENTIFIER
. Required for running policy set tests.GITHUB_REGISTRY_MODULE_IDENTIFIER
- GitHub registry module repository identifier in the formatusername/repository
. Required for running registry module tests.GITHUB_WORKSPACE_IDENTIFIER
- GitHub workspace repository identifier in the formatusername/repository
. Required for running workspace tests.GITHUB_WORKSPACE_BRANCH
: A GitHub branch for the repository specified byGITHUB_WORKSPACE_IDENTIFIER
. Required for running workspace tests.ENABLE_TFE
- Some tests cover features available only in HCP Terraform. To skip these tests when running against a Terraform Enterprise instance, setENABLE_TFE=1
.RUN_TASKS_URL
- External URL to use for testing Run Tasks operations, for exampleRUN_TASKS_URL=http://somewhere.local:8080/pass
. Required for running run tasks tests.RUN_TASKS_HMAC
- The optional HMAC Key that should be used for Run Task operations. The default is no key.GITHUB_APP_INSTALLATION_ID
- GitHub App installation internal id in the formatghain-xxxxxxx
. Required for running any tests that use GitHub App VCS (workspace, policy sets, registry module).GITHUB_APP_INSTALLATION_NAME
- GitHub App installation name. Required for running tfe_github_app_installation data source test.
Note: In order to run integration tests for Paid features you will need a token TFE_TOKEN
with HCP Terraform or Terraform Enterprise administrator privileges, otherwise the attempt to upgrade an organization's feature set will fail.
You can set your environment variables up however you prefer. The following are instructions for setting up environment variables using envchain.
-
Make sure you have envchain installed. Instructions for this can be found in the envchain README.
-
Pick a namespace for storing your environment variables. I suggest
terraform-provider-tfe
or something similar. -
For each environment variable you need to set, run the following command:
envchain --set YOUR_NAMESPACE_HERE ENVIRONMENT_VARIABLE_HERE
OR
Set all of the environment variables at once with the following command:
envchain --set YOUR_NAMESPACE_HERE TFE_HOSTNAME TFE_TOKEN TFE_USER1 TFE_USER2 GITHUB_TOKEN GITHUB_POLICY_SET_IDENTIFIER GITHUB_POLICY_SET_BRANCH GITHUB_POLICY_SET_PATH GITHUB_REGISTRY_MODULE_IDENTIFIER GITHUB_WORKSPACE_IDENTIFIER GITHUB_WORKSPACE_BRANCH GITHUB_APP_INSTALLATION_ID GITHUB_APP_INSTALLATION_NAME
There are two types of tests one can run for the provider: acceptance tests and unit tests. You can run acceptance tests using the Makefile target testacc
and unit tests using the Makefile target test
. Typically, when you write a test for a particular resource or data source it will be referred to as an acceptance test. On the other hand, unit tests are reserved for resource helpers or provider specific logic. These are semantics used by the Terraform Plugin SDKv2 and are maintained here for consistency, learn more about Acceptance Tests. Furthermore, resource tests make use of the Terraform Plugin SDKv2 helper, resource.Test(), which requires the environment variable TF_ACC
to be set in order to run.
Note: The difference between make testacc
and make test
is whether TF_ACC=1
is set or not. However, you can still run unit tests using the testacc
target.
$ envchain YOUR_NAMESPACE_HERE make testacc
$ make testacc
The commands below use notification configurations as an example.
$ TESTARGS="-run TestAccTFENotificationConfiguration" envchain YOUR_NAMESPACE_HERE make testacc
$ TESTARGS="-run TestAccTFENotificationConfiguration" make testacc
$ envchain YOUR_NAMESPACE_HERE make test
$ make test
The commands below test the organization run task helper as an example.
$ TESTARGS="-run TestFetchOrganizationRunTask" envchain YOUR_NAMESPACE_HERE make test
$ TESTARGS="-run TestFetchOrganizationRunTask" make test