-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenc_test.go
472 lines (401 loc) · 11.7 KB
/
enc_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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package natscrypto
import (
"fmt"
"reflect"
"testing"
"time"
"github.com/nats-io/nats"
"github.com/stretchr/testify/assert"
)
var argInfoTests = []struct {
cb nats.Handler
expectedType reflect.Type
expectedNumArgs int
panics bool
}{
{
cb: (func(string, *Msg) {}),
expectedType: reflect.TypeOf(&Msg{}),
expectedNumArgs: 2,
},
{
cb: (func(*Msg) {}),
expectedType: reflect.TypeOf(&Msg{}),
expectedNumArgs: 1,
},
{
cb: (func() {}),
expectedType: nil,
expectedNumArgs: 0,
},
{
cb: 0,
panics: true,
},
}
func TestArgInfo(t *testing.T) {
for _, tt := range argInfoTests {
if tt.panics {
assert.Panics(t, func() { argInfo(tt.cb) })
} else {
typ, numArgs := argInfo(tt.cb)
assert.Equal(t, tt.expectedType, typ)
assert.Equal(t, tt.expectedNumArgs, numArgs)
}
}
}
func TestEncodedConnConstructor(t *testing.T) {
natsSrv := InitNatsTestServer(t)
defer natsSrv.Shutdown()
c := natsSrv.Connect(t)
if c == nil {
return
}
defer c.Close()
ec, err := NewConn(c, "me", DummyEncrypter{})
if err != nil {
t.Errorf("Could not init the encrypted conn: %s", err)
c.Close()
return
}
ec.SetSubjectRecipients("test", []string{"riri", "fifi", "loulou"})
_, err = NewEncodedConn(nil, "json")
assert.Equal(t, ErrNilConnection, err)
_, err = NewEncodedConn(ec, "unknown")
assert.Equal(t, "natscrypto: No encoder registered for 'unknown'", err.Error())
ec.CloseAll()
_, err = NewEncodedConn(ec, "json")
assert.Equal(t, nats.ErrConnectionClosed, err)
}
func TestEncodedConn(t *testing.T) {
natsSrv := InitNatsTestServer(t)
defer natsSrv.Shutdown()
c := natsSrv.Connect(t)
if c == nil {
return
}
ec, err := NewConn(c, "me", DummyEncrypter{})
if err != nil {
t.Errorf("Could not init the encrypted conn: %s", err)
c.Close()
return
}
ec.SetSubjectRecipients("test", []string{"riri", "fifi", "loulou"})
enc, err := NewEncodedConn(ec, "json")
if err != nil {
t.Errorf("Could not init the encoded conn: %s", err)
ec.Close()
return
}
defer enc.CloseAll()
Run(t, "SubscribeSync", func(t *testing.T) {
s, err := enc.SubscribeSync("test")
assert.Nil(t, err)
defer s.Unsubscribe()
{
question := QuestionMsg{Text: "A question", Integer: 12}
assert.Nil(t, enc.Publish("test", &question))
question.Text = "Another"
assert.Nil(t, enc.Publish("test", &question))
question.Integer = 42
assert.Nil(t, enc.PublishRequest("test", "zereply", &question))
}
{
var (
subject string
reply string
question QuestionMsg
)
assert.Nil(t, s.Next(&question, time.Millisecond))
assert.Equal(t, "A question", question.Text)
assert.Equal(t, 12, question.Integer)
assert.Nil(t, s.NextSubject(&subject, &question, time.Millisecond))
assert.Equal(t, "test", subject)
assert.Equal(t, "Another", question.Text)
assert.Equal(t, 12, question.Integer)
assert.Nil(t, s.NextSubjectReply(&subject, &reply, &question, time.Millisecond))
assert.Equal(t, "test", subject)
assert.Equal(t, "zereply", reply)
assert.Equal(t, "Another", question.Text)
assert.Equal(t, 42, question.Integer)
}
})
Run(t, "SubscribeSync NextMsg error", func(t *testing.T) {
s, err := enc.SubscribeSync("test")
assert.Nil(t, err)
defer s.Unsubscribe()
var (
subject string
reply string
question QuestionMsg
)
err = s.Next(&question, time.Millisecond)
assert.Equal(t, "nats: timeout", err.Error())
err = s.NextSubject(&subject, &question, time.Millisecond)
assert.Equal(t, "nats: timeout", err.Error())
err = s.NextSubjectReply(&subject, &reply, &question, time.Millisecond)
assert.Equal(t, "nats: timeout", err.Error())
})
Run(t, "Subscribe Raw", func(t *testing.T) {
var lastMsg *Msg
cb := func(msg *Msg) {
lastMsg = msg
}
s, err := enc.QueueSubscribe("test", "", cb)
assert.Nil(t, err)
defer s.Unsubscribe()
question := QuestionMsg{Text: "Question", Integer: 38}
assert.Nil(t, enc.Publish("test", &question))
time.Sleep(time.Millisecond)
assert.NotNil(t, lastMsg)
assert.Equal(t, "test", lastMsg.Subject)
assert.Equal(t, `{"Text":"Question","Integer":38}`, string(lastMsg.Data))
})
Run(t, "Subscribe invalid handler", func(t *testing.T) {
_, err := enc.Subscribe("test", func() {})
assert.Equal(t, "natscrypto: Handler requires at least one argument", err.Error())
_, err = enc.Subscribe("test", func(a1, a2, a3, a4, a5 string) {})
assert.Equal(t, "natscrypto: Handler requires at most 4 arguments", err.Error())
})
Run(t, "Subscribe value", func(t *testing.T) {
var lastQuestion *QuestionMsg
cb := func(q QuestionMsg) {
lastQuestion = &q
}
s, err := enc.Subscribe("test", cb)
assert.Nil(t, err)
defer s.Unsubscribe()
question := QuestionMsg{Text: "Question", Integer: 38}
assert.Nil(t, enc.Publish("test", &question))
time.Sleep(time.Millisecond)
assert.NotNil(t, lastQuestion)
assert.Equal(t, "Question", lastQuestion.Text)
assert.Equal(t, 38, lastQuestion.Integer)
})
Run(t, "Subscribe subject/value", func(t *testing.T) {
var (
lastSubject string
lastQuestion *QuestionMsg
)
cb := func(subject string, q QuestionMsg) {
lastSubject = subject
lastQuestion = &q
}
s, err := enc.Subscribe("test", cb)
assert.Nil(t, err)
defer s.Unsubscribe()
question := QuestionMsg{Text: "Question", Integer: 38}
assert.Nil(t, enc.Publish("test", &question))
time.Sleep(time.Millisecond)
assert.NotNil(t, lastQuestion)
assert.Equal(t, "test", lastSubject)
assert.Equal(t, "Question", lastQuestion.Text)
assert.Equal(t, 38, lastQuestion.Integer)
})
Run(t, "Subscribe subject/reply/value", func(t *testing.T) {
var (
lastSubject string
lastReply string
lastQuestion *QuestionMsg
)
cb := func(subject string, reply string, q *QuestionMsg) {
lastSubject = subject
lastReply = reply
lastQuestion = q
}
s, err := enc.Subscribe("test", cb)
assert.Nil(t, err)
defer s.Unsubscribe()
question := QuestionMsg{Text: "Question", Integer: 38}
assert.Nil(t, enc.PublishRequest("test", "zereply", &question))
time.Sleep(time.Millisecond)
assert.NotNil(t, lastQuestion)
assert.Equal(t, "test", lastSubject)
assert.Equal(t, "zereply", lastReply)
assert.Equal(t, "Question", lastQuestion.Text)
assert.Equal(t, 38, lastQuestion.Integer)
})
Run(t, "Subscribe subject/reply/signer/value", func(t *testing.T) {
var (
lastSubject string
lastReply string
lastSigner string
lastQuestion *QuestionMsg
hit = make(chan bool, 1)
)
cb := func(subject string, reply string, signer string, q *QuestionMsg) {
lastSubject = subject
lastReply = reply
lastSigner = signer
lastQuestion = q
hit <- true
}
s, err := enc.Subscribe("test", cb)
assert.Nil(t, err)
defer s.Unsubscribe()
question := QuestionMsg{Text: "Question", Integer: 38}
assert.Nil(t, enc.PublishRequest("test", "zereply", &question))
timeout := TimeoutChan(time.Millisecond * 250)
select {
case <-timeout:
t.Errorf("Callback not called")
case <-hit:
assert.NotNil(t, lastQuestion)
assert.Equal(t, "test", lastSubject)
assert.Equal(t, "zereply", lastReply)
assert.Equal(t, "Question", lastQuestion.Text)
assert.Equal(t, "me", lastSigner)
assert.Equal(t, 38, lastQuestion.Integer)
}
})
Run(t, "Request", func(t *testing.T) {
go func() {
s, err := enc.SubscribeSync("test")
assert.Nil(t, err)
defer s.Unsubscribe()
var (
subject, reply string
question QuestionMsg
)
assert.Nil(t, s.NextSubjectReply(&subject, &reply, &question, 10*time.Millisecond))
assert.Nil(t,
enc.Publish(reply, &AnswerMsg{Text: "The answer"}),
)
assert.Nil(t, s.NextSubjectReply(&subject, &reply, &question, 10*time.Millisecond))
assert.Nil(t,
enc.Publish(reply, &AnswerMsg{Text: "The answer"}),
)
}()
time.Sleep(time.Millisecond)
var answer AnswerMsg
q := QuestionMsg{Text: "The question", Integer: 9}
err := enc.Request("test", q, &answer, time.Second)
assert.Nil(t, err)
var msg Msg
err = enc.Request("test", q, &msg, time.Second)
assert.Nil(t, err)
assert.Equal(t, `{"Text":"The answer"}`, string(msg.Data))
err = enc.Request("test", 42, &msg, time.Microsecond)
assert.Equal(t, "nats: timeout", err.Error())
})
Run(t, "SubscribeSync error handling", func(t *testing.T) {
s, err := enc.SubscribeSync("test")
if err != nil {
t.Fatal(err)
}
defer func() { assert.Nil(t, s.Unsubscribe()) }()
assert.Nil(t, enc.Conn.Publish("test", []byte("Invalid json")))
var answer AnswerMsg
err = s.Next(&answer, time.Second)
assert.EqualError(t, err, "invalid character 'I' looking for beginning of value")
})
Run(t, "Subscribe error handling", func(t *testing.T) {
var hit = false
cb := func(answer AnswerMsg) {
t.Error("Callback was called")
hit = true
}
s, err := enc.Subscribe("test", cb)
if err != nil {
t.Fatal(err)
}
defer func() { assert.Nil(t, s.Unsubscribe()) }()
s.SetDecryptErrorHandler(func(sub *Subscription, msg *Msg) *Msg {
assert.EqualError(t, msg.Error, "invalid character 'I' looking for beginning of value")
return nil
})
assert.Nil(t, enc.Conn.Publish("test", []byte("Invalid json")))
time.Sleep(time.Millisecond)
assert.False(t, hit)
})
}
type BadEncoder struct{}
func (BadEncoder) Encode(string, interface{}) ([]byte, error) {
return nil, fmt.Errorf("Encoding failed")
}
func (BadEncoder) Decode(string, []byte, interface{}) error {
return fmt.Errorf("Decoding failed")
}
func TestEncoderErrors(t *testing.T) {
natsSrv := InitNatsTestServer(t)
defer natsSrv.Shutdown()
c := natsSrv.Connect(t)
if c == nil {
return
}
ec, err := NewConn(c, "me", DummyEncrypter{})
if err != nil {
t.Errorf("Could not init the encrypted conn: %s", err)
c.Close()
return
}
ec.SetSubjectRecipients("test", []string{"riri", "fifi", "loulou"})
nats.RegisterEncoder("bad", &BadEncoder{})
enc, err := NewEncodedConn(ec, "bad")
if err != nil {
t.Errorf("Could not init the encoded conn: %s", err)
ec.Close()
return
}
defer enc.CloseAll()
err = enc.Publish("test", 42)
assert.Equal(t, "Encoding failed", err.Error())
err = enc.PublishRequest("test", "reply", 42)
assert.Equal(t, "Encoding failed", err.Error())
var response int
err = enc.Request("test", 42, &response, time.Second)
assert.Equal(t, "Encoding failed", err.Error())
}
func TestRequestErrors(t *testing.T) {
natsSrv := InitNatsTestServer(t)
defer natsSrv.Shutdown()
c := natsSrv.Connect(t)
if c == nil {
return
}
ec, err := NewConn(c, "me", DummyEncrypter{})
if err != nil {
t.Errorf("Could not init the encrypted conn: %s", err)
c.Close()
return
}
ec.SetSubjectRecipients("test", []string{"riri", "fifi", "loulou"})
enc, err := NewEncodedConn(ec, "json")
if err != nil {
t.Errorf("Could not init the encoded conn: %s", err)
ec.Close()
return
}
defer enc.CloseAll()
var response int
err = enc.Request("test", 42, &response, time.Microsecond)
assert.Equal(t, "nats: timeout", err.Error())
}
func TestSubscribeErrors(t *testing.T) {
natsSrv := InitNatsTestServer(t)
defer natsSrv.Shutdown()
c := natsSrv.Connect(t)
if c == nil {
return
}
ec, err := NewConn(c, "me", DummyEncrypter{})
if err != nil {
t.Errorf("Could not init the encrypted conn: %s", err)
c.Close()
return
}
ec.SetSubjectRecipients("test", []string{"riri", "fifi", "loulou"})
enc, err := NewEncodedConn(ec, "json")
if err != nil {
t.Errorf("Could not init the encoded conn: %s", err)
ec.Close()
return
}
defer enc.CloseAll()
enc.Conn.Conn = nil
_, err = enc.Subscribe("test", nil)
assert.Equal(t, "nats: invalid connection", err.Error())
_, err = enc.QueueSubscribe("test", "queue", func(*Msg) {})
assert.Equal(t, "nats: invalid connection", err.Error())
enc.Conn.Conn = c
}