UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

172 lines (153 loc) 5.1 kB
import * as uuid from "uuid"; import { Worker } from "node-resque"; import { api, config, task, Task, Action } from "./../index"; import { UnwrapPromise } from "./tsUtils/unwrapPromise"; export namespace specHelper { /** * Generate a connection to use in your tests */ export async function buildConnection() { return api.specHelper.Connection.createAsync(); } /** * Run an action via the specHelper server. */ export async function runAction<ActionRunMethod>( actionName: string, input: { [key: string]: any } = {} ) { let connection; if (input.id && input.type === "testServer") { connection = input; } else { connection = await specHelper.buildConnection(); connection.params = input; } connection.params.action = actionName; connection.messageId = connection.params.messageId || uuid.v4(); const response: (ActionRunMethod extends Action["run"] ? UnwrapPromise<ActionRunMethod> : any) & { error: string; } = await new Promise((resolve) => { api.servers.servers.testServer.processAction(connection); connection.actionCallbacks[connection.messageId] = resolve; }); return response; } /** * Mock a specHelper connection requesting a file from the server. */ export async function getStaticFile(file: string): Promise<any> { const connection = await specHelper.buildConnection(); connection.params.file = file; connection.messageCount = uuid.v4(); const response = await new Promise((resolve) => { api.servers.servers.testServer.processFile(connection); connection.actionCallbacks[connection.messageId] = resolve; }); return response; } /** * Use the specHelper to run a task. * Note: this only runs the task's `run()` method, and no middleware. This is faster than api.specHelper.runFullTask. */ export async function runTask<TaskRunMethod>( taskName: string, params: object | Array<any> ) { if (!api.tasks.tasks[taskName]) { throw new Error(`task ${taskName} not found`); } const result: (TaskRunMethod extends Task["run"] ? UnwrapPromise<TaskRunMethod> : any) & { error: string; } = api.tasks.tasks[taskName].run(params); return result; } /** * Use the specHelper to run a task. * Note: this will run a full Task worker, and will also include any middleware. This is slower than api.specHelper.runTask. */ export async function runFullTask<TaskRunMethod>( taskName: string, params: object | Array<any> ) { const worker = new Worker( { connection: { redis: api.redis.clients.tasks, pkg: api.redis.clients.tasks?.constructor?.name === "RedisMock" ? "ioredis-mock" : "ioredis", }, queues: config.tasks.queues || ["default"], }, api.tasks.jobs ); try { await worker.connect(); const result: (TaskRunMethod extends Task["run"] ? UnwrapPromise<TaskRunMethod> : any) & { error: string; } = await worker.performInline( taskName, Array.isArray(params) ? params : [params] ); await worker.end(); return result; } catch (error) { try { worker.end(); } catch (error) {} throw error; } } /** * Use the specHelper to find enqueued instances of a task * This will return an array of instances of the task which have been enqueued either in the normal queues or delayed queues * If a task is enqueued in a delayed queue, it will have a 'timestamp' property * i.e. [ { class: 'regularTask', queue: 'testQueue', args: [ [Object] ] } ] */ export async function findEnqueuedTasks(taskName: string) { let found = []; // normal queues const queues = await api.resque.queue.queues(); for (const i in queues) { const q = queues[i]; const length = await api.resque.queue.length(q); const batchFound = await task.queued(q, 0, length + 1); let matches = batchFound.filter((t) => t.class === taskName); matches = matches.map((m) => { m.timestamp = null; return m; }); found = found.concat(matches); } // delayed queues const allDelayed = await api.resque.queue.allDelayed(); for (const timestamp in allDelayed) { let matches = allDelayed[timestamp].filter((t) => t.class === taskName); matches = matches.map((m) => { m.timestamp = parseInt(timestamp); return m; }); found = found.concat(matches); } return found; } /** * Delete all enqueued instances of a task, both in all the normal queues and all of the delayed queues */ export async function deleteEnqueuedTasks(taskName: string, params: {}) { const queues = await api.resque.queue.queues(); for (const i in queues) { const q = queues[i]; await api.resque.queue.del(q, taskName, [params]); await api.resque.queue.delDelayed(q, taskName, [params]); } } }