115 lines
3.1 KiB
Go
115 lines
3.1 KiB
Go
|
package aws
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/aws/aws-sdk-go/aws"
|
||
|
"github.com/aws/aws-sdk-go/service/autoscaling"
|
||
|
"github.com/hashicorp/terraform/helper/resource"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func TestAccAWSAutoscalingPolicy_basic(t *testing.T) {
|
||
|
var policy autoscaling.ScalingPolicy
|
||
|
|
||
|
resource.Test(t, resource.TestCase{
|
||
|
PreCheck: func() { testAccPreCheck(t) },
|
||
|
Providers: testAccProviders,
|
||
|
CheckDestroy: testAccCheckAWSAutoscalingPolicyDestroy,
|
||
|
Steps: []resource.TestStep{
|
||
|
resource.TestStep{
|
||
|
Config: testAccAWSAutoscalingPolicyConfig,
|
||
|
Check: resource.ComposeTestCheckFunc(
|
||
|
testAccCheckScalingPolicyExists("aws_autoscaling_policy.foobar", &policy),
|
||
|
resource.TestCheckResourceAttr("aws_autoscaling_policy.foobar", "adjustment_type", "ChangeInCapacity"),
|
||
|
resource.TestCheckResourceAttr("aws_autoscaling_policy.foobar", "cooldown", "300"),
|
||
|
),
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func testAccCheckScalingPolicyExists(n string, policy *autoscaling.ScalingPolicy) resource.TestCheckFunc {
|
||
|
return func(s *terraform.State) error {
|
||
|
rs, ok := s.RootModule().Resources[n]
|
||
|
if !ok {
|
||
|
return fmt.Errorf("Not found: %s", n)
|
||
|
}
|
||
|
|
||
|
conn := testAccProvider.Meta().(*AWSClient).autoscalingconn
|
||
|
params := &autoscaling.DescribePoliciesInput{
|
||
|
AutoScalingGroupName: aws.String(rs.Primary.Attributes["autoscaling_group_name"]),
|
||
|
PolicyNames: []*string{aws.String(rs.Primary.ID)},
|
||
|
}
|
||
|
resp, err := conn.DescribePolicies(params)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if len(resp.ScalingPolicies) == 0 {
|
||
|
return fmt.Errorf("ScalingPolicy not found")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func testAccCheckAWSAutoscalingPolicyDestroy(s *terraform.State) error {
|
||
|
conn := testAccProvider.Meta().(*AWSClient).autoscalingconn
|
||
|
|
||
|
for _, rs := range s.RootModule().Resources {
|
||
|
if rs.Type != "aws_autoscaling_group" {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
params := autoscaling.DescribePoliciesInput{
|
||
|
AutoScalingGroupName: aws.String(rs.Primary.Attributes["autoscaling_group_name"]),
|
||
|
PolicyNames: []*string{aws.String(rs.Primary.ID)},
|
||
|
}
|
||
|
|
||
|
resp, err := conn.DescribePolicies(¶ms)
|
||
|
|
||
|
if err == nil {
|
||
|
if len(resp.ScalingPolicies) != 0 &&
|
||
|
*resp.ScalingPolicies[0].PolicyName == rs.Primary.ID {
|
||
|
return fmt.Errorf("Scaling Policy Still Exists: %s", rs.Primary.ID)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
var testAccAWSAutoscalingPolicyConfig = fmt.Sprintf(`
|
||
|
resource "aws_launch_configuration" "foobar" {
|
||
|
name = "terraform-test-foobar5"
|
||
|
image_id = "ami-21f78e11"
|
||
|
instance_type = "t1.micro"
|
||
|
}
|
||
|
|
||
|
resource "aws_autoscaling_group" "foobar" {
|
||
|
availability_zones = ["us-west-2a"]
|
||
|
name = "terraform-test-foobar5"
|
||
|
max_size = 5
|
||
|
min_size = 2
|
||
|
health_check_grace_period = 300
|
||
|
health_check_type = "ELB"
|
||
|
force_delete = true
|
||
|
termination_policies = ["OldestInstance"]
|
||
|
launch_configuration = "${aws_launch_configuration.foobar.name}"
|
||
|
tag {
|
||
|
key = "Foo"
|
||
|
value = "foo-bar"
|
||
|
propagate_at_launch = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "aws_autoscaling_policy" "foobar" {
|
||
|
name = "foobar"
|
||
|
scaling_adjustment = 4
|
||
|
adjustment_type = "ChangeInCapacity"
|
||
|
cooldown = 300
|
||
|
autoscaling_group_name = "${aws_autoscaling_group.foobar.name}"
|
||
|
}
|
||
|
`)
|