-
Notifications
You must be signed in to change notification settings - Fork 240
/
on_call_test.go
47 lines (41 loc) · 1015 Bytes
/
on_call_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package pagerduty
import (
"net/http"
"testing"
)
// ListOnCalls
func TestOnCall_List(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/oncalls", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
_, _ = w.Write([]byte(`{"oncalls": [{"escalation_level":2}]}`))
})
listObj := APIListObject{Limit: 0, Offset: 0, More: false, Total: 0}
client := defaultTestClient(server.URL, "foo")
opts := ListOnCallOptions{
Limit: listObj.Limit,
Offset: listObj.Offset,
TimeZone: "UTC",
Includes: []string{},
UserIDs: []string{},
EscalationPolicyIDs: []string{},
ScheduleIDs: []string{},
Earliest: false,
Since: "bar",
Until: "baz",
}
res, err := client.ListOnCalls(opts)
want := &ListOnCallsResponse{
APIListObject: listObj,
OnCalls: []OnCall{
{
EscalationLevel: 2,
},
},
}
if err != nil {
t.Fatal(err)
}
testEqual(t, want, res)
}