122 lines
3.0 KiB
Go
122 lines
3.0 KiB
Go
package rabbitmq
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/michaelklishin/rabbit-hole"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccBinding(t *testing.T) {
|
|
var bindingInfo rabbithole.BindingInfo
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccBindingCheckDestroy(bindingInfo),
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccBindingConfig_basic,
|
|
Check: testAccBindingCheck(
|
|
"rabbitmq_binding.test", &bindingInfo,
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccBindingCheck(rn string, bindingInfo *rabbithole.BindingInfo) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rs, ok := s.RootModule().Resources[rn]
|
|
if !ok {
|
|
return fmt.Errorf("resource not found: %s", rn)
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
return fmt.Errorf("binding id not set")
|
|
}
|
|
|
|
rmqc := testAccProvider.Meta().(*rabbithole.Client)
|
|
bindingParts := strings.Split(rs.Primary.ID, "/")
|
|
|
|
bindings, err := rmqc.ListBindingsIn(bindingParts[0])
|
|
if err != nil {
|
|
return fmt.Errorf("Error retrieving exchange: %s", err)
|
|
}
|
|
|
|
for _, binding := range bindings {
|
|
if binding.Source == bindingParts[1] && binding.Destination == bindingParts[2] && binding.DestinationType == bindingParts[3] && binding.PropertiesKey == bindingParts[4] {
|
|
bindingInfo = &binding
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("Unable to find binding %s", rn)
|
|
}
|
|
}
|
|
|
|
func testAccBindingCheckDestroy(bindingInfo rabbithole.BindingInfo) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
rmqc := testAccProvider.Meta().(*rabbithole.Client)
|
|
|
|
bindings, err := rmqc.ListBindingsIn(bindingInfo.Vhost)
|
|
if err != nil {
|
|
return fmt.Errorf("Error retrieving exchange: %s", err)
|
|
}
|
|
|
|
for _, binding := range bindings {
|
|
if binding.Source == bindingInfo.Source && binding.Destination == bindingInfo.Destination && binding.DestinationType == bindingInfo.DestinationType && binding.PropertiesKey == bindingInfo.PropertiesKey {
|
|
return fmt.Errorf("Binding still exists")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccBindingConfig_basic = `
|
|
resource "rabbitmq_vhost" "test" {
|
|
name = "test"
|
|
}
|
|
|
|
resource "rabbitmq_permissions" "guest" {
|
|
user = "guest"
|
|
vhost = "${rabbitmq_vhost.test.name}"
|
|
permissions {
|
|
configure = ".*"
|
|
write = ".*"
|
|
read = ".*"
|
|
}
|
|
}
|
|
|
|
resource "rabbitmq_exchange" "test" {
|
|
name = "test"
|
|
vhost = "${rabbitmq_permissions.guest.vhost}"
|
|
settings {
|
|
type = "fanout"
|
|
durable = false
|
|
auto_delete = true
|
|
}
|
|
}
|
|
|
|
resource "rabbitmq_queue" "test" {
|
|
name = "test"
|
|
vhost = "${rabbitmq_permissions.guest.vhost}"
|
|
settings {
|
|
durable = true
|
|
auto_delete = false
|
|
}
|
|
}
|
|
|
|
resource "rabbitmq_binding" "test" {
|
|
source = "${rabbitmq_exchange.test.name}"
|
|
vhost = "${rabbitmq_vhost.test.name}"
|
|
destination = "${rabbitmq_queue.test.name}"
|
|
destination_type = "queue"
|
|
routing_key = "#"
|
|
properties_key = "%23"
|
|
}`
|