moto/tests/terraformtests
2023-08-27 18:14:51 +00:00
..
bin Techdebt: Update TF tests (#6661) 2023-08-21 20:33:16 +00:00
etc Techdebt: Update TF tests (#6661) 2023-08-21 20:33:16 +00:00
terraform-provider-aws@96ac19e4c1 Techdebt: Update TF tests (#6661) 2023-08-21 20:33:16 +00:00
test-fixtures Terraform Tests - update to latest TF branch (#5031) 2022-04-16 10:02:57 +00:00
__init__.py Terraform Tests - update to latest TF branch (#5031) 2022-04-16 10:02:57 +00:00
get_tf_services.py Terraform Tests - update to latest TF branch (#5031) 2022-04-16 10:02:57 +00:00
get_tf_tests.py Terraform Tests - update to latest TF branch (#5031) 2022-04-16 10:02:57 +00:00
README.md Lambda: additional optional fields (#6483) 2023-07-06 16:45:29 +00:00
terraform-tests.failures.txt Terraform - Update to latest commit (#5982) 2023-02-25 19:24:03 -01:00
terraform-tests.success.txt Logs: Tagging support (#6734) 2023-08-27 18:14:51 +00:00

Documentation on how to run Terraform Tests can be found here:

http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html#terraform-tests

To get started you need to have Go installed.

One time setup:

go mod init moto

To see a list of available tests:

cd tests/terraformtests/terraform-provider-aws
git submodule init
git submodule update
go test ./internal/service/elb/ -v -list TestAcc

To run a specific test:

moto_server -p 4566
make terraformtests SERVICE_NAME=elb TEST_NAMES=NewTestName

To see the list of tests that currently pass:

python tests/terraformtests/get_tf_services.py
python tests/terraformtests/get_tf_tests.py ec2