-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathexamples_complete_test.go
74 lines (59 loc) · 2.94 KB
/
examples_complete_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package test
import (
"math/rand"
"strconv"
"testing"
"time"
"github.com/gruntwork-io/terratest/modules/terraform"
"github.com/stretchr/testify/assert"
)
// Test the Terraform module in examples/complete using Terratest.
func TestExamplesComplete(t *testing.T) {
t.Parallel()
rand.Seed(time.Now().UnixNano())
randId := strconv.Itoa(rand.Intn(100000))
attributes := []string{randId}
terraformOptions := &terraform.Options{
// The path to where our Terraform code is located
TerraformDir: "../../examples/complete",
Upgrade: true,
// Variables to pass to our Terraform code using -var-file options
VarFiles: []string{"fixtures.us-east-2.tfvars"},
Vars: map[string]interface{}{
"attributes": attributes,
},
}
// At the end of the test, run `terraform destroy` to clean up any resources that were created
defer terraform.Destroy(t, terraformOptions)
// This will run `terraform init` and `terraform apply` and fail the test if there are any errors
terraform.InitAndApply(t, terraformOptions)
// Run `terraform output` to get the value of an output variable
vpcCidr := terraform.Output(t, terraformOptions, "vpc_cidr")
// Verify we're getting back the outputs we expect
assert.Equal(t, "172.16.0.0/16", vpcCidr)
// Run `terraform output` to get the value of an output variable
privateSubnetCidrs := terraform.OutputList(t, terraformOptions, "private_subnet_cidrs")
// Verify we're getting back the outputs we expect
assert.Equal(t, []string{"172.16.0.0/19", "172.16.32.0/19"}, privateSubnetCidrs)
// Run `terraform output` to get the value of an output variable
publicSubnetCidrs := terraform.OutputList(t, terraformOptions, "public_subnet_cidrs")
// Verify we're getting back the outputs we expect
assert.Equal(t, []string{"172.16.96.0/19", "172.16.128.0/19"}, publicSubnetCidrs)
// Run `terraform output` to get the value of an output variable
domainHostname := terraform.Output(t, terraformOptions, "domain_hostname")
// Verify we're getting back the outputs we expect
assert.Equal(t, "eg-test-es-test-"+randId+".testing.cloudposse.co", domainHostname)
// Run `terraform output` to get the value of an output variable
kibanaHostname := terraform.Output(t, terraformOptions, "kibana_hostname")
// Verify we're getting back the outputs we expect
assert.Equal(t, "eg-test-es-test-"+randId+"-kibana.testing.cloudposse.co", kibanaHostname)
// Run `terraform output` to get the value of an output variable
domainEndpoint := terraform.Output(t, terraformOptions, "domain_endpoint")
// Verify we're getting back the outputs we expect
assert.Contains(t, domainEndpoint, "vpc-eg-test-es-test-"+randId)
// Run `terraform output` to get the value of an output variable
kibanaEndpoint := terraform.Output(t, terraformOptions, "kibana_endpoint")
// Verify we're getting back the outputs we expect
assert.Contains(t, kibanaEndpoint, "vpc-eg-test-es-test-"+randId)
assert.Contains(t, kibanaEndpoint, "us-east-2.es.amazonaws.com/_plugin/kibana")
}