1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-23 20:07:40 +02:00
unleash.unleash/src/test/e2e/api/admin/metrics.e2e.test.js

79 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-11-11 17:39:33 +01:00
'use strict';
2018-12-17 09:24:49 +01:00
const test = require('ava');
const dbInit = require('../../helpers/database-init');
const { setupApp } = require('../../helpers/test-helper');
const getLogger = require('../../../fixtures/no-logger');
let stores;
let db;
let reset = () => {};
test.before(async () => {
db = await dbInit('metrics_serial', getLogger);
stores = db.stores;
reset = db.reset;
});
test.after.always(async () => {
await db.destroy();
});
test.afterEach(async () => {
await reset();
});
2016-11-11 17:39:33 +01:00
test.serial('should get application details', async t => {
t.plan(3);
const request = await setupApp(stores);
2016-11-13 15:41:35 +01:00
return request
.get('/api/admin/metrics/applications/demo-app-1')
2016-11-13 15:41:35 +01:00
.expect('Content-Type', /json/)
.expect(res => {
2016-11-13 15:41:35 +01:00
t.true(res.status === 200);
t.true(res.body.appName === 'demo-app-1');
t.true(res.body.instances.length === 1);
});
});
test.serial('should get list of applications', async t => {
t.plan(2);
const request = await setupApp(stores);
return request
.get('/api/admin/metrics/applications')
.expect('Content-Type', /json/)
.expect(res => {
t.true(res.status === 200);
2020-09-25 09:39:12 +02:00
t.is(res.body.applications.length, 3);
});
});
test.serial('should delete application', async t => {
t.plan(2);
const request = await setupApp(stores);
await request
.delete('/api/admin/metrics/applications/deletable-app')
.expect(res => {
t.is(res.status, 200);
});
return request
.get('/api/admin/metrics/applications')
.expect('Content-Type', /json/)
.expect(res => {
t.is(res.body.applications.length, 2);
});
2016-11-11 17:39:33 +01:00
});
2020-09-25 09:39:12 +02:00
test.serial(
'deleting an application should be idempotent, so expect 200',
async t => {
t.plan(1);
const request = await setupApp(stores);
return request
.delete('/api/admin/metrics/applications/unknown')
.expect(res => {
t.is(res.status, 200);
});
},
);