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/feature-archive.e2e.test.ts

174 lines
5.0 KiB
TypeScript
Raw Normal View History

import { setupApp } from '../../helpers/test-helper';
import dbInit from '../../helpers/database-init';
import getLogger from '../../../fixtures/no-logger';
let app;
let db;
beforeAll(async () => {
db = await dbInit('archive_serial', getLogger);
app = await setupApp(db.stores);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureX',
description: 'the #1 feature',
},
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureY',
description: 'soon to be the #1 feature',
},
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureZ',
description: 'terrible feature',
},
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureArchivedX',
description: 'the #1 feature',
},
'test',
);
await app.services.featureToggleServiceV2.archiveToggle(
'featureArchivedX',
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureArchivedY',
description: 'soon to be the #1 feature',
},
'test',
);
await app.services.featureToggleServiceV2.archiveToggle(
'featureArchivedY',
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'featureArchivedZ',
description: 'terrible feature',
},
'test',
);
await app.services.featureToggleServiceV2.archiveToggle(
'featureArchivedZ',
'test',
);
await app.services.featureToggleServiceV2.createFeatureToggle(
'default',
{
name: 'feature.with.variants',
description: 'A feature toggle with variants',
variants: [
{ name: 'control', weight: 50 },
{ name: 'new', weight: 50 },
],
},
'test',
);
});
afterAll(async () => {
await app.destroy();
await db.destroy();
});
2014-12-17 21:56:27 +01:00
test('returns three archived toggles', async () => {
expect.assertions(1);
return app.request
.get('/api/admin/archive/features')
2016-11-13 15:41:35 +01:00
.expect('Content-Type', /json/)
.expect(200)
.expect((res) => {
expect(res.body.features.length === 3).toBe(true);
});
2016-11-13 15:41:35 +01:00
});
2014-12-17 21:56:27 +01:00
test.skip('revives a feature by name', async () => {
expect.assertions(0);
return app.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('archived feature is not accessible via /features/:featureName', async () => {
expect.assertions(0);
return app.request
.get('/api/admin/features/featureArchivedZ')
.set('Content-Type', 'application/json')
.expect(404);
});
test('must set name when reviving toggle', async () => {
expect.assertions(0);
return app.request.post('/api/admin/archive/revive/').expect(404);
});
test('should be allowed to reuse deleted toggle name', async () => {
expect.assertions(2);
await app.request
.post('/api/admin/features')
.send({
name: 'really.delete.feature',
enabled: false,
strategies: [{ name: 'default' }],
})
.set('Content-Type', 'application/json')
.expect(201)
.expect((res) => {
expect(res.body.name).toBe('really.delete.feature');
expect(res.body.createdAt).toBeTruthy();
});
await app.request
.delete('/api/admin/features/really.delete.feature')
.expect(200);
await app.request
.delete('/api/admin/archive/really.delete.feature')
.expect(200);
return app.request
.post('/api/admin/features/validate')
.send({ name: 'really.delete.feature' })
.set('Content-Type', 'application/json')
.expect(200);
});
test('Deleting an unarchived toggle should not take effect', async () => {
expect.assertions(2);
await app.request
.post('/api/admin/features')
.send({
name: 'really.delete.feature',
enabled: false,
strategies: [{ name: 'default' }],
})
.set('Content-Type', 'application/json')
.expect(201)
.expect((res) => {
expect(res.body.name).toBe('really.delete.feature');
expect(res.body.createdAt).toBeTruthy();
});
await app.request
.delete('/api/admin/archive/really.delete.feature')
.expect(200);
return app.request
.post('/api/admin/features/validate')
.send({ name: 'really.delete.feature' })
.set('Content-Type', 'application/json')
.expect(409); // because it still exists
});