forked from PagerDuty/go-pagerduty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log_entry_test.go
70 lines (59 loc) · 1.48 KB
/
log_entry_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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package pagerduty
import (
"net/http"
"testing"
)
func TestLogEntry_List(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/log_entries", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
w.Write([]byte(`{"log_entries": [{"id": "1","summary":"foo"}]}`))
})
var listObj = APIListObject{Limit: 0, Offset: 0, More: false, Total: 0}
var client = &Client{apiEndpoint: server.URL, authToken: "foo", HTTPClient: defaultHTTPClient}
var entriesOpts = ListLogEntriesOptions{
APIListObject: listObj,
Includes: []string{},
IsOverview: true,
TimeZone: "UTC",
}
res, err := client.ListLogEntries(entriesOpts)
want := &ListLogEntryResponse{
APIListObject: listObj,
LogEntries: []LogEntry{
{
APIObject: APIObject{
ID: "1",
Summary: "foo",
},
},
},
}
if err != nil {
t.Fatal(err)
}
testEqual(t, want, res)
}
func TestLogEntry_Get(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/log_entries/1", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
w.Write([]byte(`{"log_entry": {"id": "1", "summary": "foo"}}`))
})
var client = &Client{apiEndpoint: server.URL, authToken: "foo", HTTPClient: defaultHTTPClient}
id := "1"
opts := GetLogEntryOptions{TimeZone: "UTC", Includes: []string{}}
res, err := client.GetLogEntry(id, opts)
want := &LogEntry{
APIObject: APIObject{
ID: "1",
Summary: "foo",
},
}
if err != nil {
t.Fatal(err)
}
testEqual(t, want, res)
}