-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add scenario test for testing terminating gateways with TLS
- Loading branch information
1 parent
6d91f3f
commit c10e4c4
Showing
5 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
test/acceptance/examples/scenarios/terminating-gateway-tls/main.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package terminatinggatewaytls | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform-aws-consul-ecs/test/acceptance/examples/scenarios" | ||
"github.com/hashicorp/terraform-aws-consul-ecs/test/acceptance/examples/scenarios/common" | ||
"github.com/hashicorp/terraform-aws-consul-ecs/test/acceptance/framework/logger" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
type TFOutputs struct { | ||
ConsulServerLBAddr string `json:"consul_server_lb_address"` | ||
ConsulServerToken string `json:"consul_server_bootstrap_token"` | ||
MeshClientLBAddr string `json:"mesh_client_lb_address"` | ||
} | ||
|
||
func RegisterScenario(r scenarios.ScenarioRegistry) { | ||
tfResourcesName := fmt.Sprintf("ecs-%s", common.GenerateRandomStr(6)) | ||
|
||
r.Register(scenarios.ScenarioRegistration{ | ||
Name: "TERMINATING_GATEWAY_TLS", | ||
FolderName: "terminating-gateway-tls", | ||
TerraformInputVars: getTerraformVars(tfResourcesName), | ||
Validate: validate(tfResourcesName), | ||
}) | ||
} | ||
|
||
func getTerraformVars(tfResName string) scenarios.TerraformInputVarsHook { | ||
return func() (map[string]interface{}, error) { | ||
vars := map[string]interface{}{ | ||
"region": "us-west-1", | ||
"name": tfResName, | ||
} | ||
|
||
publicIP, err := common.GetPublicIP() | ||
if err != nil { | ||
return nil, err | ||
} | ||
vars["lb_ingress_ip"] = publicIP | ||
|
||
return vars, nil | ||
} | ||
} | ||
|
||
func validate(tfResName string) scenarios.ValidateHook { | ||
return func(t *testing.T, data []byte) { | ||
logger.Log(t, "Fetching required output terraform variables") | ||
|
||
var tfOutputs *TFOutputs | ||
require.NoError(t, json.Unmarshal(data, &tfOutputs)) | ||
|
||
consulServerLBAddr := tfOutputs.ConsulServerLBAddr | ||
meshClientLBAddr := tfOutputs.MeshClientLBAddr | ||
meshClientLBAddr = strings.TrimSuffix(meshClientLBAddr, "/ui") | ||
|
||
logger.Log(t, "Setting up the Consul client") | ||
consulClient, err := common.SetupConsulClient(t, consulServerLBAddr) | ||
require.NoError(t, err) | ||
|
||
clientAppName := fmt.Sprintf("%s-example-client-app", tfResName) | ||
serverAppName := fmt.Sprintf("%s-external-server-app", tfResName) | ||
|
||
consulClient.EnsureServiceReadiness(clientAppName, nil) | ||
consulClient.EnsureServiceReadiness(serverAppName, nil) | ||
consulClient.EnsureServiceReadiness(fmt.Sprintf("%s-terminating-gateway", tfResName), nil) | ||
|
||
// Perform assertions by hitting the client app's LB | ||
logger.Log(t, "calling client app's load balancer to see if the server app is reachable") | ||
common.ValidateFakeServiceResponse(t, meshClientLBAddr, serverAppName) | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
test/acceptance/tests/validation/terraform/volume-variable-gateway-validate/main.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (c) HashiCorp, Inc. | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
provider "aws" { | ||
region = "us-west-2" | ||
} | ||
|
||
variable "volumes" { | ||
type = any | ||
} | ||
|
||
module "test_gateway" { | ||
source = "../../../../../../modules/gateway-task" | ||
family = "family" | ||
kind = "terminating-gateway" | ||
ecs_cluster_arn = "cluster" | ||
subnets = ["subnets"] | ||
volumes = var.volumes | ||
consul_server_hosts = "consul.dc1" | ||
lb_create_security_group = false | ||
|
||
enable_transparent_proxy = false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters