From 0667dd9d30cd3038b61fd006d18c907f5a2cf349 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Wed, 6 Nov 2024 12:38:58 +0100 Subject: [PATCH] Add test --- .../backend-core/src/queue/inMemoryQueue.ts | 2 +- .../tests/cron-automations.spec.ts | 49 +++++++++++++++++++ .../server/src/tests/utilities/structures.ts | 32 ++++++++++++ 3 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 packages/server/src/automations/tests/cron-automations.spec.ts diff --git a/packages/backend-core/src/queue/inMemoryQueue.ts b/packages/backend-core/src/queue/inMemoryQueue.ts index 62b971f9f5..1d8544828d 100644 --- a/packages/backend-core/src/queue/inMemoryQueue.ts +++ b/packages/backend-core/src/queue/inMemoryQueue.ts @@ -141,7 +141,7 @@ class InMemoryQueue implements Partial { } else { pushMessage() } - return {} as any + return { id: jobId } as any } /** diff --git a/packages/server/src/automations/tests/cron-automations.spec.ts b/packages/server/src/automations/tests/cron-automations.spec.ts new file mode 100644 index 0000000000..62c8ccd612 --- /dev/null +++ b/packages/server/src/automations/tests/cron-automations.spec.ts @@ -0,0 +1,49 @@ +import tk from "timekeeper" +import "../../environment" +import * as automations from "../index" +import * as setup from "./utilities" +import { basicCronAutomation } from "../../tests/utilities/structures" + +const initialTime = Date.now() +tk.freeze(initialTime) + +const oneMinuteInMs = 60 * 1000 + +describe("cron automations", () => { + let config = setup.getConfig() + + beforeAll(async () => { + await automations.init() + await config.init() + }) + + afterAll(async () => { + await automations.shutdown() + setup.afterAll() + }) + + beforeEach(() => { + tk.freeze(initialTime) + }) + + async function travel(ms: number) { + tk.travel(Date.now() + ms) + } + + it("should initialise the automation timestamp", async () => { + const automation = basicCronAutomation(config.appId!, "* * * * *") + await config.api.automation.post(automation) + await travel(oneMinuteInMs) + await config.publish() + + const automationLogs = await config.getAutomationLogs() + expect(automationLogs.data).toHaveLength(1) + expect(automationLogs.data).toEqual([ + expect.objectContaining({ + trigger: expect.objectContaining({ + outputs: { timestamp: initialTime + oneMinuteInMs }, + }), + }), + ]) + }) +}) diff --git a/packages/server/src/tests/utilities/structures.ts b/packages/server/src/tests/utilities/structures.ts index 49046d9eda..beb03ecf08 100644 --- a/packages/server/src/tests/utilities/structures.ts +++ b/packages/server/src/tests/utilities/structures.ts @@ -245,6 +245,38 @@ export function basicAutomation(appId?: string): Automation { } } +export function basicCronAutomation(appId: string, cron: string): Automation { + const automation: Automation = { + name: `Automation ${generator.guid()}`, + definition: { + trigger: { + stepId: AutomationTriggerStepId.CRON, + name: "test", + tagline: "test", + icon: "test", + description: "test", + type: AutomationStepType.TRIGGER, + id: "test", + inputs: { + cron, + }, + schema: { + inputs: { + properties: {}, + }, + outputs: { + properties: {}, + }, + }, + }, + steps: [], + }, + type: "automation", + appId, + } + return automation +} + export function serverLogAutomation(appId?: string): Automation { return { name: "My Automation",