fix(test): make chart tests working

This commit is contained in:
syuilo 2022-06-05 20:37:24 +09:00
parent 09b749eb97
commit d17298d3b5
3 changed files with 65 additions and 53 deletions

View file

@ -208,7 +208,15 @@ export const db = new DataSource({
migrations: ['../../migration/*.js'], migrations: ['../../migration/*.js'],
}); });
export async function initDb() { export async function initDb(force = false) {
if (force) {
if (db.isInitialized) {
await db.destroy();
}
await db.initialize();
return;
}
if (db.isInitialized) { if (db.isInitialized) {
// nop // nop
} else { } else {

View file

@ -11,6 +11,11 @@ import { entity as PerUserFollowingChart } from './charts/entities/per-user-foll
import { entity as PerUserDriveChart } from './charts/entities/per-user-drive.js'; import { entity as PerUserDriveChart } from './charts/entities/per-user-drive.js';
import { entity as ApRequestChart } from './charts/entities/ap-request.js'; import { entity as ApRequestChart } from './charts/entities/ap-request.js';
import { entity as TestChart } from './charts/entities/test.js';
import { entity as TestGroupedChart } from './charts/entities/test-grouped.js';
import { entity as TestUniqueChart } from './charts/entities/test-unique.js';
import { entity as TestIntersectionChart } from './charts/entities/test-intersection.js';
export const entities = [ export const entities = [
FederationChart.hour, FederationChart.day, FederationChart.hour, FederationChart.day,
NotesChart.hour, NotesChart.day, NotesChart.hour, NotesChart.day,
@ -24,4 +29,11 @@ export const entities = [
PerUserFollowingChart.hour, PerUserFollowingChart.day, PerUserFollowingChart.hour, PerUserFollowingChart.day,
PerUserDriveChart.hour, PerUserDriveChart.day, PerUserDriveChart.hour, PerUserDriveChart.day,
ApRequestChart.hour, ApRequestChart.day, ApRequestChart.hour, ApRequestChart.day,
...(process.env.NODE_ENV === 'test' ? [
TestChart.hour, TestChart.day,
TestGroupedChart.hour, TestGroupedChart.day,
TestUniqueChart.hour, TestUniqueChart.day,
TestIntersectionChart.hour, TestIntersectionChart.day,
] : []),
]; ];

View file

@ -6,26 +6,17 @@ import TestChart from '../src/services/chart/charts/test.js';
import TestGroupedChart from '../src/services/chart/charts/test-grouped.js'; import TestGroupedChart from '../src/services/chart/charts/test-grouped.js';
import TestUniqueChart from '../src/services/chart/charts/test-unique.js'; import TestUniqueChart from '../src/services/chart/charts/test-unique.js';
import TestIntersectionChart from '../src/services/chart/charts/test-intersection.js'; import TestIntersectionChart from '../src/services/chart/charts/test-intersection.js';
import * as _TestChart from '../src/services/chart/charts/entities/test.js'; import { initDb } from '../src/db/postgre.js';
import * as _TestGroupedChart from '../src/services/chart/charts/entities/test-grouped.js';
import * as _TestUniqueChart from '../src/services/chart/charts/entities/test-unique.js';
import * as _TestIntersectionChart from '../src/services/chart/charts/entities/test-intersection.js';
import { async, initTestDb } from './utils.js';
describe('Chart', () => { describe('Chart', () => {
let testChart: TestChart; let testChart: TestChart;
let testGroupedChart: TestGroupedChart; let testGroupedChart: TestGroupedChart;
let testUniqueChart: TestUniqueChart; let testUniqueChart: TestUniqueChart;
let testIntersectionChart: TestIntersectionChart; let testIntersectionChart: TestIntersectionChart;
let clock: lolex.Clock; let clock: lolex.InstalledClock;
beforeEach(async(async () => { beforeEach(async () => {
await initTestDb(false, [ await initDb(true);
_TestChart.entity.hour, _TestChart.entity.day,
_TestGroupedChart.entity.hour, _TestGroupedChart.entity.day,
_TestUniqueChart.entity.hour, _TestUniqueChart.entity.day,
_TestIntersectionChart.entity.hour, _TestIntersectionChart.entity.day,
]);
testChart = new TestChart(); testChart = new TestChart();
testGroupedChart = new TestGroupedChart(); testGroupedChart = new TestGroupedChart();
@ -34,14 +25,15 @@ describe('Chart', () => {
clock = lolex.install({ clock = lolex.install({
now: new Date(Date.UTC(2000, 0, 1, 0, 0, 0)), now: new Date(Date.UTC(2000, 0, 1, 0, 0, 0)),
shouldClearNativeTimers: true,
}); });
})); });
afterEach(async(async () => { afterEach(() => {
clock.uninstall(); clock.uninstall();
})); });
it('Can updates', async(async () => { it('Can updates', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -63,9 +55,9 @@ describe('Chart', () => {
total: [1, 0, 0], total: [1, 0, 0],
}, },
}); });
})); });
it('Can updates (dec)', async(async () => { it('Can updates (dec)', async () => {
await testChart.decrement(); await testChart.decrement();
await testChart.save(); await testChart.save();
@ -87,9 +79,9 @@ describe('Chart', () => {
total: [-1, 0, 0], total: [-1, 0, 0],
}, },
}); });
})); });
it('Empty chart', async(async () => { it('Empty chart', async () => {
const chartHours = await testChart.getChart('hour', 3, null); const chartHours = await testChart.getChart('hour', 3, null);
const chartDays = await testChart.getChart('day', 3, null); const chartDays = await testChart.getChart('day', 3, null);
@ -108,9 +100,9 @@ describe('Chart', () => {
total: [0, 0, 0], total: [0, 0, 0],
}, },
}); });
})); });
it('Can updates at multiple times at same time', async(async () => { it('Can updates at multiple times at same time', async () => {
await testChart.increment(); await testChart.increment();
await testChart.increment(); await testChart.increment();
await testChart.increment(); await testChart.increment();
@ -134,9 +126,9 @@ describe('Chart', () => {
total: [3, 0, 0], total: [3, 0, 0],
}, },
}); });
})); });
it('複数回saveされてもデータの更新は一度だけ', async(async () => { it('複数回saveされてもデータの更新は一度だけ', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
await testChart.save(); await testChart.save();
@ -160,9 +152,9 @@ describe('Chart', () => {
total: [1, 0, 0], total: [1, 0, 0],
}, },
}); });
})); });
it('Can updates at different times', async(async () => { it('Can updates at different times', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -189,11 +181,11 @@ describe('Chart', () => {
total: [2, 0, 0], total: [2, 0, 0],
}, },
}); });
})); });
// 仕様上はこうなってほしいけど、実装は難しそうなのでskip // 仕様上はこうなってほしいけど、実装は難しそうなのでskip
/* /*
it('Can updates at different times without save', async(async () => { it('Can updates at different times without save', async () => {
await testChart.increment(); await testChart.increment();
clock.tick('01:00:00'); clock.tick('01:00:00');
@ -219,10 +211,10 @@ describe('Chart', () => {
total: [2, 0, 0] total: [2, 0, 0]
}, },
}); });
})); });
*/ */
it('Can padding', async(async () => { it('Can padding', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -249,10 +241,10 @@ describe('Chart', () => {
total: [2, 0, 0], total: [2, 0, 0],
}, },
}); });
})); });
// 要求された範囲にログがひとつもない場合でもパディングできる // 要求された範囲にログがひとつもない場合でもパディングできる
it('Can padding from past range', async(async () => { it('Can padding from past range', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -276,11 +268,11 @@ describe('Chart', () => {
total: [1, 0, 0], total: [1, 0, 0],
}, },
}); });
})); });
// 要求された範囲の最も古い箇所に位置するログが存在しない場合でもパディングできる // 要求された範囲の最も古い箇所に位置するログが存在しない場合でもパディングできる
// Issue #3190 // Issue #3190
it('Can padding from past range 2', async(async () => { it('Can padding from past range 2', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -307,9 +299,9 @@ describe('Chart', () => {
total: [2, 0, 0], total: [2, 0, 0],
}, },
}); });
})); });
it('Can specify offset', async(async () => { it('Can specify offset', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -336,9 +328,9 @@ describe('Chart', () => {
total: [2, 0, 0], total: [2, 0, 0],
}, },
}); });
})); });
it('Can specify offset (floor time)', async(async () => { it('Can specify offset (floor time)', async () => {
clock.tick('00:30:00'); clock.tick('00:30:00');
await testChart.increment(); await testChart.increment();
@ -367,10 +359,10 @@ describe('Chart', () => {
total: [2, 0, 0], total: [2, 0, 0],
}, },
}); });
})); });
describe('Grouped', () => { describe('Grouped', () => {
it('Can updates', async(async () => { it('Can updates', async () => {
await testGroupedChart.increment('alice'); await testGroupedChart.increment('alice');
await testGroupedChart.save(); await testGroupedChart.save();
@ -410,11 +402,11 @@ describe('Chart', () => {
total: [0, 0, 0], total: [0, 0, 0],
}, },
}); });
})); });
}); });
describe('Unique increment', () => { describe('Unique increment', () => {
it('Can updates', async(async () => { it('Can updates', async () => {
await testUniqueChart.uniqueIncrement('alice'); await testUniqueChart.uniqueIncrement('alice');
await testUniqueChart.uniqueIncrement('alice'); await testUniqueChart.uniqueIncrement('alice');
await testUniqueChart.uniqueIncrement('bob'); await testUniqueChart.uniqueIncrement('bob');
@ -430,10 +422,10 @@ describe('Chart', () => {
assert.deepStrictEqual(chartDays, { assert.deepStrictEqual(chartDays, {
foo: [2, 0, 0], foo: [2, 0, 0],
}); });
})); });
describe('Intersection', () => { describe('Intersection', () => {
it('条件が満たされていない場合はカウントされない', async(async () => { it('条件が満たされていない場合はカウントされない', async () => {
await testIntersectionChart.addA('alice'); await testIntersectionChart.addA('alice');
await testIntersectionChart.addA('bob'); await testIntersectionChart.addA('bob');
await testIntersectionChart.addB('carol'); await testIntersectionChart.addB('carol');
@ -453,9 +445,9 @@ describe('Chart', () => {
b: [1, 0, 0], b: [1, 0, 0],
aAndB: [0, 0, 0], aAndB: [0, 0, 0],
}); });
})); });
it('条件が満たされている場合にカウントされる', async(async () => { it('条件が満たされている場合にカウントされる', async () => {
await testIntersectionChart.addA('alice'); await testIntersectionChart.addA('alice');
await testIntersectionChart.addA('bob'); await testIntersectionChart.addA('bob');
await testIntersectionChart.addB('carol'); await testIntersectionChart.addB('carol');
@ -476,12 +468,12 @@ describe('Chart', () => {
b: [2, 0, 0], b: [2, 0, 0],
aAndB: [1, 0, 0], aAndB: [1, 0, 0],
}); });
})); });
}); });
}); });
describe('Resync', () => { describe('Resync', () => {
it('Can resync', async(async () => { it('Can resync', async () => {
testChart.total = 1; testChart.total = 1;
await testChart.resync(); await testChart.resync();
@ -504,9 +496,9 @@ describe('Chart', () => {
total: [1, 0, 0], total: [1, 0, 0],
}, },
}); });
})); });
it('Can resync (2)', async(async () => { it('Can resync (2)', async () => {
await testChart.increment(); await testChart.increment();
await testChart.save(); await testChart.save();
@ -534,6 +526,6 @@ describe('Chart', () => {
total: [100, 0, 0], total: [100, 0, 0],
}, },
}); });
})); });
}); });
}); });