mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
ccaab0c47b
Instead of instructing users to do static calls in to Unleash, she should instead be allwed to specify the log provider as an option to Unleash. This commit introduces the "getLogger" option, a function responsible for creating a logger.
85 lines
2.1 KiB
JavaScript
85 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
const test = require('ava');
|
|
const ClientMetricStore = require('./client-metrics-store');
|
|
const lolex = require('lolex');
|
|
const getLogger = require('../../test/fixtures/no-logger');
|
|
|
|
function getMockDb() {
|
|
const list = [
|
|
{ id: 4, metrics: { appName: 'test' } },
|
|
{ id: 3, metrics: { appName: 'test' } },
|
|
{ id: 2, metrics: { appName: 'test' } },
|
|
];
|
|
return {
|
|
getMetricsLastHour() {
|
|
return Promise.resolve([{ id: 1, metrics: { appName: 'test' } }]);
|
|
},
|
|
|
|
getNewMetrics() {
|
|
return Promise.resolve([list.pop() || { id: 0 }]);
|
|
},
|
|
};
|
|
}
|
|
|
|
test.cb('should call database on startup', t => {
|
|
const mock = getMockDb();
|
|
|
|
const store = new ClientMetricStore(mock, getLogger);
|
|
|
|
t.plan(2);
|
|
|
|
store.on('metrics', metrics => {
|
|
t.true(store.highestIdSeen === 1);
|
|
t.true(metrics.appName === 'test');
|
|
store.destroy();
|
|
|
|
t.end();
|
|
});
|
|
});
|
|
|
|
test.cb('should start poller even if inital database fetch fails', t => {
|
|
const clock = lolex.install();
|
|
const mock = getMockDb();
|
|
mock.getMetricsLastHour = () => Promise.reject('oops');
|
|
|
|
const store = new ClientMetricStore(mock, getLogger, 100);
|
|
|
|
const metrics = [];
|
|
store.on('metrics', m => metrics.push(m));
|
|
|
|
store.on('ready', () => {
|
|
t.true(metrics.length === 0);
|
|
clock.tick(300);
|
|
process.nextTick(() => {
|
|
t.true(metrics.length === 3);
|
|
t.true(store.highestIdSeen === 4);
|
|
store.destroy();
|
|
t.end();
|
|
});
|
|
});
|
|
});
|
|
|
|
test.cb('should poll for updates', t => {
|
|
const clock = lolex.install();
|
|
|
|
const mock = getMockDb();
|
|
const store = new ClientMetricStore(mock, getLogger, 100);
|
|
|
|
const metrics = [];
|
|
store.on('metrics', m => metrics.push(m));
|
|
|
|
t.true(metrics.length === 0);
|
|
|
|
store.on('ready', () => {
|
|
t.true(metrics.length === 1);
|
|
clock.tick(300);
|
|
process.nextTick(() => {
|
|
t.true(metrics.length === 4);
|
|
t.true(store.highestIdSeen === 4);
|
|
store.destroy();
|
|
t.end();
|
|
});
|
|
});
|
|
});
|