162 lines
4.6 KiB
Go
162 lines
4.6 KiB
Go
package azurerm
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/helper/acctest"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccAzureRMServiceBusTopic_basic(t *testing.T) {
|
|
ri := acctest.RandInt()
|
|
config := fmt.Sprintf(testAccAzureRMServiceBusTopic_basic, ri, ri, ri)
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testCheckAzureRMServiceBusTopicDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: config,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testCheckAzureRMServiceBusTopicExists("azurerm_servicebus_topic.test"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccAzureRMServiceBusTopic_update(t *testing.T) {
|
|
ri := acctest.RandInt()
|
|
preConfig := fmt.Sprintf(testAccAzureRMServiceBusTopic_basic, ri, ri, ri)
|
|
postConfig := fmt.Sprintf(testAccAzureRMServiceBusTopic_update, ri, ri, ri)
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testCheckAzureRMServiceBusTopicDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: preConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testCheckAzureRMServiceBusTopicExists("azurerm_servicebus_topic.test"),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: postConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
resource.TestCheckResourceAttr(
|
|
"azurerm_servicebus_topic.test", "enable_batched_operations", "true"),
|
|
resource.TestCheckResourceAttr(
|
|
"azurerm_servicebus_topic.test", "enable_express", "true"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testCheckAzureRMServiceBusTopicDestroy(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*ArmClient).serviceBusTopicsClient
|
|
|
|
for _, rs := range s.RootModule().Resources {
|
|
if rs.Type != "azurerm_servicebus_topic" {
|
|
continue
|
|
}
|
|
|
|
name := rs.Primary.Attributes["name"]
|
|
namespaceName := rs.Primary.Attributes["namespace_name"]
|
|
resourceGroup := rs.Primary.Attributes["resource_group_name"]
|
|
|
|
resp, err := client.Get(resourceGroup, namespaceName, name)
|
|
if err != nil {
|
|
if resp.StatusCode == http.StatusNotFound {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusNotFound {
|
|
return fmt.Errorf("ServiceBus Topic still exists:\n%#v", resp.Properties)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func testCheckAzureRMServiceBusTopicExists(name string) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
// Ensure we have enough information in state to look up in API
|
|
rs, ok := s.RootModule().Resources[name]
|
|
if !ok {
|
|
return fmt.Errorf("Not found: %s", name)
|
|
}
|
|
|
|
topicName := rs.Primary.Attributes["name"]
|
|
namespaceName := rs.Primary.Attributes["namespace_name"]
|
|
resourceGroup, hasResourceGroup := rs.Primary.Attributes["resource_group_name"]
|
|
if !hasResourceGroup {
|
|
return fmt.Errorf("Bad: no resource group found in state for topic: %s", topicName)
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*ArmClient).serviceBusTopicsClient
|
|
|
|
resp, err := client.Get(resourceGroup, namespaceName, topicName)
|
|
if err != nil {
|
|
return fmt.Errorf("Bad: Get on serviceBusTopicsClient: %s", err)
|
|
}
|
|
|
|
if resp.StatusCode == http.StatusNotFound {
|
|
return fmt.Errorf("Bad: Topic %q (resource group: %q) does not exist", namespaceName, resourceGroup)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
var testAccAzureRMServiceBusTopic_basic = `
|
|
resource "azurerm_resource_group" "test" {
|
|
name = "acctestRG-%d"
|
|
location = "West US"
|
|
}
|
|
|
|
resource "azurerm_servicebus_namespace" "test" {
|
|
name = "acctestservicebusnamespace-%d"
|
|
location = "West US"
|
|
resource_group_name = "${azurerm_resource_group.test.name}"
|
|
sku = "standard"
|
|
}
|
|
|
|
resource "azurerm_servicebus_topic" "test" {
|
|
name = "acctestservicebustopic-%d"
|
|
location = "West US"
|
|
namespace_name = "${azurerm_servicebus_namespace.test.name}"
|
|
resource_group_name = "${azurerm_resource_group.test.name}"
|
|
}
|
|
`
|
|
|
|
var testAccAzureRMServiceBusTopic_update = `
|
|
resource "azurerm_resource_group" "test" {
|
|
name = "acctestRG-%d"
|
|
location = "West US"
|
|
}
|
|
|
|
resource "azurerm_servicebus_namespace" "test" {
|
|
name = "acctestservicebusnamespace-%d"
|
|
location = "West US"
|
|
resource_group_name = "${azurerm_resource_group.test.name}"
|
|
sku = "standard"
|
|
}
|
|
|
|
resource "azurerm_servicebus_topic" "test" {
|
|
name = "acctestservicebustopic-%d"
|
|
location = "West US"
|
|
namespace_name = "${azurerm_servicebus_namespace.test.name}"
|
|
resource_group_name = "${azurerm_resource_group.test.name}"
|
|
enable_batched_operations = true
|
|
enable_express = true
|
|
}
|
|
`
|