160 lines
3.8 KiB
Go
160 lines
3.8 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
"github.com/mitchellh/goamz/ec2"
|
|
)
|
|
|
|
func TestAccAWSSecurityGroup(t *testing.T) {
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccAWSSecurityGroupConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
testAccCheckAWSSecurityGroupAttributes(&group),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "name", "terraform_acceptance_test_example"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "description", "Used in the terraform acceptance tests"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "ingress.0.protocol", "tcp"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "ingress.0.from_port", "80"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "ingress.0.to_port", "8000"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "ingress.0.cidr_blocks.#", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"aws_security_group.web", "ingress.0.cidr_blocks.0", "10.0.0.0/0"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckAWSSecurityGroupDestroy(s *terraform.State) error {
|
|
conn := testAccProvider.ec2conn
|
|
|
|
for _, rs := range s.Resources {
|
|
if rs.Type != "aws_security_group" {
|
|
continue
|
|
}
|
|
|
|
sgs := []ec2.SecurityGroup{
|
|
ec2.SecurityGroup{
|
|
Id: rs.ID,
|
|
},
|
|
}
|
|
|
|
// Retrieve our group
|
|
resp, err := conn.SecurityGroups(sgs, nil)
|
|
if err == nil {
|
|
if len(resp.Groups) > 0 && resp.Groups[0].Id == rs.ID {
|
|
return fmt.Errorf("Security Group (%s) still exists.", rs.ID)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
ec2err, ok := err.(*ec2.Error)
|
|
if !ok {
|
|
return err
|
|
}
|
|
// Confirm error code is what we want
|
|
if ec2err.Code != "InvalidGroup.NotFound" {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func testAccCheckAWSSecurityGroupExists(n string, group *ec2.SecurityGroupInfo) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rs, ok := s.Resources[n]
|
|
if !ok {
|
|
return fmt.Errorf("Not found: %s", n)
|
|
}
|
|
|
|
if rs.ID == "" {
|
|
return fmt.Errorf("No Security Group is set")
|
|
}
|
|
|
|
conn := testAccProvider.ec2conn
|
|
sgs := []ec2.SecurityGroup{
|
|
ec2.SecurityGroup{
|
|
Id: rs.ID,
|
|
},
|
|
}
|
|
resp, err := conn.SecurityGroups(sgs, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(resp.Groups) > 0 && resp.Groups[0].Id == rs.ID {
|
|
|
|
*group = resp.Groups[0]
|
|
|
|
return nil
|
|
} else {
|
|
return fmt.Errorf("Security Group not found")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccCheckAWSSecurityGroupAttributes(group *ec2.SecurityGroupInfo) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
p := ec2.IPPerm{
|
|
FromPort: 80,
|
|
ToPort: 8000,
|
|
Protocol: "tcp",
|
|
SourceIPs: []string{"10.0.0.0/0"},
|
|
}
|
|
|
|
if group.Name != "terraform_acceptance_test_example" {
|
|
return fmt.Errorf("Bad name: %s", group.Name)
|
|
}
|
|
|
|
if group.Description != "Used in the terraform acceptance tests" {
|
|
return fmt.Errorf("Bad description: %s", group.Description)
|
|
}
|
|
|
|
// Compare our ingress
|
|
if !reflect.DeepEqual(group.IPPerms[0], p) {
|
|
return fmt.Errorf(
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
group.IPPerms[0],
|
|
p)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccAWSSecurityGroupConfig = `
|
|
resource "aws_security_group" "web" {
|
|
name = "terraform_acceptance_test_example"
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
ingress {
|
|
protocol = "tcp"
|
|
from_port = 80
|
|
to_port = 8000
|
|
cidr_blocks = ["10.0.0.0/0"]
|
|
}
|
|
}
|
|
`
|