2015-05-15 01:17:18 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
2015-06-03 20:36:57 +02:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
2015-06-24 07:31:24 +02:00
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
2015-06-03 20:36:57 +02:00
|
|
|
"github.com/aws/aws-sdk-go/service/sns"
|
2015-05-15 01:17:18 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
2015-06-08 01:18:14 +02:00
|
|
|
func TestAccAWSSNSTopic_basic(t *testing.T) {
|
2015-05-15 01:17:18 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSNSTopicDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSNSTopicConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSNSTopicExists("aws_sns_topic.test_topic"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckAWSSNSTopicDestroy(s *terraform.State) error {
|
|
|
|
conn := testAccProvider.Meta().(*AWSClient).snsconn
|
|
|
|
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
|
|
if rs.Type != "aws_sns_topic" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the topic exists by fetching its attributes
|
|
|
|
params := &sns.GetTopicAttributesInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
TopicArn: aws.String(rs.Primary.ID),
|
2015-05-15 01:17:18 +02:00
|
|
|
}
|
|
|
|
_, err := conn.GetTopicAttributes(params)
|
|
|
|
if err == nil {
|
|
|
|
return fmt.Errorf("Topic exists when it should be destroyed!")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the error is an API error, not something else
|
2015-05-23 06:12:25 +02:00
|
|
|
_, ok := err.(awserr.Error)
|
2015-05-15 01:17:18 +02:00
|
|
|
if !ok {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckAWSSNSTopicExists(n string) 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 SNS topic with that ARN exists")
|
|
|
|
}
|
|
|
|
|
|
|
|
conn := testAccProvider.Meta().(*AWSClient).snsconn
|
|
|
|
|
|
|
|
params := &sns.GetTopicAttributesInput{
|
2015-08-17 20:27:16 +02:00
|
|
|
TopicArn: aws.String(rs.Primary.ID),
|
2015-05-15 01:17:18 +02:00
|
|
|
}
|
|
|
|
_, err := conn.GetTopicAttributes(params)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccAWSSNSTopicConfig = `
|
|
|
|
resource "aws_sns_topic" "test_topic" {
|
|
|
|
name = "terraform-test-topic"
|
|
|
|
}
|
2015-06-03 20:36:57 +02:00
|
|
|
`
|