forked from hubotio/hubot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
robot_test.coffee
851 lines (664 loc) · 27.4 KB
/
robot_test.coffee
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
# Assertions and Stubbing
chai = require 'chai'
sinon = require 'sinon'
chai.use require 'sinon-chai'
{ expect } = chai
mockery = require 'mockery'
# Hubot classes
Robot = require '../src/robot.coffee'
{ CatchAllMessage, EnterMessage, LeaveMessage, TextMessage, TopicMessage } = require '../src/message'
Adapter = require '../src/adapter'
ScopedHttpClient = require 'scoped-http-client'
# Preload the Hubot mock adapter but substitute in the latest version of Adapter
mockery.enable()
mockery.registerAllowable 'hubot-mock-adapter'
mockery.registerAllowable 'lodash' # hubot-mock-adapter uses lodash
# Force hubot-mock-adapter to use the latest version of Adapter
mockery.registerMock 'hubot/src/adapter', Adapter
# Load the mock adapter into the cache
require 'hubot-mock-adapter'
# We're done with mockery
mockery.deregisterMock 'hubot/src/adapter'
mockery.disable()
describe 'Robot', ->
beforeEach ->
@robot = new Robot null, 'mock-adapter', yes, 'TestHubot'
@robot.alias = 'Hubot'
@robot.run
# Re-throw AssertionErrors for clearer test failures
@robot.on 'error', (name, err, response) ->
return unless err?.constructor?
if err.constructor.name == "AssertionError"
process.nextTick ->
throw err
@user = @robot.brain.userForId '1', {
name: 'hubottester'
room: '#mocha'
}
afterEach ->
@robot.server.close()
@robot.shutdown()
describe 'Unit Tests', ->
describe '#http', ->
beforeEach ->
url = 'http://localhost'
@httpClient = @robot.http(url)
it 'creates a new ScopedHttpClient', ->
# 'instanceOf' check doesn't work here due to the design of
# ScopedHttpClient
expect(@httpClient).to.have.property('get')
expect(@httpClient).to.have.property('post')
it 'passes options through to the ScopedHttpClient', ->
agent = {}
httpClient = @robot.http('http://localhost', agent: agent)
expect(httpClient.options.agent).to.equal(agent)
it 'sets a sane user agent', ->
expect(@httpClient.options.headers['User-Agent']).to.contain('Hubot')
it 'merges in any global http options', ->
agent = {}
@robot.globalHttpOptions = {agent: agent}
httpClient = @robot.http('http://localhost')
expect(httpClient.options.agent).to.equal(agent)
it 'local options override global http options', ->
agentA = {}
agentB = {}
@robot.globalHttpOptions = {agent: agentA}
httpClient = @robot.http('http://localhost', agent: agentB)
expect(httpClient.options.agent).to.equal(agentB)
describe '#respondPattern', ->
it 'matches messages starting with robot\'s name', ->
testMessage = @robot.name + 'message123'
testRegex = /(.*)/
pattern = @robot.respondPattern testRegex
expect(testMessage).to.match(pattern)
match = testMessage.match(pattern)[1]
expect(match).to.equal('message123')
it 'matches messages starting with robot\'s alias', ->
testMessage = @robot.alias + 'message123'
testRegex = /(.*)/
pattern = @robot.respondPattern testRegex
expect(testMessage).to.match(pattern)
match = testMessage.match(pattern)[1]
expect(match).to.equal('message123')
it 'does not match unaddressed messages', ->
testMessage = 'message123'
testRegex = /(.*)/
pattern = @robot.respondPattern testRegex
expect(testMessage).to.not.match(pattern)
it 'matches properly when name is substring of alias', ->
@robot.name = 'Meg'
@robot.alias = 'Megan'
testMessage1 = @robot.name + ' message123'
testMessage2 = @robot.alias + ' message123'
testRegex = /(.*)/
pattern = @robot.respondPattern testRegex
expect(testMessage1).to.match(pattern)
match1 = testMessage1.match(pattern)[1]
expect(match1).to.equal('message123')
expect(testMessage2).to.match(pattern)
match2 = testMessage2.match(pattern)[1]
expect(match2).to.equal('message123')
it 'matches properly when alias is substring of name', ->
@robot.name = 'Megan'
@robot.alias = 'Meg'
testMessage1 = @robot.name + ' message123'
testMessage2 = @robot.alias + ' message123'
testRegex = /(.*)/
pattern = @robot.respondPattern testRegex
expect(testMessage1).to.match(pattern)
match1 = testMessage1.match(pattern)[1]
expect(match1).to.equal('message123')
expect(testMessage2).to.match(pattern)
match2 = testMessage2.match(pattern)[1]
expect(match2).to.equal('message123')
describe '#listen', ->
it 'registers a new listener directly', ->
expect(@robot.listeners).to.have.length(0)
@robot.listen (->), ->
expect(@robot.listeners).to.have.length(1)
describe '#hear', ->
it 'registers a new listener directly', ->
expect(@robot.listeners).to.have.length(0)
@robot.hear /.*/, ->
expect(@robot.listeners).to.have.length(1)
describe '#respond', ->
it 'registers a new listener using hear', ->
sinon.spy @robot, 'hear'
@robot.respond /.*/, ->
expect(@robot.hear).to.have.been.called
describe '#enter', ->
it 'registers a new listener using listen', ->
sinon.spy @robot, 'listen'
@robot.enter ->
expect(@robot.listen).to.have.been.called
describe '#leave', ->
it 'registers a new listener using listen', ->
sinon.spy @robot, 'listen'
@robot.leave ->
expect(@robot.listen).to.have.been.called
describe '#topic', ->
it 'registers a new listener using listen', ->
sinon.spy @robot, 'listen'
@robot.topic ->
expect(@robot.listen).to.have.been.called
describe '#catchAll', ->
it 'registers a new listener using listen', ->
sinon.spy @robot, 'listen'
@robot.catchAll ->
expect(@robot.listen).to.have.been.called
describe '#receive', ->
it 'calls all registered listeners', (done) ->
# Need to use a real Message so that the CatchAllMessage constructor works
testMessage = new TextMessage(@user, 'message123')
listener =
call: (response, middleware, cb) ->
cb()
sinon.spy(listener, 'call')
@robot.listeners = [
listener
listener
listener
listener
]
@robot.receive testMessage, ->
# 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', (done) ->
# Testing for recursion with a new CatchAllMessage that wraps the
# original message
testMessage = new TextMessage(@user, 'message123')
@robot.listeners = []
# Replace @robot.receive so we can catch when the functions recurses
oldReceive = @robot.receive
@robot.receive = (message, cb) ->
expect(message).to.be.instanceof(CatchAllMessage)
expect(message.message).to.be.equal(testMessage)
cb()
sinon.spy(@robot, 'receive')
# Call the original receive method that we want to test
oldReceive.call @robot, testMessage, () =>
expect(@robot.receive).to.have.been.called
done()
it 'does not trigger a CatchAllMessage if a listener matches', (done) ->
testMessage = new TextMessage(@user, 'message123')
matchingListener =
call: (message, middleware, cb) ->
# indicate that the message matched the listener
cb(true)
# Replace @robot.receive so we can catch if the functions recurses
oldReceive = @robot.receive
@robot.receive = sinon.spy()
@robot.listeners = [
matchingListener
]
# Call the original receive method that we want to test
oldReceive.call @robot, testMessage, done
# Ensure the function did not recurse
expect(@robot.receive).to.not.have.been.called
it 'stops processing if a listener marks the message as done', (done) ->
testMessage = new TextMessage(@user, 'message123')
matchingListener =
call: (message, middleware, cb) ->
message.done = true
# Listener must have matched
cb(true)
listenerSpy =
call: sinon.spy()
@robot.listeners = [
matchingListener
listenerSpy
]
@robot.receive testMessage, ->
expect(listenerSpy.call).to.not.have.been.called
done()
it 'gracefully handles listener uncaughtExceptions (move on to next listener)', (done) ->
testMessage = {}
theError = new Error()
badListener =
call: ->
throw theError
goodListenerCalled = false
goodListener =
call: (_, middleware, cb) ->
goodListenerCalled = true
cb(true)
@robot.listeners = [
badListener
goodListener
]
@robot.emit = (name, err, response) ->
expect(name).to.equal('error')
expect(err).to.equal(theError)
expect(response.message).to.equal(testMessage)
sinon.spy(@robot, 'emit')
@robot.receive testMessage, () =>
expect(@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', (done) ->
testMessage = new TextMessage @user, 'message123'
finished = false
@robot.receive testMessage, ->
expect(finished).to.be.ok
done()
finished = true
describe '#loadFile', ->
beforeEach ->
@sandbox = sinon.sandbox.create()
afterEach ->
@sandbox.restore()
it 'should require the specified file', ->
module = require 'module'
script = sinon.spy (robot) ->
@sandbox.stub(module, '_load').returns(script)
@sandbox.stub @robot, 'parseHelp'
@robot.loadFile('./scripts', 'test-script.coffee')
expect(module._load).to.have.been.calledWith('scripts/test-script')
describe 'proper script', ->
beforeEach ->
module = require 'module'
@script = sinon.spy (robot) ->
@sandbox.stub(module, '_load').returns(@script)
@sandbox.stub @robot, 'parseHelp'
it 'should call the script with the Robot', ->
@robot.loadFile('./scripts', 'test-script.coffee')
expect(@script).to.have.been.calledWith(@robot)
it 'should parse the script documentation', ->
@robot.loadFile('./scripts', 'test-script.coffee')
expect(@robot.parseHelp).to.have.been.calledWith('scripts/test-script.coffee')
describe 'non-Function script', ->
beforeEach ->
module = require 'module'
@script = {}
@sandbox.stub(module, '_load').returns(@script)
@sandbox.stub @robot, 'parseHelp'
it 'logs a warning', ->
sinon.stub @robot.logger, 'warning'
@robot.loadFile('./scripts', 'test-script.coffee')
expect(@robot.logger.warning).to.have.been.called
describe 'Listener Registration', ->
describe '#listen', ->
it 'forwards the matcher, options, and callback to Listener', ->
callback = sinon.spy()
matcher = sinon.spy()
options = {}
@robot.listen(matcher, options, callback)
testListener = @robot.listeners[0]
expect(testListener.matcher).to.equal(matcher)
expect(testListener.callback).to.equal(callback)
expect(testListener.options).to.equal(options)
describe '#hear', ->
it 'matches TextMessages', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'message123')
testRegex = /^message123$/
@robot.hear(testRegex, callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match EnterMessages', ->
callback = sinon.spy()
testMessage = new EnterMessage(@user)
testRegex = /.*/
@robot.hear(testRegex, callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe '#respond', ->
it 'matches TextMessages addressed to the robot', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'TestHubot message123')
testRegex = /message123$/
@robot.respond(testRegex, callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match EnterMessages', ->
callback = sinon.spy()
testMessage = new EnterMessage(@user)
testRegex = /.*/
@robot.respond(testRegex, callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe '#enter', ->
it 'matches EnterMessages', ->
callback = sinon.spy()
testMessage = new EnterMessage(@user)
@robot.enter(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match TextMessages', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'message123')
@robot.enter(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe '#leave', ->
it 'matches LeaveMessages', ->
callback = sinon.spy()
testMessage = new LeaveMessage(@user)
@robot.leave(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match TextMessages', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'message123')
@robot.leave(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe '#topic', ->
it 'matches TopicMessages', ->
callback = sinon.spy()
testMessage = new TopicMessage(@user)
@robot.topic(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match TextMessages', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'message123')
@robot.topic(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe '#catchAll', ->
it 'matches CatchAllMessages', ->
callback = sinon.spy()
testMessage = new CatchAllMessage(new TextMessage(@user, 'message123'))
@robot.catchAll(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.be.ok
it 'does not match TextMessages', ->
callback = sinon.spy()
testMessage = new TextMessage(@user, 'message123')
@robot.catchAll(callback)
testListener = @robot.listeners[0]
result = testListener.matcher(testMessage)
expect(result).to.not.be.ok
describe 'Message Processing', ->
it 'calls a matching listener', (done) ->
testMessage = new TextMessage(@user, 'message123')
@robot.hear /^message123$/, (response) ->
expect(response.message).to.equal(testMessage)
done()
@robot.receive testMessage
it 'calls multiple matching listeners', (done) ->
testMessage = new TextMessage(@user, 'message123')
listenersCalled = 0
listenerCallback = (response) ->
expect(response.message).to.equal(testMessage)
listenersCalled++
@robot.hear /^message123$/, listenerCallback
@robot.hear /^message123$/, listenerCallback
@robot.receive testMessage, ->
expect(listenersCalled).to.equal(2)
done()
it 'calls the catch-all listener if no listeners match', (done) ->
testMessage = new TextMessage(@user, 'message123')
listenerCallback = sinon.spy()
@robot.hear /^no-matches$/, listenerCallback
@robot.catchAll (response) ->
expect(listenerCallback).to.not.have.been.called
expect(response.message).to.equal(testMessage)
done()
@robot.receive testMessage
it 'does not call the catch-all listener if any listener matched', (done) ->
testMessage = new TextMessage(@user, 'message123')
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
catchAllCallback = sinon.spy()
@robot.catchAll catchAllCallback
@robot.receive testMessage, ->
expect(listenerCallback).to.have.been.called.once
expect(catchAllCallback).to.not.have.been.called
done()
it 'stops processing if message.finish() is called synchronously', (done) ->
testMessage = new TextMessage(@user, 'message123')
@robot.hear /^message123$/, (response) ->
response.message.finish()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
@robot.receive testMessage, ->
expect(listenerCallback).to.not.have.been.called
done()
it 'calls non-TextListener objects', (done) ->
testMessage = new EnterMessage @user
@robot.enter (response) ->
expect(response.message).to.equal(testMessage)
done()
@robot.receive testMessage
it 'gracefully handles listener uncaughtExceptions (move on to next listener)', (done) ->
testMessage = new TextMessage @user, 'message123'
theError = new Error()
@robot.hear /^message123$/, ->
throw theError
goodListenerCalled = false
@robot.hear /^message123$/, ->
goodListenerCalled = true
[badListener,goodListener] = @robot.listeners
@robot.emit = (name, err, response) ->
expect(name).to.equal('error')
expect(err).to.equal(theError)
expect(response.message).to.equal(testMessage)
sinon.spy(@robot, 'emit')
@robot.receive testMessage, () =>
expect(@robot.emit).to.have.been.called
expect(goodListenerCalled).to.be.ok
done()
describe 'Listener Middleware', ->
it 'allows listener callback execution', (testDone) ->
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
@robot.listenerMiddleware (context, next, done) ->
# Allow Listener callback execution
next done
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, ->
expect(listenerCallback).to.have.been.called
testDone()
it 'can block listener callback execution', (testDone) ->
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
@robot.listenerMiddleware (context, next, done) ->
# Block Listener callback execution
done()
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, ->
expect(listenerCallback).to.not.have.been.called
testDone()
it 'receives the correct arguments', (testDone) ->
@robot.hear /^message123$/, ->
testListener = @robot.listeners[0]
testMessage = new TextMessage @user, 'message123'
@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()
@robot.receive testMessage
it 'executes middleware in order of definition', (testDone) ->
execution = []
testMiddlewareA = (context, next, done) ->
execution.push 'middlewareA'
next ->
execution.push 'doneA'
done()
testMiddlewareB = (context, next, done) ->
execution.push 'middlewareB'
next ->
execution.push 'doneB'
done()
@robot.listenerMiddleware testMiddlewareA
@robot.listenerMiddleware testMiddlewareB
@robot.hear /^message123$/, ->
execution.push 'listener'
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, ->
expect(execution).to.deep.equal([
'middlewareA'
'middlewareB'
'listener'
'doneB'
'doneA'
])
testDone()
describe 'Receive Middleware', ->
it 'fires for all messages, including non-matching ones', (testDone) ->
middlewareSpy = sinon.spy()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
@robot.receiveMiddleware (context, next, done) ->
middlewareSpy()
next(done)
testMessage = new TextMessage @user, 'not message 123'
@robot.receive testMessage, () ->
expect(listenerCallback).to.not.have.been.called
expect(middlewareSpy).to.have.been.called
testDone()
it 'can block listener execution', (testDone) ->
middlewareSpy = sinon.spy()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, listenerCallback
@robot.receiveMiddleware (context, next, done) ->
# Block Listener callback execution
middlewareSpy()
done()
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, () ->
expect(listenerCallback).to.not.have.been.called
expect(middlewareSpy).to.have.been.called
testDone()
it 'receives the correct arguments', (testDone) ->
@robot.hear /^message123$/, () ->
testMessage = new TextMessage @user, 'message123'
@robot.receiveMiddleware (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)
@robot.receive testMessage
it 'executes receive middleware in order of definition', (testDone) ->
execution = []
testMiddlewareA = (context, next, done) ->
execution.push 'middlewareA'
next () ->
execution.push 'doneA'
done()
testMiddlewareB = (context, next, done) ->
execution.push 'middlewareB'
next () ->
execution.push 'doneB'
done()
@robot.receiveMiddleware testMiddlewareA
@robot.receiveMiddleware testMiddlewareB
@robot.hear /^message123$/, () ->
execution.push 'listener'
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, () ->
expect(execution).to.deep.equal([
'middlewareA'
'middlewareB'
'listener'
'doneB'
'doneA'
])
testDone()
it 'allows editing the message portion of the given response', (testDone) ->
execution = []
testMiddlewareA = (context, next, done) ->
context.response.message.text = 'foobar'
next()
testMiddlewareB = (context, next, done) ->
# Subsequent middleware should see the modified message
expect(context.response.message.text).to.equal("foobar")
next()
@robot.receiveMiddleware testMiddlewareA
@robot.receiveMiddleware testMiddlewareB
testCallback = sinon.spy()
# We'll never get to this if testMiddlewareA has not modified the message.
@robot.hear /^foobar$/, testCallback
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, ->
expect(testCallback).to.have.been.called
testDone()
describe 'Response Middleware', ->
it 'executes response middleware in order', (testDone) ->
@robot.adapter.send = sendSpy = sinon.spy()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, (response) ->
response.send "foobar, sir, foobar."
@robot.responseMiddleware (context, next, done) ->
context.strings[0] = context.strings[0].replace(/foobar/g, "barfoo")
next()
@robot.responseMiddleware (context, next, done) ->
context.strings[0] = context.strings[0].replace(/barfoo/g, "replaced bar-foo")
next()
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, () ->
expect(sendSpy.getCall(0).args[1]).to.equal('replaced bar-foo, sir, replaced bar-foo.')
testDone()
it 'allows replacing outgoing strings', (testDone) ->
@robot.adapter.send = sendSpy = sinon.spy()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, (response) ->
response.send "foobar, sir, foobar."
@robot.responseMiddleware (context, next, done) ->
context.strings = ["whatever I want."]
next()
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, () ->
expect(sendSpy.getCall(0).args[1]).to.deep.equal("whatever I want.")
testDone()
it 'marks plaintext as plaintext', (testDone) ->
@robot.adapter.send = sendSpy = sinon.spy()
listenerCallback = sinon.spy()
@robot.hear /^message123$/, (response) ->
response.send "foobar, sir, foobar."
@robot.hear /^message456$/, (response) ->
response.play "good luck with that"
method = undefined
plaintext = undefined
@robot.responseMiddleware (context, next, done) ->
method = context.method
plaintext = context.plaintext
next(done)
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, () =>
expect(plaintext).to.equal true
expect(method).to.equal "send"
testMessage2 = new TextMessage @user, 'message456'
@robot.receive testMessage2, () ->
expect(plaintext).to.equal undefined
expect(method).to.equal "play"
testDone()
it 'does not send trailing functions to middleware', (testDone) ->
@robot.adapter.send = sendSpy = sinon.spy()
asserted = false
postSendCallback = ->
@robot.hear /^message123$/, (response) ->
response.send "foobar, sir, foobar.", postSendCallback
@robot.responseMiddleware (context, next, done) ->
# We don't send the callback function to middleware, so it's not here.
expect(context.strings).to.deep.equal ["foobar, sir, foobar."]
expect(context.method).to.equal "send"
asserted = true
next()
testMessage = new TextMessage @user, 'message123'
@robot.receive testMessage, ->
expect(asserted).to.equal(true)
expect(sendSpy.getCall(0).args[1]).to.equal('foobar, sir, foobar.')
expect(sendSpy.getCall(0).args[2]).to.equal(postSendCallback)
testDone()