-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbugsnag_test.go
58 lines (50 loc) · 1.27 KB
/
bugsnag_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
package bugsnack
import (
"context"
"errors"
"net/http"
"os"
"runtime"
"testing"
)
func TestErrorReporter(t *testing.T) {
if os.Getenv("BUGSNAG_TEST") != "T" {
t.Skip("not running bugsnag reporter test")
}
er := &BugsnagReporter{
APIKey: os.Getenv("BUGSNAG_API_KEY"),
Doer: http.DefaultClient,
ReleaseStage: "development",
Backup: nil,
}
er.Report(context.Background(), errors.New("bugsnag error test"))
er.Report(context.Background(), errors.New("bugsnag test"), &BugsnagMetadata{
GroupingHash: "net.timeout",
EventMetadata: &map[string]interface{}{
"data": map[string]interface{}{
"os": runtime.GOOS,
},
"key1": "value1",
"key2": "value2",
"arbitraryData": map[string]interface{}{
"goVersion": runtime.Version(),
"nested": map[string]interface{}{
"nestedKey": "value",
},
},
},
})
}
func TestNestedErrorReporter(t *testing.T) {
if os.Getenv("BUGSNAG_TEST") != "T" {
t.Skip("not running bugsnag reporter test")
}
er := MultiReporter{
Reporters: []ErrorReporter{&BugsnagReporter{
APIKey: os.Getenv("BUGSNAG_API_KEY"),
Doer: http.DefaultClient,
ReleaseStage: "development",
Backup: nil,
}}}
er.Report(context.Background(), errors.New("bugsnag multireporter test"))
}