n8n/packages/cli/test/integration/healthcheck.controller.test.ts
Tomi Turtiainen 5156313074
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
refactor(core): Enable import/order eslint rule (#10794)
2024-09-12 19:07:18 +03:00

24 lines
741 B
TypeScript

import { setupTestServer } from '@test-integration/utils';
import * as testDb from './shared/test-db';
const testServer = setupTestServer({ endpointGroups: ['health'] });
describe('HealthcheckController', () => {
it('should return ok when DB is connected and migrated', async () => {
const response = await testServer.restlessAgent.get('/healthz/readiness');
expect(response.statusCode).toBe(200);
expect(response.body).toEqual({ status: 'ok' });
});
it('should return error when DB is not connected', async () => {
await testDb.terminate();
const response = await testServer.restlessAgent.get('/healthz/readiness');
expect(response.statusCode).toBe(503);
expect(response.body).toEqual({ status: 'error' });
});
});