Skip to content

Commit

Permalink
Merge pull request #2816 from TimeIncOSS/f-aws-elb-name-test
Browse files Browse the repository at this point in the history
provider/aws: Add acceptance test for ELB w/out name
  • Loading branch information
catsby committed Jul 29, 2015
2 parents 2e787cf + 57dfaa4 commit 3b8df13
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions builtin/providers/aws/resource_aws_elb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"fmt"
"os"
"reflect"
"regexp"
"sort"
"testing"

Expand Down Expand Up @@ -74,6 +75,27 @@ func TestAccAWSELB_fullCharacterRange(t *testing.T) {
})
}

func TestAccAWSELB_generatedName(t *testing.T) {
var conf elb.LoadBalancerDescription
generatedNameRegexp := regexp.MustCompile("^tf-lb-")

resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckAWSELBDestroy,
Steps: []resource.TestStep{
resource.TestStep{
Config: testAccAWSELBGeneratedName,
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSELBExists("aws_elb.foo", &conf),
resource.TestMatchResourceAttr(
"aws_elb.foo", "name", generatedNameRegexp),
),
},
},
})
}

func TestAccAWSELB_tags(t *testing.T) {
var conf elb.LoadBalancerDescription
var td elb.TagDescription
Expand Down Expand Up @@ -592,6 +614,19 @@ resource "aws_elb" "foo" {
}
`

const testAccAWSELBGeneratedName = `
resource "aws_elb" "foo" {
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
listener {
instance_port = 8000
instance_protocol = "http"
lb_port = 80
lb_protocol = "http"
}
}
`

const testAccAWSELBConfig_TagUpdate = `
resource "aws_elb" "bar" {
name = "foobar-terraform-test"
Expand Down

0 comments on commit 3b8df13

Please sign in to comment.