mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: add a test to verify eventHook registration
This commit is contained in:
parent
6aefe18440
commit
f4667fa767
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
const test = require('ava');
|
const test = require('ava');
|
||||||
const proxyquire = require('proxyquire');
|
const proxyquire = require('proxyquire');
|
||||||
|
const { EventEmitter } = require('events');
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const getLogger = require('../test/fixtures/no-logger');
|
const getLogger = require('../test/fixtures/no-logger');
|
||||||
|
|
||||||
@ -13,6 +14,8 @@ const getApp = proxyquire('./app', {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const eventStore = new EventEmitter();
|
||||||
|
|
||||||
const serverImpl = proxyquire('./server-impl', {
|
const serverImpl = proxyquire('./server-impl', {
|
||||||
'./app': getApp,
|
'./app': getApp,
|
||||||
'./metrics': {
|
'./metrics': {
|
||||||
@ -21,8 +24,10 @@ const serverImpl = proxyquire('./server-impl', {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
'./db': {
|
'./db': {
|
||||||
createStores(o) {
|
createStores() {
|
||||||
return o;
|
return {
|
||||||
|
eventStore,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'./options': {
|
'./options': {
|
||||||
@ -58,3 +63,16 @@ test('should call preRouterHook', async t => {
|
|||||||
});
|
});
|
||||||
t.true(called === 1);
|
t.true(called === 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should call eventHook', async t => {
|
||||||
|
let called = 0;
|
||||||
|
await serverImpl.start({
|
||||||
|
port: 0,
|
||||||
|
getLogger,
|
||||||
|
eventHook: () => {
|
||||||
|
called++;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
eventStore.emit('feature-created', {});
|
||||||
|
t.true(called === 1);
|
||||||
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user