Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

test: Add new test skeleton based on Terratest and add/extend tests for multiple modules #257

Merged
merged 35 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
184e1ff
Add new function in Go as test skeleton to execute Terratest and add …
sebastianczech Jan 5, 2023
146825a
Update comments in Go code
sebastianczech Jan 5, 2023
3801652
Clean code after using new test skeleton
sebastianczech Jan 9, 2023
7ec30ea
Update comment in test skeleton
sebastianczech Jan 9, 2023
dd603f8
Split Terraform code for tests of module vpc_route into main.tf, vari…
sebastianczech Jan 9, 2023
0dc9e9e
Extend module vpc_route outputs
sebastianczech Jan 9, 2023
c52bcec
Add tests for checking TGW as next hop and prepared code for othe typ…
sebastianczech Jan 9, 2023
7935bed
Add tests for checking NATGW and GWLB endpoints as next hop
sebastianczech Jan 9, 2023
bf4d223
Refactor tests checking outputs from bootstrap module
sebastianczech Jan 10, 2023
d44a164
Extend test skeleton by adding messages for asserts
sebastianczech Jan 10, 2023
c7e109c
Update assert package and add function in skeleton to assert errors
sebastianczech Jan 10, 2023
22d0e3f
Tests for checking errors while running Terraform plan
sebastianczech Jan 10, 2023
dc47535
2 kind of deployments with vpc_route module - full with TGW, NAT, GWL…
sebastianczech Jan 10, 2023
3a722f6
Clean tests codes for bootstrap module
sebastianczech Jan 10, 2023
19d1365
Simplify terraform_minimum.tfvars
sebastianczech Jan 10, 2023
274a52e
Add check function to test skeleton
sebastianczech Jan 11, 2023
5fdac5c
Tests for Panorama module
sebastianczech Jan 11, 2023
e13fee2
Verify bucket access in module bootstrap tests
sebastianczech Jan 11, 2023
7eeeff0
Small refactors (comments, provider versions)
sebastianczech Jan 11, 2023
35bf6c9
Update README
sebastianczech Jan 12, 2023
7cb29ea
2 tests for transit gateway module
sebastianczech Jan 12, 2023
ba5c9cc
Format code for module transit_gateway
sebastianczech Jan 13, 2023
c8f644f
Add ALB test coverage and refactor skeleton (#275)
pimielowski Jan 17, 2023
692f78f
Change bash path in scripts/install.sh and scripts/run.sh
sebastianczech Jan 17, 2023
ca61a08
Add required_providers for tls
sebastianczech Jan 17, 2023
60925eb
test: Test for modules transit_gateway_attachment, transit_gateway_pe…
sebastianczech Jan 17, 2023
047d3c3
test: Refactor tests skeleton and tests, small adjustments in modules…
sebastianczech Jan 18, 2023
83903ec
Restore changes in panorama module, fix example only to pass target_k…
sebastianczech Jan 19, 2023
a3034d9
test: Use ResourceChangesMap to check planned changes, do not use reg…
sebastianczech Jan 19, 2023
11d6348
Remove changes in examples and modules
sebastianczech Jan 24, 2023
5785dbc
Merge branch 'main' into test-skeleton-165
sebastianczech Jan 25, 2023
bbadb67
Introduce enum for assert operations (instead of strings)
sebastianczech Jan 25, 2023
1b5fb0a
Merge branch 'main' into test-skeleton-165
sebastianczech Jan 26, 2023
e83873d
Bump up minimum Terraform version to 1.0.0 in tests
sebastianczech Jan 26, 2023
32999e3
test: Test skeleton diagram and integrations tests for module vmserie…
sebastianczech Feb 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ module github.com/PaloAltoNetworks/terraform-aws-vmseries-modules
go 1.14

require (
github.com/gruntwork-io/terratest v0.35.7
github.com/gruntwork-io/terratest v0.41.7
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/terraform-json v0.14.0
github.com/stretchr/testify v1.4.0
github.com/stretchr/testify v1.7.0
github.com/zclconf/go-cty v1.11.0 // indirect
)
Loading