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

39 lines
1.1 KiB
JavaScript
Raw Normal View History

'use strict';
2016-10-26 10:43:11 +02:00
2016-11-13 15:41:35 +01:00
const test = require('ava');
const { setupApp } = require('./helpers/test-helper');
2016-11-13 15:41:35 +01:00
const logger = require('../../lib/logger');
2016-11-10 21:15:16 +01:00
2016-11-13 15:41:35 +01:00
test.beforeEach(() => {
logger.setLevel('FATAL');
});
2014-12-17 21:56:27 +01:00
2016-11-13 15:41:35 +01:00
test.serial('returns three archived toggles', async t => {
const { request, destroy } = await setupApp('archive_serial');
return request
.get('/api/archive/features')
.expect('Content-Type', /json/)
.expect(200)
.expect((res) => {
t.true(res.body.features.length === 3);
})
.then(destroy);
});
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 => {
const { request, destroy } = await setupApp('archive_serial');
return request
.post('/api/archive/revive/featureArchivedX')
2016-11-13 15:41:35 +01:00
.set('Content-Type', 'application/json')
.expect(200)
.then(destroy);
});
2014-12-17 21:56:27 +01:00
2016-11-13 15:41:35 +01:00
test.serial('must set name when reviving toggle', async t => {
const { request, destroy } = await setupApp('archive_serial');
return request
.post('/api/archive/revive/')
.expect(404)
2016-11-13 15:41:35 +01:00
.then(destroy);
});