74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
|
package google
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/helper/resource"
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func TestAccPubsubSubscriptionCreate(t *testing.T) {
|
||
|
|
||
|
resource.Test(t, resource.TestCase{
|
||
|
PreCheck: func() { testAccPreCheck(t) },
|
||
|
Providers: testAccProviders,
|
||
|
CheckDestroy: testAccCheckPubsubSubscriptionDestroy,
|
||
|
Steps: []resource.TestStep{
|
||
|
resource.TestStep{
|
||
|
Config: testAccPubsubSubscription,
|
||
|
Check: resource.ComposeTestCheckFunc(
|
||
|
testAccPubsubSubscriptionExists(
|
||
|
"google_pubsub_subscription.foobar_sub"),
|
||
|
),
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func testAccCheckPubsubSubscriptionDestroy(s *terraform.State) error {
|
||
|
for _, rs := range s.RootModule().Resources {
|
||
|
if rs.Type != "google_pubsub_subscription" {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
config := testAccProvider.Meta().(*Config)
|
||
|
_, err := config.clientPubsub.Projects.Subscriptions.Get(rs.Primary.ID).Do()
|
||
|
if err != nil {
|
||
|
fmt.Errorf("Subscription still present")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func testAccPubsubSubscriptionExists(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 ID is set")
|
||
|
}
|
||
|
config := testAccProvider.Meta().(*Config)
|
||
|
_, err := config.clientPubsub.Projects.Subscriptions.Get(rs.Primary.ID).Do()
|
||
|
if err != nil {
|
||
|
fmt.Errorf("Subscription still present")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const testAccPubsubSubscription = `
|
||
|
resource "google_pubsub_topic" "foobar_sub" {
|
||
|
name = "foobar_sub"
|
||
|
}
|
||
|
|
||
|
resource "google_pubsub_subscription" "foobar_sub" {
|
||
|
name = "foobar_sub"
|
||
|
topic = "${google_pubsub_topic.foobar_sub.name}"
|
||
|
}`
|