mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
4bad43dd66
Follow-up to: #8145 --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { mock } from 'jest-mock-extended';
|
|
import Container from 'typedi';
|
|
import type { EntityMetadata } from 'typeorm';
|
|
import { EntityManager, DataSource, Not, LessThanOrEqual } from 'typeorm';
|
|
|
|
import config from '@/config';
|
|
import { ExecutionEntity } from '@db/entities/ExecutionEntity';
|
|
import { ExecutionRepository } from '@db/repositories/execution.repository';
|
|
|
|
import { mockInstance } from '../../shared/mocking';
|
|
|
|
describe('ExecutionRepository', () => {
|
|
const entityManager = mockInstance(EntityManager);
|
|
const dataSource = mockInstance(DataSource, { manager: entityManager });
|
|
dataSource.getMetadata.mockReturnValue(mock<EntityMetadata>({ target: ExecutionEntity }));
|
|
Object.assign(entityManager, { connection: dataSource });
|
|
|
|
const executionRepository = Container.get(ExecutionRepository);
|
|
const mockDate = new Date('2023-12-28 12:34:56.789Z');
|
|
|
|
beforeAll(() => {
|
|
jest.clearAllMocks();
|
|
jest.useFakeTimers().setSystemTime(mockDate);
|
|
});
|
|
|
|
afterAll(() => jest.useRealTimers());
|
|
|
|
describe('getWaitingExecutions()', () => {
|
|
test.each(['sqlite', 'postgres'])(
|
|
'on %s, should be called with expected args',
|
|
async (dbType) => {
|
|
jest.spyOn(config, 'getEnv').mockReturnValueOnce(dbType);
|
|
entityManager.find.mockResolvedValueOnce([]);
|
|
|
|
await executionRepository.getWaitingExecutions();
|
|
|
|
expect(entityManager.find).toHaveBeenCalledWith(ExecutionEntity, {
|
|
order: { waitTill: 'ASC' },
|
|
select: ['id', 'waitTill'],
|
|
where: {
|
|
status: Not('crashed'),
|
|
waitTill: LessThanOrEqual(
|
|
dbType === 'sqlite'
|
|
? '2023-12-28 12:36:06.789'
|
|
: new Date('2023-12-28T12:36:06.789Z'),
|
|
),
|
|
},
|
|
});
|
|
},
|
|
);
|
|
});
|
|
});
|