mirror of
https://github.com/nioc/xmpp-bot.git
synced 2024-11-12 21:06:50 +01:00
45 lines
947 B
JavaScript
45 lines
947 B
JavaScript
'use strict'
|
|
process.env.NODE_ENV = 'production'
|
|
require('chai').should()
|
|
const mock = require('mock-require')
|
|
const sinon = require('sinon')
|
|
|
|
describe('Server', () => {
|
|
let xmppStub, webhookStub
|
|
|
|
before('Setup', (done) => {
|
|
// mock XMPP component
|
|
xmppStub = sinon.stub()
|
|
webhookStub = sinon.stub()
|
|
mock('./../lib/xmpp', () => {
|
|
this.send = () => {}
|
|
this.close = () => {}
|
|
xmppStub()
|
|
return this
|
|
})
|
|
|
|
// mock webhook component
|
|
mock('./../lib/webhook', webhookStub)
|
|
|
|
done()
|
|
})
|
|
|
|
after('Remove mock', () => {
|
|
mock.stopAll()
|
|
})
|
|
|
|
beforeEach('Reset stub', (done) => {
|
|
xmppStub.resetHistory()
|
|
webhookStub.resetHistory()
|
|
done()
|
|
})
|
|
|
|
describe('Start server', () => {
|
|
it('Should call XMPP and webhook components', (done) => {
|
|
require('../lib/server')
|
|
sinon.assert.calledOnce(xmppStub)
|
|
sinon.assert.calledOnce(webhookStub)
|
|
done()
|
|
})
|
|
})
|
|
})
|