1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/e2e/api/admin/feature-archive.e2e.test.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

'use strict';
2016-10-26 10:43:11 +02:00
2018-12-17 09:24:49 +01:00
const test = require('ava');
const { setupApp } = require('./../../helpers/test-helper');
const dbInit = require('../../helpers/database-init');
const getLogger = require('../../../fixtures/no-logger');
let stores;
test.before(async () => {
const db = await dbInit('archive_serial', getLogger);
stores = db.stores;
});
test.after(async () => {
await stores.db.destroy();
});
2014-12-17 21:56:27 +01:00
2016-11-13 15:41:35 +01:00
test.serial('returns three archived toggles', async t => {
t.plan(1);
const request = await setupApp(stores);
2016-11-13 15:41:35 +01:00
return request
.get('/api/admin/archive/features')
2016-11-13 15:41:35 +01:00
.expect('Content-Type', /json/)
.expect(200)
.expect(res => {
2016-11-13 15:41:35 +01:00
t.true(res.body.features.length === 3);
});
2016-11-13 15:41:35 +01:00
});
2014-12-17 21:56:27 +01:00
2016-11-13 15:41:35 +01:00
test.serial('revives a feature by name', async t => {
t.plan(0);
const request = await setupApp(stores);
2016-11-13 15:41:35 +01:00
return request
.post('/api/admin/archive/revive/featureArchivedX')
2016-11-13 15:41:35 +01:00
.set('Content-Type', 'application/json')
.expect(200);
2016-11-13 15:41:35 +01:00
});
2014-12-17 21:56:27 +01:00
test.serial(
'archived feature is not accessible via /features/:featureName',
async t => {
t.plan(0);
const request = await setupApp(stores);
return request
.get('/api/admin/features/featureArchivedZ')
.set('Content-Type', 'application/json')
.expect(404);
}
);
2016-11-13 15:41:35 +01:00
test.serial('must set name when reviving toggle', async t => {
t.plan(0);
const request = await setupApp(stores);
return request.post('/api/admin/archive/revive/').expect(404);
});