2014-07-03 00:55:28 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/flatmap"
|
2014-10-21 19:57:55 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2014-07-08 22:33:59 +02:00
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2014-07-03 00:55:28 +02:00
|
|
|
"github.com/mitchellh/goamz/elb"
|
2014-10-22 23:22:30 +02:00
|
|
|
"github.com/mitchellh/goamz/rds"
|
2014-07-03 00:55:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Returns test configuration
|
|
|
|
func testConf() map[string]string {
|
|
|
|
return map[string]string{
|
|
|
|
"listener.#": "1",
|
|
|
|
"listener.0.lb_port": "80",
|
|
|
|
"listener.0.lb_protocol": "http",
|
|
|
|
"listener.0.instance_port": "8000",
|
|
|
|
"listener.0.instance_protocol": "http",
|
2014-07-03 01:57:57 +02:00
|
|
|
"availability_zones.#": "2",
|
|
|
|
"availability_zones.0": "us-east-1a",
|
|
|
|
"availability_zones.1": "us-east-1b",
|
2014-07-17 02:13:16 +02:00
|
|
|
"ingress.#": "1",
|
|
|
|
"ingress.0.protocol": "icmp",
|
|
|
|
"ingress.0.from_port": "1",
|
|
|
|
"ingress.0.to_port": "-1",
|
|
|
|
"ingress.0.cidr_blocks.#": "1",
|
|
|
|
"ingress.0.cidr_blocks.0": "0.0.0.0/0",
|
2014-08-08 20:42:32 +02:00
|
|
|
"ingress.0.security_groups.#": "2",
|
2014-07-17 02:13:16 +02:00
|
|
|
"ingress.0.security_groups.0": "sg-11111",
|
2014-08-08 20:42:32 +02:00
|
|
|
"ingress.0.security_groups.1": "foo/sg-22222",
|
2014-07-03 00:55:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-08 22:33:59 +02:00
|
|
|
func Test_expandIPPerms(t *testing.T) {
|
2014-10-21 19:57:55 +02:00
|
|
|
hash := func(v interface{}) int {
|
|
|
|
return hashcode.String(v.(string))
|
|
|
|
}
|
|
|
|
|
2014-08-20 19:54:43 +02:00
|
|
|
expanded := []interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"protocol": "icmp",
|
|
|
|
"from_port": 1,
|
|
|
|
"to_port": -1,
|
|
|
|
"cidr_blocks": []interface{}{"0.0.0.0/0"},
|
2014-10-21 19:57:55 +02:00
|
|
|
"security_groups": schema.NewSet(hash, []interface{}{
|
2014-08-20 19:54:43 +02:00
|
|
|
"sg-11111",
|
|
|
|
"foo/sg-22222",
|
2014-10-21 19:57:55 +02:00
|
|
|
}),
|
2014-08-20 19:54:43 +02:00
|
|
|
},
|
2014-09-30 23:19:16 +02:00
|
|
|
map[string]interface{}{
|
|
|
|
"protocol": "icmp",
|
|
|
|
"from_port": 1,
|
|
|
|
"to_port": -1,
|
|
|
|
"self": true,
|
|
|
|
},
|
2014-07-25 00:50:18 +02:00
|
|
|
}
|
2014-09-30 23:19:16 +02:00
|
|
|
perms := expandIPPerms("foo", expanded)
|
2014-08-20 19:54:43 +02:00
|
|
|
|
2014-09-30 23:19:16 +02:00
|
|
|
expected := []ec2.IPPerm{
|
|
|
|
ec2.IPPerm{
|
|
|
|
Protocol: "icmp",
|
|
|
|
FromPort: 1,
|
|
|
|
ToPort: -1,
|
|
|
|
SourceIPs: []string{"0.0.0.0/0"},
|
|
|
|
SourceGroups: []ec2.UserSecurityGroup{
|
|
|
|
ec2.UserSecurityGroup{
|
|
|
|
OwnerId: "foo",
|
|
|
|
Id: "sg-22222",
|
|
|
|
},
|
2014-10-21 19:57:55 +02:00
|
|
|
ec2.UserSecurityGroup{
|
|
|
|
Id: "sg-11111",
|
|
|
|
},
|
2014-07-08 22:33:59 +02:00
|
|
|
},
|
2014-09-30 23:19:16 +02:00
|
|
|
},
|
|
|
|
ec2.IPPerm{
|
2014-10-02 04:19:36 +02:00
|
|
|
Protocol: "icmp",
|
|
|
|
FromPort: 1,
|
|
|
|
ToPort: -1,
|
2014-09-30 23:19:16 +02:00
|
|
|
SourceGroups: []ec2.UserSecurityGroup{
|
|
|
|
ec2.UserSecurityGroup{
|
|
|
|
Id: "foo",
|
|
|
|
},
|
2014-08-08 20:42:32 +02:00
|
|
|
},
|
2014-07-29 16:02:49 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2014-09-30 23:19:16 +02:00
|
|
|
if !reflect.DeepEqual(perms, expected) {
|
2014-07-29 16:02:49 +02:00
|
|
|
t.Fatalf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
perms[0],
|
|
|
|
expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-17 02:13:16 +02:00
|
|
|
func Test_flattenIPPerms(t *testing.T) {
|
2014-07-17 03:32:36 +02:00
|
|
|
cases := []struct {
|
|
|
|
Input []ec2.IPPerm
|
|
|
|
Output []map[string]interface{}
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Input: []ec2.IPPerm{
|
|
|
|
ec2.IPPerm{
|
|
|
|
Protocol: "icmp",
|
|
|
|
FromPort: 1,
|
|
|
|
ToPort: -1,
|
|
|
|
SourceIPs: []string{"0.0.0.0/0"},
|
|
|
|
SourceGroups: []ec2.UserSecurityGroup{
|
|
|
|
ec2.UserSecurityGroup{
|
|
|
|
Id: "sg-11111",
|
|
|
|
},
|
|
|
|
},
|
2014-07-17 02:13:16 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2014-07-17 03:32:36 +02:00
|
|
|
Output: []map[string]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"protocol": "icmp",
|
|
|
|
"from_port": 1,
|
|
|
|
"to_port": -1,
|
|
|
|
"cidr_blocks": []string{"0.0.0.0/0"},
|
|
|
|
"security_groups": []string{"sg-11111"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-07-17 02:13:16 +02:00
|
|
|
|
2014-07-17 03:32:36 +02:00
|
|
|
{
|
|
|
|
Input: []ec2.IPPerm{
|
|
|
|
ec2.IPPerm{
|
|
|
|
Protocol: "icmp",
|
|
|
|
FromPort: 1,
|
|
|
|
ToPort: -1,
|
|
|
|
SourceIPs: []string{"0.0.0.0/0"},
|
|
|
|
SourceGroups: nil,
|
|
|
|
},
|
|
|
|
},
|
2014-07-17 02:13:16 +02:00
|
|
|
|
2014-07-17 03:32:36 +02:00
|
|
|
Output: []map[string]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"protocol": "icmp",
|
|
|
|
"from_port": 1,
|
|
|
|
"to_port": -1,
|
|
|
|
"cidr_blocks": []string{"0.0.0.0/0"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-07-29 16:29:48 +02:00
|
|
|
{
|
|
|
|
Input: []ec2.IPPerm{
|
|
|
|
ec2.IPPerm{
|
|
|
|
Protocol: "icmp",
|
|
|
|
FromPort: 1,
|
|
|
|
ToPort: -1,
|
|
|
|
SourceIPs: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
Output: []map[string]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"protocol": "icmp",
|
|
|
|
"from_port": 1,
|
|
|
|
"to_port": -1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-07-17 02:13:16 +02:00
|
|
|
}
|
|
|
|
|
2014-07-17 03:32:36 +02:00
|
|
|
for _, tc := range cases {
|
|
|
|
output := flattenIPPerms(tc.Input)
|
|
|
|
if !reflect.DeepEqual(output, tc.Output) {
|
|
|
|
t.Fatalf("Input:\n\n%#v\n\nOutput:\n\n%#v", tc.Input, output)
|
|
|
|
}
|
2014-07-17 02:13:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 00:55:28 +02:00
|
|
|
func Test_expandListeners(t *testing.T) {
|
2014-10-10 19:26:48 +02:00
|
|
|
expanded := []interface{}{
|
|
|
|
map[string]interface{}{
|
2014-10-10 23:50:35 +02:00
|
|
|
"instance_port": 8000,
|
|
|
|
"lb_port": 80,
|
2014-10-10 19:26:48 +02:00
|
|
|
"instance_protocol": "http",
|
2014-10-10 23:50:35 +02:00
|
|
|
"lb_protocol": "http",
|
2014-10-10 19:26:48 +02:00
|
|
|
},
|
|
|
|
}
|
2014-07-25 00:50:18 +02:00
|
|
|
listeners, err := expandListeners(expanded)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("bad: %#v", err)
|
|
|
|
}
|
|
|
|
|
2014-07-03 00:55:28 +02:00
|
|
|
expected := elb.Listener{
|
|
|
|
InstancePort: 8000,
|
|
|
|
LoadBalancerPort: 80,
|
|
|
|
InstanceProtocol: "http",
|
|
|
|
Protocol: "http",
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(listeners[0], expected) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
listeners[0],
|
|
|
|
expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2014-07-03 01:57:57 +02:00
|
|
|
|
2014-07-30 16:15:22 +02:00
|
|
|
func Test_flattenHealthCheck(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Input elb.HealthCheck
|
|
|
|
Output []map[string]interface{}
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Input: elb.HealthCheck{
|
|
|
|
UnhealthyThreshold: 10,
|
|
|
|
HealthyThreshold: 10,
|
|
|
|
Target: "HTTP:80/",
|
|
|
|
Timeout: 30,
|
|
|
|
Interval: 30,
|
|
|
|
},
|
|
|
|
Output: []map[string]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"unhealthy_threshold": 10,
|
|
|
|
"healthy_threshold": 10,
|
|
|
|
"target": "HTTP:80/",
|
|
|
|
"timeout": 30,
|
|
|
|
"interval": 30,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
output := flattenHealthCheck(tc.Input)
|
|
|
|
if !reflect.DeepEqual(output, tc.Output) {
|
|
|
|
t.Fatalf("Got:\n\n%#v\n\nExpected:\n\n%#v", output, tc.Output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 01:57:57 +02:00
|
|
|
func Test_expandStringList(t *testing.T) {
|
|
|
|
expanded := flatmap.Expand(testConf(), "availability_zones").([]interface{})
|
|
|
|
stringList := expandStringList(expanded)
|
|
|
|
expected := []string{
|
|
|
|
"us-east-1a",
|
|
|
|
"us-east-1b",
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(stringList, expected) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
stringList,
|
|
|
|
expected)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2014-10-22 23:22:30 +02:00
|
|
|
|
|
|
|
func Test_expandParameters(t *testing.T) {
|
|
|
|
expanded := []interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"name": "character_set_client",
|
|
|
|
"value": "utf8",
|
|
|
|
"apply_method": "immediate",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
parameters, err := expandParameters(expanded)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("bad: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := rds.Parameter{
|
|
|
|
ParameterName: "character_set_client",
|
|
|
|
ParameterValue: "utf8",
|
|
|
|
ApplyMethod: "immediate",
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(parameters[0], expected) {
|
|
|
|
t.Fatalf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
parameters[0],
|
|
|
|
expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func Test_flattenParameters(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
Input []rds.Parameter
|
|
|
|
Output []map[string]interface{}
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Input: []rds.Parameter{
|
|
|
|
rds.Parameter{
|
|
|
|
ParameterName: "character_set_client",
|
|
|
|
ParameterValue: "utf8",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Output: []map[string]interface{}{
|
|
|
|
map[string]interface{}{
|
2014-10-23 20:16:39 +02:00
|
|
|
"name": "character_set_client",
|
|
|
|
"value": "utf8",
|
2014-10-22 23:22:30 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
output := flattenParameters(tc.Input)
|
|
|
|
if !reflect.DeepEqual(output, tc.Output) {
|
|
|
|
t.Fatalf("Got:\n\n%#v\n\nExpected:\n\n%#v", output, tc.Output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|