2016-04-24 22:41:37 +02:00
|
|
|
'use strict';
|
2016-10-26 10:43:11 +02:00
|
|
|
|
2018-12-17 09:24:49 +01:00
|
|
|
const test = require('ava');
|
2017-06-28 10:20:22 +02:00
|
|
|
const { setupApp } = require('./../../helpers/test-helper');
|
2014-12-17 21:56:27 +01:00
|
|
|
|
2016-11-13 15:41:35 +01:00
|
|
|
test.serial('returns three archived toggles', async t => {
|
2017-06-28 10:20:22 +02:00
|
|
|
t.plan(1);
|
2016-11-13 15:41:35 +01:00
|
|
|
const { request, destroy } = await setupApp('archive_serial');
|
|
|
|
return request
|
2017-06-28 10:20:22 +02:00
|
|
|
.get('/api/admin/archive/features')
|
2016-11-13 15:41:35 +01:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
2017-06-28 10:20:22 +02:00
|
|
|
.expect(res => {
|
2016-11-13 15:41:35 +01:00
|
|
|
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 => {
|
2017-06-28 10:20:22 +02:00
|
|
|
t.plan(0);
|
|
|
|
const { request, destroy } = await setupApp('archive_serial');
|
2016-11-13 15:41:35 +01:00
|
|
|
return request
|
2017-06-28 10:20:22 +02:00
|
|
|
.post('/api/admin/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
|
|
|
|
2017-06-28 17:44:14 +02:00
|
|
|
test.serial(
|
|
|
|
'archived feature is not accessible via /features/:featureName',
|
|
|
|
async t => {
|
|
|
|
t.plan(0);
|
|
|
|
const { request, destroy } = await setupApp('archive_serial2');
|
|
|
|
|
|
|
|
return request
|
2017-11-02 09:37:14 +01:00
|
|
|
.get('/api/admin/features/featureArchivedX')
|
2017-06-28 17:44:14 +02:00
|
|
|
.set('Content-Type', 'application/json')
|
|
|
|
.expect(404)
|
|
|
|
.then(destroy);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-11-13 15:41:35 +01:00
|
|
|
test.serial('must set name when reviving toggle', async t => {
|
2017-06-28 10:20:22 +02:00
|
|
|
t.plan(0);
|
|
|
|
const { request, destroy } = await setupApp('archive_serial');
|
2017-11-02 09:23:38 +01:00
|
|
|
return request
|
|
|
|
.post('/api/admin/archive/revive/')
|
|
|
|
.expect(404)
|
|
|
|
.then(destroy);
|
2016-04-24 22:41:37 +02:00
|
|
|
});
|