|
| 1 | +.PHONY: static-tests unit-tests integration-tests e2e-tests init |
| 2 | + |
| 3 | +# OS can be "Linux" or "macOS" |
| 4 | +OS ?= Linux |
| 5 | +# ARCH can be "x86_64" or "arm64" |
| 6 | +ARCH ?= x86_64 |
| 7 | + |
| 8 | +TERRAFORM_VERSION := 1.0.10 |
| 9 | +TFLINT_VERSION := 0.33.1 |
| 10 | + |
| 11 | + |
| 12 | +SHELL := /usr/bin/env bash |
| 13 | + |
| 14 | +static-tests: setup-env |
| 15 | + rm .terraform.lock.hcl plan.out plan.out.json 2> /dev/null || true |
| 16 | + # should not require any aws credentials to test against, should be safe to run as github checks on pull requests |
| 17 | + terraform init || ( echo 'FAILED: terraform init failed'; exit 1 ) |
| 18 | + terraform validate || ( echo 'FAILED: terraform validate failed'; exit 1 ) |
| 19 | + terraform fmt -check -recursive ./ || ( echo 'FAILED: all tf files should be formatted using "terraform fmt -recursive ./"'; exit 1 ) |
| 20 | + tflint --init && tflint --var='region=us-west-1' --var='profile=default' ./ || ( echo 'FAILED: tflint found issues'; exit 1 ) |
| 21 | + |
| 22 | +unit-tests: setup-env |
| 23 | + # Should test code paths in an individual module. terratest, or `terraform test`, this is where you want to test different regions, use retries to smooth transient errors |
| 24 | + # Should not run automatically on PR's from un-trusted contributors |
| 25 | + export PATH=$(shell pwd)/build/bin:$${PATH} &&\ |
| 26 | + cd test && \ |
| 27 | + go test -timeout 30m -json | tee >(go-test-report) | jq -jr .Output 2> /dev/null | sed 's/null//g';\ |
| 28 | + retval_bash="$${PIPESTATUS[0]}" retval_zsh="$${pipestatus[1]}" ;\ |
| 29 | + exit $$retval_bash $$retval_zsh |
| 30 | + |
| 31 | +integration-tests: |
| 32 | + # Should test code paths in a module of modules and run when on eof the sub-modules is updated. terratest, or `terraform test` use retries to smooth transient errors |
| 33 | + # Should not run automatically on PR's from un-trusted contributors, and should only be run on modules where one sub-module is changed |
| 34 | + echo "todo" |
| 35 | + exit 1 |
| 36 | + |
| 37 | +e2e-tests: |
| 38 | + # Should test code paths in `deploy/` module. Unsure whether it should use tf cloud. terratest, or `terraform test`. |
| 39 | + # For deploys that take long you could skip destroy between runs, so e2e is just updating what changed from last iteration, use retries to smooth transient errors. |
| 40 | + # Should not run automatically on PR's from any contributors. Update(no destroy) tests run on `/do-e2e-tests` PR comment from maintainers. Full e2e run on release. |
| 41 | + echo "todo" |
| 42 | + exit 1 |
| 43 | + |
| 44 | +setup-env: |
| 45 | + # using a bin path specific to this project so that different projects can use different versions of the tooling |
| 46 | + mkdir -p build/bin/ &&\ |
| 47 | + export PATH=$(shell pwd)/build/bin:$${PATH} &&\ |
| 48 | + export TF_ARCH=$(shell echo $(ARCH) | sed 's/x86_64/amd64/') &&\ |
| 49 | + export TF_OS=$(shell echo $(OS) | tr '[:upper:]' '[:lower:]' | sed 's/macos/darwin/') &&\ |
| 50 | + export CT_OS=$(shell echo $(OS) | sed 's/macOS/Darwin/') &&\ |
| 51 | + if [ "$$(terraform -v | head -n 1 | sed 's/Terraform v//')" != "$(TERRAFORM_VERSION)" ]; then \ |
| 52 | + wget -O tf.zip https://releases.hashicorp.com/terraform/$(TERRAFORM_VERSION)/terraform_$(TERRAFORM_VERSION)_$${TF_OS}_$${TF_ARCH}.zip &&\ |
| 53 | + unzip -o tf.zip terraform &&\ |
| 54 | + rm tf.zip &&\ |
| 55 | + mv -fv terraform build/bin/ ;\ |
| 56 | + fi ;\ |
| 57 | + if [ "$$(tflint --version | head -n 1 | sed 's/TFLint version //')" != "$(TFLINT_VERSION)" ]; then \ |
| 58 | + wget -O tflint.zip https://github.com/terraform-linters/tflint/releases/download/v$(TFLINT_VERSION)/tflint_$${TF_OS}_$${TF_ARCH}.zip &&\ |
| 59 | + unzip -o tflint.zip tflint &&\ |
| 60 | + rm tflint.zip &&\ |
| 61 | + mv -fv tflint build/bin/ ;\ |
| 62 | + fi |
0 commit comments