Integration Testing of Pulumi programs in Go
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set testing-integrationcd pulumi-examples/testing-integrationThis integration test treats infrastucture deployed by a Pulumi program as a “black box”. If deploys the infrastructure, retrieves an endpoint from stack outputs, sends an HTTP request to the endpoint, validates the response, and tears down the infrastructure again.
This test deploys a static website as an AWS S3 bucket and checks that the site is reachable.
Prerequisites#
- Install Go.
- Install Pulumi.
- Configure Pulumi to Use AWS (if your AWS CLI is configured, no further changes are required).
Running the tests#
Run the tests:
$ go test
...
PASSok github.com/pulumi/examples/testing-integration 65.749sFurther steps#
Learn more about testing Pulumi programs: