-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathxmpp.js
404 lines (378 loc) · 11.6 KB
/
xmpp.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
'use strict'
process.env.NODE_ENV = 'production'
const sinon = require('sinon')
require('chai').should()
const EventEmitter = require('events').EventEmitter
const mock = require('mock-require')
const xml = require('@xmpp/xml')
const jid = require('@xmpp/jid')
describe('XMPP component', () => {
let logger, config, outgoingStub, outgoingStubRejected, xmppSendStub, xmppCloseStub, simpleXmppEvents, xmpp
before('Setup logger and config', (done) => {
// create default logger
logger = require('./../lib/logger')()
// get configuration
config = require('./../lib/config')(logger, './test/config.json')
// update logger with configuration
logger.updateConfig(config.logger)
// mock logger trace
sinon.stub(logger, 'trace')
done()
})
after('Remove mocks', (done) => {
mock.stopAll()
logger.trace.restore()
done()
})
beforeEach('Setup XMPP client with stub', function () {
simpleXmppEvents = new EventEmitter()
// mock outgoing module
outgoingStub = sinon.stub().resolves()
mock('./../lib/outgoing', outgoingStub)
// mock @xmpp/client module
xmppSendStub = sinon.stub().resolves()
xmppCloseStub = sinon.stub().resolves()
mock('@xmpp/client', {
client: () => {
this.start = async () => {}
this.stop = xmppCloseStub
this.send = xmppSendStub
this.on = (eventName, callback) => {
simpleXmppEvents.on(eventName, callback)
}
return this
},
xml: require('@xmpp/xml'),
jid: require('@xmpp/jid')
})
// reset stubs history
outgoingStub.resetHistory()
xmppSendStub.resetHistory()
xmppCloseStub.resetHistory()
// call module and emit online event
xmpp = require('./../lib/xmpp')(logger, config)
simpleXmppEvents.emit('online', jid('[email protected]/resource'))
})
describe('Connect to XMPP server', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('status', 'connecting')
})
it('Should connect to XMPP server and join rooms when application start', (done) => {
sinon.assert.called(xmppSendStub)
// 1 "send" call for presence and n "send" calls for joining rooms
const roomsLength = config.xmpp.rooms.length
sinon.assert.callCount(xmppSendStub, roomsLength + 1)
for (let index = 1; index < roomsLength + 1; index++) {
const args = xmppSendStub.args[index]
args.should.have.length(1)
const occupantJid = config.xmpp.rooms[index - 1].id + '/' + 'bot'
const stanza = xml(
'presence', {
to: occupantJid
},
xml(
'x', {
xmlns: 'http://jabber.org/protocol/muc'
}
)
)
args[0].should.deep.equal(stanza)
}
done()
})
it('Should trace connection status', (done) => {
sinon.assert.calledWith(logger.trace, 'Status changed to connecting')
done()
})
})
describe('Connect to XMPP server but fail to start', () => {
let xmppStartStub
beforeEach(async () => {
xmppStartStub = sinon.stub().rejects(new Error('Stubed error message'))
mock('@xmpp/client', {
client: () => {
this.start = xmppStartStub
this.stop = xmppCloseStub
this.send = xmppSendStub
this.on = (eventName, callback) => {
simpleXmppEvents.on(eventName, callback)
}
return this
},
xml: require('@xmpp/xml'),
jid: require('@xmpp/jid')
})
xmpp = require('./../lib/xmpp')(logger, config)
})
it('Should log error', (done) => {
require('fs').readFile(config.logger.file.path + config.logger.file.filename, 'utf8', (err, data) => {
if (err) {
throw err
}
data.should.match(new RegExp('XMPP client encountered following error at connection: Stubed error message' + '\n$'))
done()
})
})
})
describe('Bot receive a presence stanza from someone', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'presence', {
from: '[email protected]',
to: '[email protected]'
}
))
})
it('Should not trigger outgoing webhook', (done) => {
sinon.assert.notCalled(outgoingStub)
done()
})
})
describe('Bot receive an empty message from someone', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]',
to: '[email protected]',
type: 'chat'
}
))
})
it('Should not trigger outgoing webhook', (done) => {
sinon.assert.notCalled(outgoingStub)
done()
})
})
describe('Bot receive a message from someone', () => {
beforeEach(async () => {
xmppSendStub.resetHistory()
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]',
to: '[email protected]',
type: 'chat',
id: 'fcdd3d8c'
},
xml(
'body', {
},
'This is the message text'),
xml(
'request', {
xmlns: 'urn:xmpp:receipts'
})
))
})
it('Should trigger outgoing webhook with valid arguments and send a message delivery receipt', (done) => {
sinon.assert.calledOnce(outgoingStub)
const args = outgoingStub.args[0]
args.should.have.length(8)
args[3].should.equal('someone')
args[4].should.equal('[email protected]')
args[5].should.equal('This is the message text')
args[6].should.equal('chat')
args[7].should.equal('w1')
sinon.assert.calledOnce(xmppSendStub)
const receiptStanza = xml(
'message', {
to: '[email protected]'
},
xml(
'received', {
xmlns: 'urn:xmpp:receipts',
id: 'fcdd3d8c'
}
)
)
xmppSendStub.args[0][0].should.deep.equal(receiptStanza)
done()
})
})
describe('Bot receive a message from someone but webhook call failed', () => {
beforeEach(async () => {
simpleXmppEvents = new EventEmitter()
outgoingStubRejected = sinon.stub().rejects()
mock('./../lib/outgoing', outgoingStubRejected)
require('./../lib/xmpp')(logger, config)
simpleXmppEvents.emit('online', jid('[email protected]/resource'))
xmppSendStub.resetHistory()
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]',
to: '[email protected]',
type: 'chat',
id: 'fcdd3d8c'
},
xml(
'body', {
},
'Is it working?')
))
})
it('Should send a XMPP reply if webhook failed', () => {
sinon.assert.calledOnce(outgoingStubRejected)
const args = outgoingStubRejected.args[0]
args.should.have.length(8)
args[3].should.equal('someone')
args[4].should.equal('[email protected]')
args[5].should.equal('Is it working?')
args[6].should.equal('chat')
args[7].should.equal('w1')
sinon.assert.calledOnce(xmppSendStub)
const receiptStanza = xml(
'message', {
to: '[email protected]',
type: 'chat'
},
xml(
'body', {
},
'Oops, something went wrong :('
)
)
xmppSendStub.args[0][0].should.deep.equal(receiptStanza)
})
})
describe('Bot receive a message from himself in a room', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]/bot',
to: '[email protected]',
type: 'groupchat'
},
xml(
'body', {
},
'This is the message text')
))
})
it('Should not trigger outgoing webhook', (done) => {
sinon.assert.notCalled(outgoingStub)
done()
})
})
describe('Bot receive a message in an unknown room', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]/someone',
to: '[email protected]',
type: 'groupchat'
},
xml(
'body', {
},
'This is the message text')
))
})
it('Should not trigger outgoing webhook', (done) => {
sinon.assert.notCalled(outgoingStub)
done()
})
})
describe('Bot receive an old message in a room', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]/someone',
to: '[email protected]',
type: 'groupchat'
},
xml(
'body', {
},
'This is the message text'),
xml(
'delay', {
xmlns: 'urn:xmpp:delay',
from: '[email protected]'
},
'This is the message text')
))
})
it('Should not trigger outgoing webhook', (done) => {
sinon.assert.notCalled(outgoingStub)
done()
})
})
describe('Bot receive a message in a room', () => {
beforeEach(async () => {
await simpleXmppEvents.emit('stanza', xml(
'message', {
from: '[email protected]/someone',
to: '[email protected]',
type: 'groupchat'
},
xml(
'body', {
},
'This is the message text')
))
})
it('Should trigger outgoing webhook with valid arguments', (done) => {
sinon.assert.calledOnce(outgoingStub)
const args = outgoingStub.args[0]
args.should.have.length(8)
args[3].should.equal('someone')
args[4].should.equal('[email protected]')
args[5].should.equal('This is the message text')
args[6].should.equal('groupchat')
args[7].should.equal('w1')
done()
})
})
describe('Send a message', () => {
beforeEach(async () => {
xmppSendStub.resetHistory()
await xmpp.send('[email protected]', 'This is the message text sent by bot', 'chat')
})
it('Should call xmpp/client.send() with valid stanza', (done) => {
sinon.assert.calledOnce(xmppSendStub)
const stanza = xml(
'message', {
to: '[email protected]',
type: 'chat'
},
xml(
'body', {
},
'This is the message text sent by bot')
)
const args = xmppSendStub.args[0]
args.should.have.length(1)
args[0].should.deep.equal(stanza)
done()
})
})
describe('Close connection', () => {
beforeEach(async () => {
await xmpp.close()
})
it('Should call xmpp/client.stop()', (done) => {
sinon.assert.calledOnce(xmppCloseStub)
done()
})
})
describe('XMPP server send an error', () => {
let errorText
beforeEach(async () => {
sinon.stub(process, 'exit')
errorText = 'This the error text'
await simpleXmppEvents.emit('error', new Error(errorText))
})
afterEach(() => {
process.exit.restore()
})
it('Should log error and exit with 99 code', (done) => {
require('fs').readFile(config.logger.file.path + config.logger.file.filename, 'utf8', (err, data) => {
if (err) {
throw err
}
data.should.match(new RegExp('XMPP client encountered following error: ' + errorText + '\n$'))
sinon.assert.calledWith(process.exit, 99)
done()
})
})
})
})