forked from hubotio/hubot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrobot_test.js
1190 lines (980 loc) · 38.3 KB
/
robot_test.js
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict'
/* global describe, beforeEach, it, afterEach */
/* eslint-disable no-unused-expressions */
// Assertions and Stubbing
const chai = require('chai')
const sinon = require('sinon')
chai.use(require('sinon-chai'))
const expect = chai.expect
// Hubot classes
const Robot = require('../src/robot')
const CatchAllMessage = require('../src/message').CatchAllMessage
const EnterMessage = require('../src/message').EnterMessage
const LeaveMessage = require('../src/message').LeaveMessage
const TextMessage = require('../src/message').TextMessage
const TopicMessage = require('../src/message').TopicMessage
const JoinMessage = require('../src/message').JoinMessage
// mock `hubot-mock-adapter` module from fixture
const mockery = require('mockery')
const path = require('path')
describe('Robot', function () {
beforeEach(async function () {
mockery.enable({
warnOnReplace: false,
warnOnUnregistered: false
})
mockery.registerMock('hubot-mock-adapter', require('./fixtures/mock-adapter.js'))
process.env.EXPRESS_PORT = 0
this.robot = new Robot('mock-adapter', true, 'TestHubot')
this.robot.alias = 'Hubot'
await this.robot.loadAdapter()
this.robot.run()
// Re-throw AssertionErrors for clearer test failures
this.robot.on('error', function (name, err, response) {
if (err?.constructor.name === 'AssertionError' || name instanceof chai.AssertionError) {
process.nextTick(function () {
throw err
})
}
})
this.user = this.robot.brain.userForId('1', {
name: 'hubottester',
room: '#mocha'
})
})
afterEach(function () {
mockery.disable()
this.robot.shutdown()
})
describe('Unit Tests', function () {
describe('#http', function () {
beforeEach(function () {
const url = 'http://localhost'
this.httpClient = this.robot.http(url)
})
it('creates a new ScopedHttpClient', function () {
// 'instanceOf' check doesn't work here due to the design of
// ScopedHttpClient
expect(this.httpClient).to.have.property('get')
expect(this.httpClient).to.have.property('post')
})
it('passes options through to the ScopedHttpClient', function () {
const agent = {}
const httpClient = this.robot.http('http://localhost', { agent })
expect(httpClient.options.agent).to.equal(agent)
})
it('sets a sane user agent', function () {
expect(this.httpClient.options.headers['User-Agent']).to.contain('Hubot')
})
it('merges in any global http options', function () {
const agent = {}
this.robot.globalHttpOptions = { agent }
const httpClient = this.robot.http('http://localhost')
expect(httpClient.options.agent).to.equal(agent)
})
it('local options override global http options', function () {
const agentA = {}
const agentB = {}
this.robot.globalHttpOptions = { agent: agentA }
const httpClient = this.robot.http('http://localhost', { agent: agentB })
expect(httpClient.options.agent).to.equal(agentB)
})
it('builds the url correctly from a string', function () {
const options = this.httpClient.buildOptions('http://localhost:3001')
expect(options.host).to.equal('localhost:3001')
expect(options.pathname).to.equal('/')
expect(options.protocol).to.equal('http:')
expect(options.port).to.equal('3001')
})
})
describe('#respondPattern', function () {
it('matches messages starting with robot\'s name', function () {
const testMessage = this.robot.name + 'message123'
const testRegex = /(.*)/
const pattern = this.robot.respondPattern(testRegex)
expect(testMessage).to.match(pattern)
const match = testMessage.match(pattern)[1]
expect(match).to.equal('message123')
})
it('matches messages starting with robot\'s alias', function () {
const testMessage = this.robot.alias + 'message123'
const testRegex = /(.*)/
const pattern = this.robot.respondPattern(testRegex)
expect(testMessage).to.match(pattern)
const match = testMessage.match(pattern)[1]
expect(match).to.equal('message123')
})
it('does not match unaddressed messages', function () {
const testMessage = 'message123'
const testRegex = /(.*)/
const pattern = this.robot.respondPattern(testRegex)
expect(testMessage).to.not.match(pattern)
})
it('matches properly when name is substring of alias', function () {
this.robot.name = 'Meg'
this.robot.alias = 'Megan'
const testMessage1 = this.robot.name + ' message123'
const testMessage2 = this.robot.alias + ' message123'
const testRegex = /(.*)/
const pattern = this.robot.respondPattern(testRegex)
expect(testMessage1).to.match(pattern)
const match1 = testMessage1.match(pattern)[1]
expect(match1).to.equal('message123')
expect(testMessage2).to.match(pattern)
const match2 = testMessage2.match(pattern)[1]
expect(match2).to.equal('message123')
})
it('matches properly when alias is substring of name', function () {
this.robot.name = 'Megan'
this.robot.alias = 'Meg'
const testMessage1 = this.robot.name + ' message123'
const testMessage2 = this.robot.alias + ' message123'
const testRegex = /(.*)/
const pattern = this.robot.respondPattern(testRegex)
expect(testMessage1).to.match(pattern)
const match1 = testMessage1.match(pattern)[1]
expect(match1).to.equal('message123')
expect(testMessage2).to.match(pattern)
const match2 = testMessage2.match(pattern)[1]
expect(match2).to.equal('message123')
})
})
describe('#listen', () =>
it('registers a new listener directly', function () {
expect(this.robot.listeners).to.have.length(0)
this.robot.listen(function () {}, function () {})
expect(this.robot.listeners).to.have.length(1)
})
)
describe('#hear', () =>
it('registers a new listener directly', function () {
expect(this.robot.listeners).to.have.length(0)
this.robot.hear(/.*/, function () {})
expect(this.robot.listeners).to.have.length(1)
})
)
describe('#respond', () =>
it('registers a new listener using hear', function () {
sinon.spy(this.robot, 'hear')
this.robot.respond(/.*/, function () {})
expect(this.robot.hear).to.have.been.called
})
)
describe('#enter', () =>
it('registers a new listener using listen', function () {
sinon.spy(this.robot, 'listen')
this.robot.enter(function () {})
expect(this.robot.listen).to.have.been.called
})
)
describe('#leave', () =>
it('registers a new listener using listen', function () {
sinon.spy(this.robot, 'listen')
this.robot.leave(function () {})
expect(this.robot.listen).to.have.been.called
})
)
describe('#topic', () =>
it('registers a new listener using listen', function () {
sinon.spy(this.robot, 'listen')
this.robot.topic(function () {})
expect(this.robot.listen).to.have.been.called
})
)
describe('#catchAll', () =>
it('registers a new listener using listen', function () {
sinon.spy(this.robot, 'listen')
this.robot.catchAll(function () {})
expect(this.robot.listen).to.have.been.called
})
)
describe('#receive', function () {
it('calls all registered listeners', function (done) {
// Need to use a real Message so that the CatchAllMessage constructor works
const testMessage = new TextMessage(this.user, 'message123')
const listener = {
call (response, middleware, cb) {
cb()
}
}
sinon.spy(listener, 'call')
this.robot.listeners = [
listener,
listener,
listener,
listener
]
this.robot.receive(testMessage, function () {
// When no listeners match, each listener is called twice: once with
// the original message and once with a CatchAll message
expect(listener.call).to.have.callCount(8)
done()
})
})
it('sends a CatchAllMessage if no listener matches', function (done) {
// Testing for recursion with a new CatchAllMessage that wraps the
// original message
const testMessage = new TextMessage(this.user, 'message123')
this.robot.listeners = []
// Replace @robot.receive so we can catch when the functions recurses
const oldReceive = this.robot.receive
this.robot.receive = function (message, cb) {
expect(message).to.be.instanceof(CatchAllMessage)
expect(message.message).to.be.equal(testMessage)
cb()
}
sinon.spy(this.robot, 'receive')
// Call the original receive method that we want to test
oldReceive.call(this.robot, testMessage, () => {
expect(this.robot.receive).to.have.been.called
done()
})
})
it('does not trigger a CatchAllMessage if a listener matches', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
const matchingListener = {
call (message, middleware, doesMatch) {
// indicate that the message matched the listener
doesMatch(true)
}
}
// Replace @robot.receive so we can catch if the functions recurses
const oldReceive = this.robot.receive
this.robot.receive = sinon.spy()
this.robot.listeners = [
matchingListener
]
// Call the original receive method that we want to test
oldReceive.call(this.robot, testMessage, done)
// Ensure the function did not recurse
expect(this.robot.receive).to.not.have.been.called
})
it('stops processing if a listener marks the message as done', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
const matchingListener = {
call (message, middleware, doesMatch) {
message.done = true
// Listener must have matched
doesMatch(true)
}
}
const listenerSpy =
{ call: sinon.spy() }
this.robot.listeners = [
matchingListener,
listenerSpy
]
this.robot.receive(testMessage, function () {
expect(listenerSpy.call).to.not.have.been.called
done()
})
})
it('gracefully handles listener uncaughtExceptions (move on to next listener)', function (done) {
const testMessage = {}
const theError = new Error()
const badListener = {
call () {
throw theError
}
}
let goodListenerCalled = false
const goodListener = {
call (_, middleware, doesMatch) {
goodListenerCalled = true
doesMatch(true)
}
}
this.robot.listeners = [
badListener,
goodListener
]
this.robot.emit = function (name, err, response) {
expect(name).to.equal('error')
expect(err).to.equal(theError)
expect(response.message).to.equal(testMessage)
}
sinon.spy(this.robot, 'emit')
this.robot.receive(testMessage, () => {
expect(this.robot.emit).to.have.been.called
expect(goodListenerCalled).to.be.ok
done()
})
})
it('executes the callback after the function returns when there are no listeners', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
let finished = false
this.robot.receive(testMessage, function () {
expect(finished).to.be.ok
done()
})
finished = true
})
})
describe('#loadFile', function () {
beforeEach(function () {
this.sandbox = sinon.createSandbox()
})
afterEach(function () {
this.sandbox.restore()
})
it('should require the specified file', function () {
const module = require('module')
const script = sinon.spy(function (robot) {})
this.sandbox.stub(module, '_load').returns(script)
this.sandbox.stub(this.robot, 'parseHelp')
this.robot.loadFile('./scripts', 'TestScript.js')
expect(module._load).to.have.been.calledWith(path.join('scripts', 'TestScript'))
})
describe('proper script', function () {
beforeEach(function () {
const module = require('module')
this.script = sinon.spy(function (robot) {})
this.sandbox.stub(module, '_load').returns(this.script)
this.sandbox.stub(this.robot, 'parseHelp')
})
it('should call the script with the Robot', function () {
this.robot.loadFile('./scripts', 'TestScript.js')
expect(this.script).to.have.been.calledWith(this.robot)
})
it('should parse the script documentation', function () {
this.robot.loadFile('./scripts', 'TestScript.js')
expect(this.robot.parseHelp).to.have.been.calledWith(path.join('scripts', 'TestScript.js'))
})
})
describe('non-Function script', function () {
beforeEach(function () {
const module = require('module')
this.script = {}
this.sandbox.stub(module, '_load').returns(this.script)
this.sandbox.stub(this.robot, 'parseHelp')
})
it('logs a warning for a .js file', function () {
sinon.stub(this.robot.logger, 'warning')
this.robot.loadFile('./scripts', 'TestScript.js')
expect(this.robot.logger.warning).to.have.been.called
})
it('logs a warning for a .mjs file', function () {
sinon.stub(this.robot.logger, 'warning')
this.robot.loadFile('./scripts', 'TestScript.mjs')
expect(this.robot.logger.warning).to.have.been.called
})
})
describe('unsupported file extension', function () {
beforeEach(function () {
const module = require('module')
this.script = sinon.spy(function (robot) {})
this.sandbox.stub(module, '_load').returns(this.script)
this.sandbox.stub(this.robot, 'parseHelp')
})
it('should not be loaded by the Robot', function () {
this.robot.loadFile('./scripts', 'unsupported.yml')
expect(this.script).to.not.have.been.calledWith(this.robot)
})
})
})
describe('#send', function () {
beforeEach(function () {
sinon.spy(this.robot.adapter, 'send')
})
it('delegates to adapter "send" with proper context', function () {
this.robot.send({}, 'test message')
expect(this.robot.adapter.send).to.have.been.calledOn(this.robot.adapter)
})
})
describe('#reply', function () {
beforeEach(function () {
sinon.spy(this.robot.adapter, 'reply')
})
it('delegates to adapter "reply" with proper context', function () {
this.robot.reply({}, 'test message')
expect(this.robot.adapter.reply).to.have.been.calledOn(this.robot.adapter)
})
})
describe('#messageRoom', function () {
beforeEach(function () {
sinon.spy(this.robot.adapter, 'send')
})
it('delegates to adapter "send" with proper context', function () {
this.robot.messageRoom('testRoom', 'messageRoom test')
expect(this.robot.adapter.send).to.have.been.calledOn(this.robot.adapter)
})
})
describe('#roomTopic', function () {
this.beforeEach(function () {
sinon.spy(this.robot.adapter, 'topic')
})
it('delegates to adapter "topic" with proper context', function () {
this.robot.roomTopic({ room: '12345' }, 'test title')
expect(this.robot.adapter.topic).to.have.been.calledOn(this.robot.adapter)
expect(this.robot.adapter.topic).to.have.been.calledWith({ room: '12345' }, 'test title')
})
})
describe('#on', function () {
beforeEach(function () {
sinon.spy(this.robot.events, 'on')
})
it('delegates to events "on" with proper context', function () {
this.robot.on('event', function () {})
expect(this.robot.events.on).to.have.been.calledOn(this.robot.events)
})
})
describe('#emit', function () {
beforeEach(function () {
sinon.spy(this.robot.events, 'emit')
})
it('delegates to events "emit" with proper context', function () {
this.robot.emit('event', function () {})
expect(this.robot.events.emit).to.have.been.calledOn(this.robot.events)
})
})
})
describe('Listener Registration', function () {
describe('#listen', () =>
it('forwards the matcher, options, and callback to Listener', function () {
const callback = sinon.spy()
const matcher = sinon.spy()
const options = {}
this.robot.listen(matcher, options, callback)
const testListener = this.robot.listeners[0]
expect(testListener.matcher).to.equal(matcher)
expect(testListener.callback).to.equal(callback)
expect(testListener.options).to.equal(options)
})
)
describe('#hear', function () {
it('matches TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
const testRegex = /^message123$/
this.robot.hear(testRegex, callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match EnterMessages', function () {
const callback = sinon.spy()
const testMessage = new EnterMessage(this.user)
const testRegex = /.*/
this.robot.hear(testRegex, callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#respond', function () {
it('matches TextMessages addressed to the robot', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'TestHubot message123')
const testRegex = /message123$/
this.robot.respond(testRegex, callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match EnterMessages', function () {
const callback = sinon.spy()
const testMessage = new EnterMessage(this.user)
const testRegex = /.*/
this.robot.respond(testRegex, callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#enter', function () {
it('matches EnterMessages', function () {
const callback = sinon.spy()
const testMessage = new EnterMessage(this.user)
this.robot.enter(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
this.robot.enter(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#leave', function () {
it('matches LeaveMessages', function () {
const callback = sinon.spy()
const testMessage = new LeaveMessage(this.user)
this.robot.leave(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
this.robot.leave(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#topic', function () {
it('matches TopicMessages', function () {
const callback = sinon.spy()
const testMessage = new TopicMessage(this.user)
this.robot.topic(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
this.robot.topic(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#join', function () {
it('matches JoinMessages', function () {
const callback = sinon.spy()
const testMessage = new JoinMessage(this.user)
this.robot.join(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
this.robot.join(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
describe('#catchAll', function () {
it('matches CatchAllMessages', function () {
const callback = sinon.spy()
const testMessage = new CatchAllMessage(new TextMessage(this.user, 'message123'))
this.robot.catchAll(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.be.ok
})
it('does not match TextMessages', function () {
const callback = sinon.spy()
const testMessage = new TextMessage(this.user, 'message123')
this.robot.catchAll(callback)
const testListener = this.robot.listeners[0]
const result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
})
})
})
describe('Message Processing', function () {
it('calls a matching listener', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
this.robot.hear(/^message123$/, function (response) {
expect(response.message).to.equal(testMessage)
done()
})
this.robot.receive(testMessage)
})
it('calls multiple matching listeners', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
let listenersCalled = 0
const listenerCallback = function (response) {
expect(response.message).to.equal(testMessage)
listenersCalled++
}
this.robot.hear(/^message123$/, listenerCallback)
this.robot.hear(/^message123$/, listenerCallback)
this.robot.receive(testMessage, function () {
expect(listenersCalled).to.equal(2)
done()
})
})
it('calls the catch-all listener if no listeners match', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
const listenerCallback = sinon.spy()
this.robot.hear(/^no-matches$/, listenerCallback)
this.robot.catchAll(function (response) {
expect(listenerCallback).to.not.have.been.called
expect(response.message).to.equal(testMessage)
done()
})
this.robot.receive(testMessage)
})
it('does not call the catch-all listener if any listener matched', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
const catchAllCallback = sinon.spy()
this.robot.catchAll(catchAllCallback)
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.have.been.calledOnce
expect(catchAllCallback).to.not.have.been.called
done()
})
})
it('stops processing if message.finish() is called synchronously', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
this.robot.hear(/^message123$/, response => response.message.finish())
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.not.have.been.called
done()
})
})
it('calls non-TextListener objects', function (done) {
const testMessage = new EnterMessage(this.user)
this.robot.enter(function (response) {
expect(response.message).to.equal(testMessage)
done()
})
this.robot.receive(testMessage)
})
it('gracefully handles listener uncaughtExceptions (move on to next listener)', function (done) {
const testMessage = new TextMessage(this.user, 'message123')
const theError = new Error()
this.robot.hear(/^message123$/, function () {
throw theError
})
let goodListenerCalled = false
this.robot.hear(/^message123$/, () => {
goodListenerCalled = true
})
this.robot.emit = function (name, err, response) {
expect(name).to.equal('error')
expect(err).to.equal(theError)
expect(response.message).to.equal(testMessage)
}
sinon.spy(this.robot, 'emit')
this.robot.receive(testMessage, () => {
expect(this.robot.emit).to.have.been.called
expect(goodListenerCalled).to.be.ok
done()
})
})
describe('Listener Middleware', function () {
it('allows listener callback execution', function (testDone) {
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
this.robot.listenerMiddleware((context, next, done) =>
// Allow Listener callback execution
next(done)
)
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.have.been.called
testDone()
})
})
it('can block listener callback execution', function (testDone) {
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
this.robot.listenerMiddleware((context, next, done) =>
// Block Listener callback execution
done()
)
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.not.have.been.called
testDone()
})
})
it('receives the correct arguments', function (testDone) {
this.robot.hear(/^message123$/, function () {})
const testListener = this.robot.listeners[0]
const testMessage = new TextMessage(this.user, 'message123')
this.robot.listenerMiddleware((context, next, done) => {
// Escape middleware error handling for clearer test failures
process.nextTick(() => {
expect(context.listener).to.equal(testListener)
expect(context.response.message).to.equal(testMessage)
expect(next).to.be.a('function')
expect(done).to.be.a('function')
testDone()
})
})
this.robot.receive(testMessage)
})
it('executes middleware in order of definition', function (testDone) {
const execution = []
const testMiddlewareA = function (context, next, done) {
execution.push('middlewareA')
next(function () {
execution.push('doneA')
done()
})
}
const testMiddlewareB = function (context, next, done) {
execution.push('middlewareB')
next(function () {
execution.push('doneB')
done()
})
}
this.robot.listenerMiddleware(testMiddlewareA)
this.robot.listenerMiddleware(testMiddlewareB)
this.robot.hear(/^message123$/, () => execution.push('listener'))
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receive(testMessage, function () {
expect(execution).to.deep.equal([
'middlewareA',
'middlewareB',
'listener',
'doneB',
'doneA'
])
testDone()
})
})
})
describe('Receive Middleware', function () {
it('fires for all messages, including non-matching ones', function (testDone) {
const middlewareSpy = sinon.spy()
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
this.robot.receiveMiddleware(function (context, next, done) {
middlewareSpy()
next(done)
})
const testMessage = new TextMessage(this.user, 'not message 123')
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.not.have.been.called
expect(middlewareSpy).to.have.been.called
testDone()
})
})
it('can block listener execution', function (testDone) {
const middlewareSpy = sinon.spy()
const listenerCallback = sinon.spy()
this.robot.hear(/^message123$/, listenerCallback)
this.robot.receiveMiddleware(function (context, next, done) {
// Block Listener callback execution
middlewareSpy()
done()
})
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receive(testMessage, function () {
expect(listenerCallback).to.not.have.been.called
expect(middlewareSpy).to.have.been.called
testDone()
})
})
it('receives the correct arguments', function (testDone) {
this.robot.hear(/^message123$/, function () {})
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receiveMiddleware(function (context, next, done) {
// Escape middleware error handling for clearer test failures
expect(context.response.message).to.equal(testMessage)
expect(next).to.be.a('function')
expect(done).to.be.a('function')
testDone()
next(done)
})
this.robot.receive(testMessage)
})
it('executes receive middleware in order of definition', function (testDone) {
const execution = []
const testMiddlewareA = function (context, next, done) {
execution.push('middlewareA')
next(function () {
execution.push('doneA')
done()
})
}
const testMiddlewareB = function (context, next, done) {
execution.push('middlewareB')
next(function () {
execution.push('doneB')
done()
})
}
this.robot.receiveMiddleware(testMiddlewareA)
this.robot.receiveMiddleware(testMiddlewareB)
this.robot.hear(/^message123$/, () => execution.push('listener'))
const testMessage = new TextMessage(this.user, 'message123')
this.robot.receive(testMessage, function () {
expect(execution).to.deep.equal([
'middlewareA',
'middlewareB',
'listener',
'doneB',
'doneA'
])
testDone()
})
})