Skip to content

Commit

Permalink
provider/pagerduty pagerduty_schedule - support for start_day_of_week…
Browse files Browse the repository at this point in the history
… (schedule restriction) (#10069)

* Adding support for start_day_of_week (schedule restriction)

* Vendor update

* Update schedule tests
  • Loading branch information
heimweh authored and stack72 committed Dec 18, 2016
1 parent 9b866e5 commit 471299c
Show file tree
Hide file tree
Showing 5 changed files with 169 additions and 8 deletions.
4 changes: 4 additions & 0 deletions builtin/providers/pagerduty/resource_pagerduty_schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ func resourcePagerDutySchedule() *schema.Resource {
Type: schema.TypeString,
Required: true,
},
"start_day_of_week": {
Type: schema.TypeInt,
Optional: true,
},
"duration_seconds": {
Type: schema.TypeInt,
Required: true,
Expand Down
152 changes: 150 additions & 2 deletions builtin/providers/pagerduty/resource_pagerduty_schedule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,52 @@ func TestAccPagerDutySchedule_Basic(t *testing.T) {
})
}

func TestAccPagerDutySchedule_BasicWeek(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckPagerDutyScheduleDestroy,
Steps: []resource.TestStep{
resource.TestStep{
Config: testAccCheckPagerDutyScheduleConfigWeek,
Check: resource.ComposeTestCheckFunc(
testAccCheckPagerDutyScheduleExists("pagerduty_schedule.foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "name", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "description", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "time_zone", "Europe/Berlin"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.#", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.name", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.restriction.0.start_day_of_week", "1"),
),
},
resource.TestStep{
Config: testAccCheckPagerDutyScheduleConfigWeekUpdated,
Check: resource.ComposeTestCheckFunc(
testAccCheckPagerDutyScheduleExists("pagerduty_schedule.foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "name", "bar"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "description", "Managed by Terraform"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "time_zone", "America/New_York"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.#", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.name", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.restriction.0.start_day_of_week", "5"),
),
},
},
})
}

func TestAccPagerDutySchedule_Multi(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Expand All @@ -67,14 +113,57 @@ func TestAccPagerDutySchedule_Multi(t *testing.T) {
"pagerduty_schedule.foo", "description", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "time_zone", "America/New_York"),

resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.#", "3"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.name", "foo"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.restriction.#", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.restriction.0.duration_seconds", "32101"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.restriction.0.start_time_of_day", "08:00:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.rotation_turn_length_seconds", "86400"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.rotation_virtual_start", "2015-11-06T20:00:00-05:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.0.users.#", "1"),

resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.name", "bar"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.restriction.#", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.restriction.0.duration_seconds", "32101"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.restriction.0.start_time_of_day", "08:00:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.restriction.0.start_day_of_week", "5"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.rotation_turn_length_seconds", "86400"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.rotation_virtual_start", "2015-11-06T20:00:00-05:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.1.users.#", "1"),

resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.name", "foobar"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.restriction.#", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.restriction.0.duration_seconds", "32101"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.restriction.0.start_time_of_day", "08:00:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.restriction.0.start_day_of_week", "1"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.rotation_turn_length_seconds", "86400"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.rotation_virtual_start", "2015-11-06T20:00:00-05:00"),
resource.TestCheckResourceAttr(
"pagerduty_schedule.foo", "layer.2.users.#", "1"),
),
},
},
Expand Down Expand Up @@ -178,6 +267,63 @@ resource "pagerduty_schedule" "foo" {
}
`

const testAccCheckPagerDutyScheduleConfigWeek = `
resource "pagerduty_user" "foo" {
name = "foo"
email = "[email protected]"
}
resource "pagerduty_schedule" "foo" {
name = "foo"
time_zone = "Europe/Berlin"
description = "foo"
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 = 86400
users = ["${pagerduty_user.foo.id}"]
restriction {
type = "weekly_restriction"
start_time_of_day = "08:00:00"
start_day_of_week = 1
duration_seconds = 32101
}
}
}
`

const testAccCheckPagerDutyScheduleConfigWeekUpdated = `
resource "pagerduty_user" "foo" {
name = "foo"
email = "[email protected]"
}
resource "pagerduty_schedule" "foo" {
name = "bar"
time_zone = "America/New_York"
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 = 86400
users = ["${pagerduty_user.foo.id}"]
restriction {
type = "weekly_restriction"
start_time_of_day = "08:00:00"
start_day_of_week = 5
duration_seconds = 32101
}
}
}
`

const testAccCheckPagerDutyScheduleConfigMulti = `
resource "pagerduty_user" "foo" {
name = "foo"
Expand Down Expand Up @@ -212,8 +358,9 @@ resource "pagerduty_schedule" "foo" {
users = ["${pagerduty_user.foo.id}"]
restriction {
type = "daily_restriction"
type = "weekly_restriction"
start_time_of_day = "08:00:00"
start_day_of_week = 5
duration_seconds = 32101
}
}
Expand All @@ -226,8 +373,9 @@ resource "pagerduty_schedule" "foo" {
users = ["${pagerduty_user.foo.id}"]
restriction {
type = "daily_restriction"
type = "weekly_restriction"
start_time_of_day = "08:00:00"
start_day_of_week = 1
duration_seconds = 32101
}
}
Expand Down
11 changes: 9 additions & 2 deletions builtin/providers/pagerduty/structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ func expandScheduleLayers(list []interface{}) []pagerduty.ScheduleLayer {
pagerduty.Restriction{
Type: restriction["type"].(string),
StartTimeOfDay: restriction["start_time_of_day"].(string),
StartDayOfWeek: uint(restriction["start_day_of_week"].(int)),
DurationSeconds: uint(restriction["duration_seconds"].(int)),
},
)
Expand Down Expand Up @@ -146,11 +147,17 @@ func flattenScheduleLayers(list []pagerduty.ScheduleLayer) []map[string]interfac
if len(i.Restrictions) > 0 {
restrictions := make([]map[string]interface{}, 0, len(i.Restrictions))
for _, r := range i.Restrictions {
restrictions = append(restrictions, map[string]interface{}{
restriction := map[string]interface{}{
"duration_seconds": r.DurationSeconds,
"start_time_of_day": r.StartTimeOfDay,
"type": r.Type,
})
}

if r.StartDayOfWeek > 0 {
restriction["start_day_of_week"] = r.StartDayOfWeek
}

restrictions = append(restrictions, restriction)
}
r["restriction"] = restrictions
}
Expand Down
4 changes: 3 additions & 1 deletion vendor/github.com/PagerDuty/go-pagerduty/schedule.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vendor/vendor.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,10 @@
"revisionTime": "2016-11-03T18:56:17Z"
},
{
"checksumSHA1": "O9o5S7D0E1PaN5ARQ72xLfOrIa0=",
"checksumSHA1": "yAhUY67XCnf+0jpIsQ53lirk+GM=",
"path": "github.com/PagerDuty/go-pagerduty",
"revision": "f4d5289481b2c05f2b23f81a64dff86aca960962",
"revisionTime": "2016-10-22T00:40:41Z"
"revision": "b98d93d395cd13b0438ad908b5f7c608f1f74c38",
"revisionTime": "2016-12-16T21:25:03Z"
},
{
"path": "github.com/Unknwon/com",
Expand Down

0 comments on commit 471299c

Please sign in to comment.