122 lines
3.3 KiB
Go
122 lines
3.3 KiB
Go
package chef
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
chefc "github.com/go-chef/chef"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccRole_basic(t *testing.T) {
|
|
var role chefc.Role
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccRoleCheckDestroy(&role),
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccRoleConfig_basic,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccRoleCheckExists("chef_role.test", &role),
|
|
func(s *terraform.State) error {
|
|
|
|
if expected := "terraform-acc-test-basic"; role.Name != expected {
|
|
return fmt.Errorf("wrong name; expected %v, got %v", expected, role.Name)
|
|
}
|
|
if expected := "Terraform Acceptance Tests"; role.Description != expected {
|
|
return fmt.Errorf("wrong description; expected %v, got %v", expected, role.Description)
|
|
}
|
|
|
|
expectedRunListStrings := []string{
|
|
"recipe[terraform@1.0.0]",
|
|
"recipe[consul]",
|
|
"role[foo]",
|
|
}
|
|
expectedRunList := chefc.RunList(expectedRunListStrings)
|
|
if !reflect.DeepEqual(role.RunList, expectedRunList) {
|
|
return fmt.Errorf("wrong runlist; expected %#v, got %#v", expectedRunList, role.RunList)
|
|
}
|
|
|
|
var expectedAttributes interface{}
|
|
expectedAttributes = map[string]interface{}{
|
|
"terraform_acc_test": true,
|
|
}
|
|
if !reflect.DeepEqual(role.DefaultAttributes, expectedAttributes) {
|
|
return fmt.Errorf("wrong default attributes; expected %#v, got %#v", expectedAttributes, role.DefaultAttributes)
|
|
}
|
|
if !reflect.DeepEqual(role.OverrideAttributes, expectedAttributes) {
|
|
return fmt.Errorf("wrong override attributes; expected %#v, got %#v", expectedAttributes, role.OverrideAttributes)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccRoleCheckExists(rn string, role *chefc.Role) 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("role id not set")
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*chefc.Client)
|
|
gotRole, err := client.Roles.Get(rs.Primary.ID)
|
|
if err != nil {
|
|
return fmt.Errorf("error getting role: %s", err)
|
|
}
|
|
|
|
*role = *gotRole
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func testAccRoleCheckDestroy(role *chefc.Role) resource.TestCheckFunc {
|
|
return func(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*chefc.Client)
|
|
_, err := client.Roles.Get(role.Name)
|
|
if err == nil {
|
|
return fmt.Errorf("role still exists")
|
|
}
|
|
if _, ok := err.(*chefc.ErrorResponse); !ok {
|
|
// A more specific check is tricky because Chef Server can return
|
|
// a few different error codes in this case depending on which
|
|
// part of its stack catches the error.
|
|
return fmt.Errorf("got something other than an HTTP error (%v) when getting role", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccRoleConfig_basic = `
|
|
resource "chef_role" "test" {
|
|
name = "terraform-acc-test-basic"
|
|
description = "Terraform Acceptance Tests"
|
|
default_attributes_json = <<EOT
|
|
{
|
|
"terraform_acc_test": true
|
|
}
|
|
EOT
|
|
override_attributes_json = <<EOT
|
|
{
|
|
"terraform_acc_test": true
|
|
}
|
|
EOT
|
|
run_list = ["terraform@1.0.0", "recipe[consul]", "role[foo]"]
|
|
}
|
|
`
|