-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.go
284 lines (239 loc) · 6.99 KB
/
context_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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
package pts
import (
"encoding/json"
"errors"
"strings"
"testing"
)
func TestError(t *testing.T) {
t.Run("Init Error with go error", func(t *testing.T) {
testContext := &Context{}
testDescription := "Foo Bar Error"
testCode := ErrorSendingErrorFailed
testErr := errors.New("A error")
err := NewError(testContext, testCode, testDescription, testErr)
if err.Context != testContext {
t.Errorf("err.Context = %p, want %p", err.Context, testContext)
}
if err.Code != testCode {
t.Errorf("err.Code = %d, want %d", err.Code, testCode)
}
if err.Description != testDescription {
t.Errorf("err.Description = %s, want %s", err.Description, testDescription)
}
if err.Raw != testErr {
t.Errorf("err.Raw = %e, want %e", err.Raw, testErr)
}
})
t.Run("Init Error without go error", func(t *testing.T) {
testContext := &Context{}
testDescription := "Foo Bar Error"
testCode := ErrorSendingErrorFailed
err := NewError(testContext, testCode, testDescription, nil)
if err.Context != testContext {
t.Errorf("err.Context = %p, want %p", err.Context, testContext)
}
if err.Code != testCode {
t.Errorf("err.Code = %d, want %d", err.Code, testCode)
}
if err.Description != testDescription {
t.Errorf("err.Description = %s, want %s", err.Description, testDescription)
}
if err.Raw.Error() != testDescription {
t.Errorf("err.Raw = %s, want %s", err.Raw, testDescription)
}
})
}
func TestContext(t *testing.T) {
t.Run("Get/Set properties", func(t *testing.T) {
testKey := "fooBar"
testKeyNotExistent := "fooBarBarFoo"
testVal := "barFoo"
testContext := &Context{
properties: map[string]interface{}{},
}
testContext.Set(testKey, testVal)
if val, _ := testContext.Get(testKey); val != testVal {
t.Errorf("testContext.Get(%s) = %s, want %s", testKey, val, testVal)
}
if val, exists := testContext.Get(testKeyNotExistent); exists != false || val != nil {
valStr := "nil"
if val != nil {
valStr = "interface{}"
}
boolStr := "false"
if exists {
boolStr = "true"
}
t.Errorf("testContext.Get(%s) = (%s, %s), want (nil, false)", testKeyNotExistent, valStr, boolStr)
}
})
t.Run("MustGet property", func(t *testing.T) {
testKey := "fooBar"
testKeyNotExistent := "fooBarBarFoo"
testVal := "barFoo"
testContext := &Context{
properties: map[string]interface{}{},
}
testContext.Set(testKey, testVal)
if val := testContext.MustGet(testKey); val != testVal {
t.Errorf("testContext.MustGet(%s) = %s, want %s", testKey, val, testVal)
}
defer func() { recover() }()
testContext.MustGet(testKeyNotExistent)
t.Errorf("testContext.MustGet(%s) did not panic, but it should have", testKeyNotExistent)
})
t.Run("Get/Set properties", func(t *testing.T) {
testKeyNotExistent := "fooBarXX"
testKey := "fooBar"
testVal := "barFoo"
testContext := &Context{
properties: map[string]interface{}{},
}
testParams := map[string]string{
testKey: testVal,
}
testContext.SetParams(testParams)
if val := testContext.Param(testKey); val != testVal {
t.Errorf("testContext.Param(%s) = %s, want %s", testKey, val, testVal)
}
if val := testContext.Param(testKeyNotExistent); val != "" {
t.Errorf("testContext.Param(%s) != %s, want \"\"", testKeyNotExistent, val)
}
})
t.Run("Send Client error", func(t *testing.T) {
testContext := &Context{
properties: map[string]interface{}{},
Client: &Client{Id: "ABC123", sendMessage: func(message []byte) error {
return errors.New("something failed")
}},
}
payload, _ := json.Marshal(map[string]any{
"foo": "bar",
})
if err := testContext.Send(payload); err == nil {
t.Errorf("testContext.Send(...) returns no error, want error")
} else if err.Code != ErrorSendingMessageFailed {
t.Errorf("testContext.Send(...) returns Error{Code: %d}, want Error{Code: %d}", err.Code, ErrorSendingMessageFailed)
}
})
t.Run("Broadcast should correctly exclude context owner if option is set", func(t *testing.T) {
testPath := "example/path"
payload, _ := json.Marshal(map[string]any{
"foo": "bar",
})
opts := &ContextBroadcastOptions{
ExcludeContextOwner: true,
}
channel := &Channel{
path: strings.Split(testPath, channelPathSep),
handlers: ChannelHandlers{},
subscribers: ChannelSubscribers{},
}
channel.subscribers.init()
ownerClient := &Client{
Id: "ABC123",
sendMessage: func(message []byte) error {
t.Error("sendMessage should not have been called for ownerClient")
return nil
},
}
otherClient := &Client{
Id: "XYZ789",
sendMessage: func(message []byte) error {
return nil
},
}
context := &Context{
FullPath: testPath,
Client: ownerClient,
Channel: channel,
}
channel.Subscribe(context)
channel.Subscribe(&Context{FullPath: testPath, Client: otherClient})
// when
context.Broadcast(payload, opts)
// there's no explicit "then" step here because we're asserting in the sendMessage function
})
t.Run("Broadcast should not exclude context owner if option is not set", func(t *testing.T) {
testPath := "example/path"
payload, _ := json.Marshal(map[string]any{
"foo": "bar",
})
opts := &ContextBroadcastOptions{
ExcludeContextOwner: false,
}
channel := &Channel{
path: strings.Split(testPath, channelPathSep),
handlers: ChannelHandlers{},
subscribers: ChannelSubscribers{},
}
channel.subscribers.init()
sendCount := 0
ownerClient := &Client{
Id: "ABC123",
sendMessage: func(message []byte) error {
sendCount++
return nil
},
}
otherClient := &Client{
Id: "XYZ789",
sendMessage: func(message []byte) error {
return nil
},
}
context := &Context{
FullPath: testPath,
Client: ownerClient,
Channel: channel,
}
channel.Subscribe(context)
channel.Subscribe(&Context{FullPath: testPath, Client: otherClient})
// when
context.Broadcast(payload, opts)
// then
if sendCount != 1 {
t.Errorf("Expected sendMessage to be called once for ownerClient, was called %d times", sendCount)
}
})
t.Run("Broadcast should not exclude context owner if options is nil", func(t *testing.T) {
testPath := "example/path"
payload, _ := json.Marshal(map[string]any{
"foo": "bar",
})
channel := &Channel{
path: strings.Split(testPath, channelPathSep),
handlers: ChannelHandlers{},
subscribers: ChannelSubscribers{},
}
channel.subscribers.init()
sendCount := 0
ownerClient := &Client{
Id: "ABC123",
sendMessage: func(message []byte) error {
sendCount++
return nil
},
}
otherClient := &Client{
Id: "XYZ789",
sendMessage: func(message []byte) error {
return nil
},
}
context := &Context{
FullPath: testPath,
Client: ownerClient,
Channel: channel,
}
channel.Subscribe(context)
channel.Subscribe(&Context{FullPath: testPath, Client: otherClient})
// when
context.Broadcast(payload, nil)
// then
if sendCount != 1 {
t.Errorf("Expected sendMessage to be called once for ownerClient, was called %d times", sendCount)
}
})
}