mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-04 21:15:45 +02:00
* wip * update fake-timers and migrate * fix * remove jest-mock * fix * fix * fix * fix * attempt to fix unit tests * attempt to fix e2e tests * fix federation test [ci skip] * attempt to fix e2e tests * fix typecheck * fix unit tests * fix * attempt to fix e2e * fix * Revert "attempt to fix e2e" This reverts commitb7b7b05d85. * attempt to fix e2e * revert attempt to fix e2e * update deps * update vitest * migrate * attempt to fix e2e * update * fix * remove vite swc plugin as oxc parser can handle decorators * attempt to fix drive/files/create test * Revert "attempt to fix drive/files/create test" This reverts commit4715153375. * fix: エンドポイントにまつわるテストをunitからe2eに移動 * attempt to fix e2e * remove swc * attempt to fix e2e * Revert "attempt to fix e2e" This reverts commit9fb86a4076. * add logs for debug * attempt to fix e2e * Partially revert "attempt to fix e2e" This reverts commitfb0008c85a. * attempt to fix test * fix: attempt to fix test * Revert "fix: attempt to fix test" This reverts commited2f5c40e8. * Revert "attempt to fix test" This reverts commitd7329c46f1. * attempt to fix e2e * fix: surpass eventemitter warning by increasing defaultMaxListeners * attempt to fix e2e * fix * fix e2e not ending properly * exp: add hanging-process reporter for investigation * Revert "exp: add hanging-process reporter for investigation" This reverts commit26851f8282. * update changelog
95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { expect, describe, it } from 'vitest';
|
|
import { DebounceLoader } from '@/misc/loader.js';
|
|
|
|
class Mock {
|
|
loadCountByKey = new Map<number, number>();
|
|
load = async (key: number): Promise<number> => {
|
|
const count = this.loadCountByKey.get(key);
|
|
if (typeof count === 'undefined') {
|
|
this.loadCountByKey.set(key, 1);
|
|
} else {
|
|
this.loadCountByKey.set(key, count + 1);
|
|
}
|
|
return key * 2;
|
|
};
|
|
reset() {
|
|
this.loadCountByKey.clear();
|
|
}
|
|
}
|
|
|
|
describe(DebounceLoader, () => {
|
|
describe('single request', () => {
|
|
it('loads once', async () => {
|
|
const mock = new Mock();
|
|
const loader = new DebounceLoader(mock.load);
|
|
expect(await loader.load(7)).toBe(14);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('two duplicated requests at same time', () => {
|
|
it('loads once', async () => {
|
|
const mock = new Mock();
|
|
const loader = new DebounceLoader(mock.load);
|
|
const [v1, v2] = await Promise.all([
|
|
loader.load(7),
|
|
loader.load(7),
|
|
]);
|
|
expect(v1).toBe(14);
|
|
expect(v2).toBe(14);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('two different requests at same time', () => {
|
|
it('loads twice', async () => {
|
|
const mock = new Mock();
|
|
const loader = new DebounceLoader(mock.load);
|
|
const [v1, v2] = await Promise.all([
|
|
loader.load(7),
|
|
loader.load(13),
|
|
]);
|
|
expect(v1).toBe(14);
|
|
expect(v2).toBe(26);
|
|
expect(mock.loadCountByKey.size).toBe(2);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
expect(mock.loadCountByKey.get(13)).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('non-continuous same two requests', () => {
|
|
it('loads twice', async () => {
|
|
const mock = new Mock();
|
|
const loader = new DebounceLoader(mock.load);
|
|
expect(await loader.load(7)).toBe(14);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
mock.reset();
|
|
expect(await loader.load(7)).toBe(14);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('non-continuous different two requests', () => {
|
|
it('loads twice', async () => {
|
|
const mock = new Mock();
|
|
const loader = new DebounceLoader(mock.load);
|
|
expect(await loader.load(7)).toBe(14);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(7)).toBe(1);
|
|
mock.reset();
|
|
expect(await loader.load(13)).toBe(26);
|
|
expect(mock.loadCountByKey.size).toBe(1);
|
|
expect(mock.loadCountByKey.get(13)).toBe(1);
|
|
});
|
|
});
|
|
});
|