278 lines
7.5 KiB
Go
278 lines
7.5 KiB
Go
package pagerduty
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/PagerDuty/go-pagerduty"
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestAccPagerDutyEscalationPolicy_Basic(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckPagerDutyEscalationPolicyDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccCheckPagerDutyEscalationPolicyConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckPagerDutyEscalationPolicyExists("pagerduty_escalation_policy.foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "name", "foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "description", "foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "num_loops", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.#", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.0.escalation_delay_in_minutes", "10"),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: testAccCheckPagerDutyEscalationPolicyConfigUpdated,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckPagerDutyEscalationPolicyExists("pagerduty_escalation_policy.foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "name", "bar"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "description", "bar"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "num_loops", "2"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.#", "2"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.0.escalation_delay_in_minutes", "10"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.1.escalation_delay_in_minutes", "20"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestAccPagerDutyEscalationPolicyWithTeams_Basic(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckPagerDutyEscalationPolicyDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccCheckPagerDutyEscalationPolicyWithTeamsConfig,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckPagerDutyEscalationPolicyExists("pagerduty_escalation_policy.foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "name", "foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "description", "foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "num_loops", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.#", "1"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.0.escalation_delay_in_minutes", "10"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "teams.#", "1"),
|
|
),
|
|
},
|
|
resource.TestStep{
|
|
Config: testAccCheckPagerDutyEscalationPolicyWithTeamsConfigUpdated,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
testAccCheckPagerDutyEscalationPolicyExists("pagerduty_escalation_policy.foo"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "name", "bar"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "description", "bar"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "num_loops", "2"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.#", "2"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.0.escalation_delay_in_minutes", "10"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "rule.1.escalation_delay_in_minutes", "20"),
|
|
resource.TestCheckResourceAttr(
|
|
"pagerduty_escalation_policy.foo", "teams.#", "0"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func testAccCheckPagerDutyEscalationPolicyDestroy(s *terraform.State) error {
|
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
|
for _, r := range s.RootModule().Resources {
|
|
if r.Type != "pagerduty_escalation_policy" {
|
|
continue
|
|
}
|
|
|
|
_, err := client.GetEscalationPolicy(r.Primary.ID, &pagerduty.GetEscalationPolicyOptions{})
|
|
|
|
if err == nil {
|
|
return fmt.Errorf("Escalation Policy still exists")
|
|
}
|
|
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func testAccCheckPagerDutyEscalationPolicyExists(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 Escalation Policy ID is set")
|
|
}
|
|
|
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
|
|
|
found, err := client.GetEscalationPolicy(rs.Primary.ID, &pagerduty.GetEscalationPolicyOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if found.ID != rs.Primary.ID {
|
|
return fmt.Errorf("Escalation policy not found: %v - %v", rs.Primary.ID, found)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
const testAccCheckPagerDutyEscalationPolicyConfig = `
|
|
resource "pagerduty_user" "foo" {
|
|
name = "foo"
|
|
email = "foo@bar.com"
|
|
color = "green"
|
|
role = "user"
|
|
job_title = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_escalation_policy" "foo" {
|
|
name = "foo"
|
|
description = "foo"
|
|
num_loops = 1
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 10
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
const testAccCheckPagerDutyEscalationPolicyConfigUpdated = `
|
|
resource "pagerduty_user" "foo" {
|
|
name = "foo"
|
|
email = "foo@bar.com"
|
|
color = "green"
|
|
role = "user"
|
|
job_title = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_escalation_policy" "foo" {
|
|
name = "bar"
|
|
description = "bar"
|
|
num_loops = 2
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 10
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 20
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
const testAccCheckPagerDutyEscalationPolicyWithTeamsConfig = `
|
|
resource "pagerduty_user" "foo" {
|
|
name = "foo"
|
|
email = "foo@bar.com"
|
|
color = "green"
|
|
role = "user"
|
|
job_title = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_team" "foo" {
|
|
name = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_escalation_policy" "foo" {
|
|
name = "foo"
|
|
description = "foo"
|
|
num_loops = 1
|
|
teams = ["${pagerduty_team.foo.id}"]
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 10
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
const testAccCheckPagerDutyEscalationPolicyWithTeamsConfigUpdated = `
|
|
resource "pagerduty_user" "foo" {
|
|
name = "foo"
|
|
email = "foo@bar.com"
|
|
color = "green"
|
|
role = "user"
|
|
job_title = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_team" "foo" {
|
|
name = "foo"
|
|
description = "foo"
|
|
}
|
|
|
|
resource "pagerduty_escalation_policy" "foo" {
|
|
name = "bar"
|
|
description = "bar"
|
|
num_loops = 2
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 10
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
|
|
rule {
|
|
escalation_delay_in_minutes = 20
|
|
|
|
target {
|
|
type = "user_reference"
|
|
id = "${pagerduty_user.foo.id}"
|
|
}
|
|
}
|
|
}
|
|
`
|