Files
outline/server/queues/tasks/ErrorTimedOutFileOperationsTask.test.ts
2023-09-06 14:19:21 -07:00

57 lines
1.7 KiB
TypeScript

import { subDays } from "date-fns";
import { FileOperationState, FileOperationType } from "@shared/types";
import { FileOperation } from "@server/models";
import { buildFileOperation, buildTeam } from "@server/test/factories";
import ErrorTimedOutFileOperationsTask from "./ErrorTimedOutFileOperationsTask";
describe("ErrorTimedOutFileOperationsTask", () => {
it("should error exports older than 12 hours", async () => {
const team = await buildTeam();
await buildFileOperation({
teamId: team.id,
type: FileOperationType.Export,
state: FileOperationState.Creating,
createdAt: subDays(new Date(), 15),
});
await buildFileOperation({
teamId: team.id,
type: FileOperationType.Export,
state: FileOperationState.Complete,
});
/* This is a test helper that creates a new task and runs it. */
const task = new ErrorTimedOutFileOperationsTask();
await task.perform({ limit: 100 });
const data = await FileOperation.count({
where: {
teamId: team.id,
type: FileOperationType.Export,
state: FileOperationState.Error,
},
});
expect(data).toEqual(1);
});
it("should not error exports created less than 12 hours ago", async () => {
const team = await buildTeam();
await buildFileOperation({
teamId: team.id,
type: FileOperationType.Export,
state: FileOperationState.Creating,
});
const task = new ErrorTimedOutFileOperationsTask();
await task.perform({ limit: 100 });
const data = await FileOperation.count({
where: {
teamId: team.id,
type: FileOperationType.Export,
state: FileOperationState.Error,
},
});
expect(data).toEqual(0);
});
});