-
Notifications
You must be signed in to change notification settings - Fork 16
/
client_test.go
130 lines (99 loc) · 3.07 KB
/
client_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
124
125
126
127
128
129
130
package honeybadger
import (
"sync"
"testing"
)
func TestNewConfig(t *testing.T) {
client := New(Configuration{APIKey: "lemmings"})
if client.Config.APIKey != "lemmings" {
t.Errorf("Expected New to configure APIKey. expected=%#v actual=%#v", "lemmings", client.Config.APIKey)
}
}
func TestConfigureClient(t *testing.T) {
client := New(Configuration{})
client.Configure(Configuration{APIKey: "badgers"})
if client.Config.APIKey != "badgers" {
t.Errorf("Expected Configure to override config.APIKey. expected=%#v actual=%#v", "badgers", client.Config.APIKey)
}
}
func TestConfigureClientEndpoint(t *testing.T) {
client := New(Configuration{})
backend := client.Config.Backend.(*server)
client.Configure(Configuration{Endpoint: "http://localhost:3000"})
if *backend.URL != "http://localhost:3000" {
t.Errorf("Expected Configure to update backend. expected=%#v actual=%#v", "http://localhost:3000", backend.URL)
}
}
func TestClientContext(t *testing.T) {
client := New(Configuration{})
client.SetContext(Context{"foo": "bar"})
client.SetContext(Context{"bar": "baz"})
context := client.context.internal
if context["foo"] != "bar" {
t.Errorf("Expected client to merge global context. expected=%#v actual=%#v", "bar", context["foo"])
}
if context["bar"] != "baz" {
t.Errorf("Expected client to merge global context. expected=%#v actual=%#v", "baz", context["bar"])
}
}
func TestClientConcurrentContext(t *testing.T) {
var wg sync.WaitGroup
client := New(Configuration{})
newContext := Context{"foo": "bar"}
wg.Add(2)
go updateContext(&wg, client, newContext)
go updateContext(&wg, client, newContext)
wg.Wait()
context := client.context.internal
if context["foo"] != "bar" {
t.Errorf("Expected context value. expected=%#v result=%#v", "bar", context["foo"])
}
}
func updateContext(wg *sync.WaitGroup, client *Client, context Context) {
client.SetContext(context)
wg.Done()
}
func TestNotifyPushesTheEnvelope(t *testing.T) {
client, worker, _ := mockClient(Configuration{})
client.Notify("test")
if worker.receivedEnvelope == false {
t.Errorf("Expected client to push envelope")
}
}
func TestNotifySyncMode(t *testing.T) {
client, worker, backend := mockClient(Configuration{Sync: true})
token, _ := client.Notify("test")
if worker.receivedEnvelope == true {
t.Errorf("Expected client to not push envelope")
}
if backend.notice.Token != token {
t.Errorf("Notice should have been called on backend")
}
}
type mockWorker struct {
receivedEnvelope bool
}
func (w *mockWorker) Push(work envelope) error {
w.receivedEnvelope = true
return nil
}
func (w *mockWorker) Flush() {}
type mockBackend struct {
notice *Notice
}
func (b *mockBackend) Notify(_ Feature, n Payload) error {
b.notice = n.(*Notice)
return nil
}
func mockClient(c Configuration) (Client, *mockWorker, *mockBackend) {
worker := &mockWorker{}
backend := &mockBackend{}
backendConfig := &Configuration{Backend: backend}
backendConfig.update(&c)
client := Client{
Config: newConfig(*backendConfig),
worker: worker,
context: newContextSync(),
}
return client, worker, backend
}