2016-09-23 21:43:06 +02:00
|
|
|
package pagerduty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/PagerDuty/go-pagerduty"
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccPagerDutyUser_Basic(t *testing.T) {
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckPagerDutyUserDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCheckPagerDutyUserConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPagerDutyUserExists("pagerduty_user.foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "name", "foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "email", "foo@bar.com"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "color", "green"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "role", "user"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "job_title", "foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "description", "foo"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCheckPagerDutyUserConfigUpdated,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPagerDutyUserExists("pagerduty_user.foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "name", "bar"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "email", "bar@foo.com"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "color", "red"),
|
|
|
|
resource.TestCheckResourceAttr(
|
2016-12-15 00:01:19 +01:00
|
|
|
"pagerduty_user.foo", "role", "team_responder"),
|
2016-09-23 21:43:06 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "job_title", "bar"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "description", "bar"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-10-16 19:28:25 +02:00
|
|
|
func TestAccPagerDutyUserWithTeams_Basic(t *testing.T) {
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckPagerDutyUserDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCheckPagerDutyUserWithTeamsConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPagerDutyUserExists("pagerduty_user.foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "name", "foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "email", "foo@bar.com"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "teams.#", "1"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCheckPagerDutyUserWithTeamsConfigUpdated,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPagerDutyUserExists("pagerduty_user.foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "name", "foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "email", "foo@bar.com"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "teams.#", "2"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCheckPagerDutyUserWithNoTeamsConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckPagerDutyUserExists("pagerduty_user.foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "name", "foo"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "email", "foo@bar.com"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"pagerduty_user.foo", "teams.#", "0"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-09-23 21:43:06 +02:00
|
|
|
func testAccCheckPagerDutyUserDestroy(s *terraform.State) error {
|
|
|
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
|
|
|
for _, r := range s.RootModule().Resources {
|
|
|
|
if r.Type != "pagerduty_user" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
opts := pagerduty.GetUserOptions{}
|
|
|
|
|
|
|
|
_, err := client.GetUser(r.Primary.ID, opts)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
return fmt.Errorf("User still exists")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckPagerDutyUserExists(n string) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
2016-10-16 19:28:25 +02:00
|
|
|
rs, ok := s.RootModule().Resources[n]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found: %s", n)
|
|
|
|
}
|
|
|
|
if rs.Primary.ID == "" {
|
|
|
|
return fmt.Errorf("No user ID is set")
|
|
|
|
}
|
|
|
|
|
2016-09-23 21:43:06 +02:00
|
|
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
2016-10-16 19:28:25 +02:00
|
|
|
|
|
|
|
found, err := client.GetUser(rs.Primary.ID, pagerduty.GetUserOptions{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2016-09-23 21:43:06 +02:00
|
|
|
}
|
2016-10-16 19:28:25 +02:00
|
|
|
|
|
|
|
if found.ID != rs.Primary.ID {
|
|
|
|
return fmt.Errorf("User not found: %v - %v", rs.Primary.ID, found)
|
|
|
|
}
|
|
|
|
|
2016-09-23 21:43:06 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccCheckPagerDutyUserConfig = `
|
|
|
|
resource "pagerduty_user" "foo" {
|
|
|
|
name = "foo"
|
|
|
|
email = "foo@bar.com"
|
|
|
|
color = "green"
|
|
|
|
role = "user"
|
|
|
|
job_title = "foo"
|
|
|
|
description = "foo"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccCheckPagerDutyUserConfigUpdated = `
|
|
|
|
resource "pagerduty_user" "foo" {
|
|
|
|
name = "bar"
|
|
|
|
email = "bar@foo.com"
|
|
|
|
color = "red"
|
2016-12-15 00:01:19 +01:00
|
|
|
role = "team_responder"
|
2016-09-23 21:43:06 +02:00
|
|
|
job_title = "bar"
|
|
|
|
description = "bar"
|
|
|
|
}
|
|
|
|
`
|
2016-10-16 19:28:25 +02:00
|
|
|
|
|
|
|
const testAccCheckPagerDutyUserWithTeamsConfig = `
|
|
|
|
resource "pagerduty_team" "foo" {
|
|
|
|
name = "Foo team"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "pagerduty_user" "foo" {
|
|
|
|
name = "foo"
|
|
|
|
email = "foo@bar.com"
|
2016-10-18 14:54:33 +02:00
|
|
|
teams = ["${pagerduty_team.foo.id}"]
|
2016-10-16 19:28:25 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
const testAccCheckPagerDutyUserWithTeamsConfigUpdated = `
|
|
|
|
resource "pagerduty_team" "foo" {
|
|
|
|
name = "Foo team"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "pagerduty_team" "bar" {
|
|
|
|
name = "Bar team"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "pagerduty_user" "foo" {
|
|
|
|
name = "foo"
|
|
|
|
email = "foo@bar.com"
|
2016-10-18 14:54:33 +02:00
|
|
|
teams = ["${pagerduty_team.foo.id}", "${pagerduty_team.bar.id}"]
|
2016-10-16 19:28:25 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccCheckPagerDutyUserWithNoTeamsConfig = `
|
|
|
|
resource "pagerduty_team" "foo" {
|
|
|
|
name = "Foo team"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "pagerduty_team" "bar" {
|
|
|
|
name = "Bar team"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "pagerduty_user" "foo" {
|
|
|
|
name = "foo"
|
|
|
|
email = "foo@bar.com"
|
|
|
|
}
|
|
|
|
`
|