package aws import ( "fmt" "math/rand" "strings" "testing" "time" "github.com/awslabs/aws-sdk-go/aws" "github.com/awslabs/aws-sdk-go/service/kinesis" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" ) func TestAccKinesisStream_basic(t *testing.T) { var stream kinesis.StreamDescription resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, CheckDestroy: testAccCheckKinesisStreamDestroy, Steps: []resource.TestStep{ resource.TestStep{ Config: testAccKinesisStreamConfig, Check: resource.ComposeTestCheckFunc( testAccCheckKinesisStreamExists("aws_kinesis_stream.test_stream", &stream), testAccCheckAWSKinesisStreamAttributes(&stream), ), }, }, }) } func testAccCheckKinesisStreamExists(n string, stream *kinesis.StreamDescription) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] if !ok { return fmt.Errorf("Not found: %s", n) } if rs.Primary.ID == "" { return fmt.Errorf("No Kinesis ID is set") } conn := testAccProvider.Meta().(*AWSClient).kinesisconn describeOpts := &kinesis.DescribeStreamInput{ StreamName: aws.String(rs.Primary.Attributes["name"]), Limit: aws.Long(1), } resp, err := conn.DescribeStream(describeOpts) if err != nil { return err } *stream = *resp.StreamDescription return nil } } func testAccCheckAWSKinesisStreamAttributes(stream *kinesis.StreamDescription) resource.TestCheckFunc { return func(s *terraform.State) error { if !strings.HasPrefix(*stream.StreamName, "terraform-kinesis-test") { return fmt.Errorf("Bad Stream name: %s", *stream.StreamName) } for _, rs := range s.RootModule().Resources { if rs.Type != "aws_kinesis_stream" { continue } if *stream.StreamARN != rs.Primary.Attributes["arn"] { return fmt.Errorf("Bad Stream ARN\n\t expected: %s\n\tgot: %s\n", rs.Primary.Attributes["arn"], *stream.StreamARN) } } return nil } } func testAccCheckKinesisStreamDestroy(s *terraform.State) error { for _, rs := range s.RootModule().Resources { if rs.Type != "aws_kinesis_stream" { continue } conn := testAccProvider.Meta().(*AWSClient).kinesisconn describeOpts := &kinesis.DescribeStreamInput{ StreamName: aws.String(rs.Primary.Attributes["name"]), Limit: aws.Long(1), } resp, err := conn.DescribeStream(describeOpts) if err == nil { if resp.StreamDescription != nil && *resp.StreamDescription.StreamStatus != "DELETING" { return fmt.Errorf("Error: Stream still exists") } } return nil } return nil } var testAccKinesisStreamConfig = fmt.Sprintf(` resource "aws_kinesis_stream" "test_stream" { name = "terraform-kinesis-test-%d" shard_count = 1 } `, rand.New(rand.NewSource(time.Now().UnixNano())).Int())