Add schedule test
This commit is contained in:
parent
de9a1c146c
commit
ffd3ceef0d
|
@ -0,0 +1,106 @@
|
||||||
|
package pagerduty
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/PagerDuty/go-pagerduty"
|
||||||
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
|
"github.com/hashicorp/terraform/terraform"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAccPagerDutySchedule_Basic(t *testing.T) {
|
||||||
|
resource.Test(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
CheckDestroy: testAccCheckPagerDutyScheduleDestroy,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccCheckPagerDutyScheduleConfig,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
testAccCheckPagerDutyScheduleExists("pagerduty_schedule.foo"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"pagerduty_schedule.foo", "name", "foo"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"pagerduty_schedule.foo", "description", "Managed by Terraform"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"pagerduty_schedule.foo", "time_zone", "Europe/Berlin"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"pagerduty_schedule.foo", "schedule_layer.#", "1"),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func testAccCheckPagerDutyScheduleDestroy(s *terraform.State) error {
|
||||||
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
||||||
|
for _, r := range s.RootModule().Resources {
|
||||||
|
if r.Type != "pagerduty_schedule" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := client.GetSchedule(r.Primary.ID, pagerduty.GetScheduleOptions{})
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
return fmt.Errorf("Schedule still exists")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func testAccCheckPagerDutyScheduleExists(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 Schedule ID is set")
|
||||||
|
}
|
||||||
|
|
||||||
|
client := testAccProvider.Meta().(*pagerduty.Client)
|
||||||
|
|
||||||
|
found, err := client.GetSchedule(rs.Primary.ID, pagerduty.GetScheduleOptions{})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if found.ID != rs.Primary.ID {
|
||||||
|
return fmt.Errorf("Schedule not found: %v - %v", rs.Primary.ID, found)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const testAccCheckPagerDutyScheduleConfig = `
|
||||||
|
resource "pagerduty_user" "foo" {
|
||||||
|
name = "foo"
|
||||||
|
email = "foo@bar.com"
|
||||||
|
color = "green"
|
||||||
|
role = "user"
|
||||||
|
job_title = "foo"
|
||||||
|
description = "foo"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "pagerduty_schedule" "foo" {
|
||||||
|
name = "foo"
|
||||||
|
time_zone = "Europe/Berlin"
|
||||||
|
|
||||||
|
schedule_layer {
|
||||||
|
name = "foo"
|
||||||
|
start = "2015-11-06T20:00:00-05:00"
|
||||||
|
rotation_virtual_start = "2015-11-06T20:00:00-05:00"
|
||||||
|
rotation_turn_length_seconds = 86401
|
||||||
|
users = ["${pagerduty_user.foo.id}"]
|
||||||
|
|
||||||
|
restriction {
|
||||||
|
type = "daily_restriction"
|
||||||
|
start_time_of_day = "08:00:00"
|
||||||
|
duration_seconds = 32101
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
Loading…
Reference in New Issue