forked from PagerDuty/go-pagerduty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_entry_test.go
123 lines (107 loc) · 2.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package pagerduty
import (
"encoding/json"
"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{
{
CommonLogEntryField: CommonLogEntryField{
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{
CommonLogEntryField: CommonLogEntryField{
APIObject: APIObject{
ID: "1",
Summary: "foo",
},
},
}
if err != nil {
t.Fatal(err)
}
testEqual(t, want, res)
}
func TestChannel_MarhalUnmarshal(t *testing.T) {
logEntryRaw := []byte(`{
"id": "1",
"type": "trigger_log_entry",
"summary": "foo",
"channel": {
"type": "web_trigger",
"summary": "My new incident",
"details_omitted": false
}
}`)
want := &LogEntry{
CommonLogEntryField: CommonLogEntryField{
APIObject: APIObject{
ID: "1",
Type: "trigger_log_entry",
Summary: "foo",
},
Channel: Channel{
Type: "web_trigger",
Raw: map[string]interface{}{
"type": "web_trigger",
"summary": "My new incident",
"details_omitted": false,
},
},
},
}
logEntry := &LogEntry{}
if err := json.Unmarshal(logEntryRaw, logEntry); err != nil {
t.Fatal(err)
}
testEqual(t, want, logEntry)
newLogEntryRaw, err := json.Marshal(logEntry)
if err != nil {
t.Fatal(err)
}
newLogEntry := &LogEntry{}
if err := json.Unmarshal(newLogEntryRaw, newLogEntry); err != nil {
t.Fatal(err)
}
testEqual(t, want, newLogEntry)
}