1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-31 01:16:01 +02:00
unleash.unleash/src/lib/routes/health-check.test.ts

52 lines
1.3 KiB
TypeScript

import supertest from 'supertest';
import { createServices } from '../services';
import { createTestConfig } from '../../test/config/test-config';
import createStores from '../../test/fixtures/store';
import getLogger from '../../test/fixtures/no-logger';
import getApp from '../app';
async function getSetup() {
const stores = createStores();
const config = createTestConfig();
const services = createServices(stores, config);
const app = await getApp(config, stores, services);
return {
request: supertest(app),
stores,
destroy: () => {
services.versionService.destroy();
services.clientInstanceService.destroy();
services.apiTokenService.destroy();
},
};
}
let request;
let destroy;
beforeEach(async () => {
const setup = await getSetup();
request = setup.request;
destroy = setup.destroy;
});
afterEach(() => {
destroy();
getLogger.setMuteError(false);
});
test('should give 200 when ready', async () => {
await request.get('/health').expect(200);
});
test('should give health=GOOD when ready', async () => {
expect.assertions(2);
await request
.get('/health')
.expect(200)
.expect((res) => {
expect(res.status).toBe(200);
expect(res.body.health).toBe('GOOD');
});
});