* perf: reduce memory usage upon running server tests * perf: plug leaks in server/routes * perf: plug leaks in server/scripts * perf: plug leaks in server/policies * perf: plug leaks in server/models * perf: plug leaks in server/middlewares * perf: plug leaks in server/commands * fix: missing await on db.flush * perf: plug leaks in server/queues * chore: remove unused legacy funcs * fix: await on db.flush * perf: await on GC to run in between tests * fix: remove db refs * fix: revert embeds * perf: plug leaks in shared/i18n
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import { subDays } from "date-fns";
|
|
import { FileOperation } from "@server/models";
|
|
import {
|
|
FileOperationState,
|
|
FileOperationType,
|
|
} from "@server/models/FileOperation";
|
|
import { buildFileOperation } from "@server/test/factories";
|
|
import { getTestDatabase } from "@server/test/support";
|
|
import CleanupExpiredFileOperationsTask from "./CleanupExpiredFileOperationsTask";
|
|
|
|
const db = getTestDatabase();
|
|
|
|
afterAll(db.disconnect);
|
|
|
|
beforeEach(db.flush);
|
|
|
|
describe("CleanupExpiredFileOperationsTask", () => {
|
|
it("should expire exports older than 15 days ago", async () => {
|
|
await buildFileOperation({
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Complete,
|
|
createdAt: subDays(new Date(), 15),
|
|
});
|
|
await buildFileOperation({
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Complete,
|
|
});
|
|
|
|
/* This is a test helper that creates a new task and runs it. */
|
|
const task = new CleanupExpiredFileOperationsTask();
|
|
await task.perform({ limit: 100 });
|
|
|
|
const data = await FileOperation.count({
|
|
where: {
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Expired,
|
|
},
|
|
});
|
|
expect(data).toEqual(1);
|
|
});
|
|
|
|
it("should not expire exports made less than 15 days ago", async () => {
|
|
await buildFileOperation({
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Complete,
|
|
createdAt: subDays(new Date(), 14),
|
|
});
|
|
await buildFileOperation({
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Complete,
|
|
});
|
|
|
|
const task = new CleanupExpiredFileOperationsTask();
|
|
await task.perform({ limit: 100 });
|
|
|
|
const data = await FileOperation.count({
|
|
where: {
|
|
type: FileOperationType.Export,
|
|
state: FileOperationState.Expired,
|
|
},
|
|
});
|
|
expect(data).toEqual(0);
|
|
});
|
|
});
|