forked from SierraSoftworks/sentry-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontexts_test.go
More file actions
208 lines (175 loc) · 5.27 KB
/
contexts_test.go
File metadata and controls
208 lines (175 loc) · 5.27 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package sentry
import (
"runtime"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func ExampleRuntimeContext() {
cl := NewClient(
// You can configure this when creating your client
RuntimeContext("go", runtime.Version()),
)
cl.Capture(
// Or when sending an event
RuntimeContext("go", runtime.Version()),
)
}
func ExampleOSContext() {
osInfo := OSContextInfo{
Version: "CentOS 7.3",
Build: "centos7.3.1611",
KernelVersion: "3.10.0-514",
Rooted: false,
}
cl := NewClient(
// You can provide this when creating your client
OSContext(&osInfo),
)
cl.Capture(
// Or when you send an event
OSContext(&osInfo),
)
}
func ExampleDeviceContext() {
deviceInfo := DeviceContextInfo{
Architecture: "arm",
BatteryLevel: 100,
Family: "Samsung Galaxy",
Model: "Samsung Galaxy S8",
ModelID: "SM-G95550",
Name: "Samsung Galaxy S8",
Orientation: "portrait",
}
cl := NewClient(
// You can provide this when creating your client
DeviceContext(&deviceInfo),
)
cl.Capture(
// Or when you send an event
DeviceContext(&deviceInfo),
)
}
func TestContexts(t *testing.T) {
Convey("Contexts", t, func() {
Convey("RuntimeContext()", func() {
Convey("Should return a context option", func() {
So(RuntimeContext("go", runtime.Version()), ShouldHaveSameTypeAs, Context("runtime", nil))
})
Convey("Should set the context type to 'runtime'", func() {
c := RuntimeContext("go", runtime.Version())
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts, ShouldContainKey, "runtime")
})
Convey("Should set the context correctly", func() {
c := RuntimeContext("go", runtime.Version())
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts["runtime"], ShouldResemble, map[string]string{
"name": "go",
"version": runtime.Version(),
})
})
})
Convey("OSContext()", func() {
osInfo := OSContextInfo{
Version: "CentOS 7.3",
Build: "centos7.3.1611",
KernelVersion: "3.10.0-514",
Rooted: false,
}
Convey("Should return a context option", func() {
So(OSContext(&osInfo), ShouldHaveSameTypeAs, Context("os", nil))
})
Convey("Should set the context type to 'os'", func() {
c := OSContext(&osInfo)
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts, ShouldContainKey, "os")
})
Convey("Should set the context correctly", func() {
c := OSContext(&osInfo)
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts["os"], ShouldResemble, &osInfo)
})
})
Convey("DeviceContext()", func() {
deviceInfo := DeviceContextInfo{
Architecture: "arm",
BatteryLevel: 100,
Family: "Samsung Galaxy",
Model: "Samsung Galaxy S8",
ModelID: "SM-G95550",
Name: "Samsung Galaxy S8",
Orientation: "portrait",
}
Convey("Should return a context option", func() {
So(DeviceContext(&deviceInfo), ShouldHaveSameTypeAs, Context("device", nil))
})
Convey("Should set the context type to 'device'", func() {
c := DeviceContext(&deviceInfo)
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts, ShouldContainKey, "device")
})
Convey("Should set the context correctly", func() {
c := DeviceContext(&deviceInfo)
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
So(cc.contexts["device"], ShouldResemble, &deviceInfo)
})
})
Convey("Context()", func() {
c := Context("test", "data")
So(c, ShouldNotBeNil)
So(c, ShouldHaveSameTypeAs, &contextOption{})
cc := c.(*contextOption)
So(cc.contexts, ShouldContainKey, "test")
So(cc.contexts["test"], ShouldEqual, "data")
})
Convey("ContextOption", func() {
c := Context("test", "data")
So(c, ShouldNotBeNil)
Convey("Should have the correct Class()", func() {
So(c.Class(), ShouldEqual, "contexts")
})
Convey("Should implement MergableOption interface", func() {
So(c, ShouldImplement, (*MergeableOption)(nil))
})
Convey("Merge()", func() {
cc, ok := c.(*contextOption)
So(ok, ShouldBeTrue)
Convey("Should overwrite if it cannot identify the old type", func() {
out := cc.Merge(&testOption{})
So(out, ShouldEqual, c)
})
Convey("Should overwriting old fields", func() {
old := Context("test", "oldData")
out := cc.Merge(old)
So(out, ShouldNotBeNil)
So(out, ShouldHaveSameTypeAs, &contextOption{})
So(out.(*contextOption).contexts, ShouldResemble, map[string]interface{}{
"test": "data",
})
})
Convey("Should add new fields", func() {
old := Context("old", "data")
out := cc.Merge(old)
So(out, ShouldNotBeNil)
So(out, ShouldHaveSameTypeAs, &contextOption{})
So(out.(*contextOption).contexts, ShouldResemble, map[string]interface{}{
"old": "data",
"test": "data",
})
})
})
Convey("MarshalJSON", func() {
c := Context("test", "data")
So(testOptionsSerialize(c), ShouldResemble, map[string]interface{}{
"test": "data",
})
})
})
})
}