2021-09-20 12:29:16 +02:00
|
|
|
import dbInit, { ITestDb } from '../../helpers/database-init';
|
|
|
|
import { IUnleashTest, setupApp } from '../../helpers/test-helper';
|
2021-08-12 15:04:37 +02:00
|
|
|
import getLogger from '../../../fixtures/no-logger';
|
2021-09-24 13:55:00 +02:00
|
|
|
import { DEFAULT_ENV } from '../../../../lib/util/constants';
|
2022-03-29 14:59:14 +02:00
|
|
|
import { collectIds } from '../../../../lib/util/collect-ids';
|
2022-06-09 16:56:13 +02:00
|
|
|
import { ApiTokenType } from '../../../../lib/types/models/api-token';
|
2022-12-01 12:13:49 +01:00
|
|
|
import variantsv3 from '../../../examples/variantsexport_v3.json';
|
2023-01-13 14:55:57 +01:00
|
|
|
import v3WithDefaultDisabled from '../../../examples/exported3-with-default-disabled.json';
|
2022-12-01 12:13:49 +01:00
|
|
|
import { StateService } from '../../../../lib/services';
|
2019-03-14 17:56:02 +01:00
|
|
|
|
|
|
|
const importData = require('../../../examples/import.json');
|
2019-10-03 15:01:33 +02:00
|
|
|
|
2021-09-20 12:29:16 +02:00
|
|
|
let app: IUnleashTest;
|
|
|
|
let db: ITestDb;
|
2019-10-03 15:01:33 +02:00
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
beforeAll(async () => {
|
2021-03-19 22:25:21 +01:00
|
|
|
db = await dbInit('state_api_serial', getLogger);
|
2021-05-28 11:10:24 +02:00
|
|
|
app = await setupApp(db.stores);
|
2019-10-03 15:01:33 +02:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
afterAll(async () => {
|
|
|
|
await app.destroy();
|
2021-03-19 22:25:21 +01:00
|
|
|
await db.destroy();
|
2019-10-03 15:01:33 +02:00
|
|
|
});
|
2019-03-14 17:56:02 +01:00
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('exports strategies and features as json by default', async () => {
|
|
|
|
expect.assertions(2);
|
|
|
|
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.get('/api/admin/state/export')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
2021-08-12 15:04:37 +02:00
|
|
|
.expect((res) => {
|
2021-05-28 11:10:24 +02:00
|
|
|
expect('features' in res.body).toBe(true);
|
|
|
|
expect('strategies' in res.body).toBe(true);
|
2019-10-03 15:01:33 +02:00
|
|
|
});
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('exports strategies and features as yaml', async () => {
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.get('/api/admin/state/export?format=yaml')
|
|
|
|
.expect('Content-Type', /yaml/)
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(200);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('exports only features as yaml', async () => {
|
|
|
|
return app.request
|
2020-07-30 23:57:13 +02:00
|
|
|
.get('/api/admin/state/export?format=yaml&featureToggles=1')
|
|
|
|
.expect('Content-Type', /yaml/)
|
|
|
|
.expect(200);
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('exports strategies and features as attachment', async () => {
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.get('/api/admin/state/export?download=1')
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect('Content-Disposition', /attachment/)
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(200);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2022-11-08 15:25:02 +01:00
|
|
|
test('accepts "true" and "false" as parameter values', () => {
|
|
|
|
return app.request
|
|
|
|
.get('/api/admin/state/export?strategies=true&tags=false')
|
|
|
|
.expect(200);
|
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('imports strategies and features', async () => {
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.send(importData)
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(202);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2022-01-06 10:23:52 +01:00
|
|
|
test('imports features with variants', async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.send(importData)
|
|
|
|
.expect(202);
|
|
|
|
|
|
|
|
const { body } = await app.request.get(
|
|
|
|
'/api/admin/projects/default/features/feature.with.variants',
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(body.variants).toHaveLength(2);
|
|
|
|
});
|
2021-05-28 11:10:24 +02:00
|
|
|
|
2022-01-06 10:23:52 +01:00
|
|
|
test('does not not accept gibberish', async () => {
|
2021-05-28 11:10:24 +02:00
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.send({ features: 'nonsense' })
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(400);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('imports strategies and features from json file', async () => {
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.post('/api/admin/state/import')
|
2021-02-12 11:42:00 +01:00
|
|
|
.attach('file', 'src/test/examples/import.json')
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(202);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
|
|
|
|
2021-05-28 11:10:24 +02:00
|
|
|
test('imports strategies and features from yaml file', async () => {
|
|
|
|
return app.request
|
2019-03-14 17:56:02 +01:00
|
|
|
.post('/api/admin/state/import')
|
2021-02-12 11:42:00 +01:00
|
|
|
.attach('file', 'src/test/examples/import.yml')
|
2019-10-03 15:01:33 +02:00
|
|
|
.expect(202);
|
2019-03-14 17:56:02 +01:00
|
|
|
});
|
2021-09-20 12:29:16 +02:00
|
|
|
|
|
|
|
test('import works for 3.17 json format', async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach('file', 'src/test/examples/exported3176.json')
|
|
|
|
.expect(202);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('import works for 3.17 enterprise json format', async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach('file', 'src/test/examples/exported-3175-enterprise.json')
|
|
|
|
.expect(202);
|
|
|
|
});
|
|
|
|
test('import works for 4.0 enterprise format', async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach('file', 'src/test/examples/exported405-enterprise.json')
|
|
|
|
.expect(202);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('import for 4.1.2 enterprise format fails', async () => {
|
|
|
|
await expect(async () =>
|
|
|
|
app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach('file', 'src/test/examples/exported412-enterprise.json')
|
|
|
|
.expect(202),
|
|
|
|
).rejects;
|
|
|
|
});
|
|
|
|
|
|
|
|
test('import for 4.1.2 enterprise format fixed works', async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach(
|
|
|
|
'file',
|
|
|
|
'src/test/examples/exported412-enterprise-necessary-fixes.json',
|
|
|
|
)
|
|
|
|
.expect(202);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Can roundtrip. I.e. export and then import', async () => {
|
|
|
|
const projectId = 'export-project';
|
2021-11-04 21:24:55 +01:00
|
|
|
const environment = 'export-environment';
|
2021-09-20 12:29:16 +02:00
|
|
|
const userName = 'export-user';
|
|
|
|
const featureName = 'export.feature';
|
|
|
|
await db.stores.environmentStore.create({
|
2021-11-04 21:24:55 +01:00
|
|
|
name: environment,
|
2021-09-20 12:29:16 +02:00
|
|
|
type: 'test',
|
|
|
|
});
|
|
|
|
await db.stores.projectStore.create({
|
|
|
|
name: projectId,
|
|
|
|
id: projectId,
|
|
|
|
description: 'Project for export',
|
|
|
|
});
|
|
|
|
await app.services.environmentService.addEnvironmentToProject(
|
2021-11-04 21:24:55 +01:00
|
|
|
environment,
|
2021-09-20 12:29:16 +02:00
|
|
|
projectId,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createFeatureToggle(
|
|
|
|
projectId,
|
|
|
|
{
|
|
|
|
type: 'Release',
|
|
|
|
name: featureName,
|
|
|
|
description: 'Feature for export',
|
|
|
|
},
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createStrategy(
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
constraints: [
|
|
|
|
{ contextName: 'userId', operator: 'IN', values: ['123'] },
|
|
|
|
],
|
|
|
|
parameters: {},
|
|
|
|
},
|
2021-11-04 21:24:55 +01:00
|
|
|
{ projectId, featureName, environment },
|
|
|
|
userName,
|
2021-09-20 12:29:16 +02:00
|
|
|
);
|
|
|
|
const data = await app.services.stateService.export({});
|
|
|
|
await app.services.stateService.import({
|
|
|
|
data,
|
|
|
|
dropBeforeImport: true,
|
|
|
|
keepExisting: false,
|
|
|
|
userName: 'export-tester',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Roundtrip with tags works', async () => {
|
|
|
|
const projectId = 'tags-project';
|
2021-11-04 21:24:55 +01:00
|
|
|
const environment = 'tags-environment';
|
2021-09-20 12:29:16 +02:00
|
|
|
const userName = 'tags-user';
|
|
|
|
const featureName = 'tags.feature';
|
|
|
|
await db.stores.environmentStore.create({
|
2021-11-04 21:24:55 +01:00
|
|
|
name: environment,
|
2021-09-20 12:29:16 +02:00
|
|
|
type: 'test',
|
|
|
|
});
|
|
|
|
await db.stores.projectStore.create({
|
|
|
|
name: projectId,
|
|
|
|
id: projectId,
|
|
|
|
description: 'Project for export',
|
|
|
|
});
|
|
|
|
await app.services.environmentService.addEnvironmentToProject(
|
2021-11-04 21:24:55 +01:00
|
|
|
environment,
|
2021-09-20 12:29:16 +02:00
|
|
|
projectId,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createFeatureToggle(
|
|
|
|
projectId,
|
|
|
|
{
|
|
|
|
type: 'Release',
|
|
|
|
name: featureName,
|
|
|
|
description: 'Feature for export',
|
|
|
|
},
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createStrategy(
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
constraints: [
|
|
|
|
{ contextName: 'userId', operator: 'IN', values: ['123'] },
|
|
|
|
],
|
|
|
|
parameters: {},
|
|
|
|
},
|
2021-11-04 21:24:55 +01:00
|
|
|
{
|
|
|
|
projectId,
|
|
|
|
featureName,
|
|
|
|
environment,
|
|
|
|
},
|
|
|
|
userName,
|
2021-09-20 12:29:16 +02:00
|
|
|
);
|
|
|
|
await app.services.featureTagService.addTag(
|
|
|
|
featureName,
|
|
|
|
{ type: 'simple', value: 'export-test' },
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
await app.services.featureTagService.addTag(
|
|
|
|
featureName,
|
|
|
|
{ type: 'simple', value: 'export-test-2' },
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
const data = await app.services.stateService.export({});
|
|
|
|
await app.services.stateService.import({
|
|
|
|
data,
|
|
|
|
dropBeforeImport: true,
|
|
|
|
keepExisting: false,
|
|
|
|
userName: 'export-tester',
|
|
|
|
});
|
|
|
|
|
|
|
|
const f = await app.services.featureTagService.listTags(featureName);
|
|
|
|
expect(f).toHaveLength(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Roundtrip with strategies in multiple environments works', async () => {
|
|
|
|
const projectId = 'multiple-environment-project';
|
2021-11-04 21:24:55 +01:00
|
|
|
const environment = 'multiple-environment-environment';
|
2021-09-20 12:29:16 +02:00
|
|
|
const userName = 'multiple-environment-user';
|
|
|
|
const featureName = 'multiple-environment.feature';
|
|
|
|
await db.stores.environmentStore.create({
|
2021-11-04 21:24:55 +01:00
|
|
|
name: environment,
|
2021-09-20 12:29:16 +02:00
|
|
|
type: 'test',
|
|
|
|
});
|
|
|
|
await db.stores.projectStore.create({
|
|
|
|
name: projectId,
|
|
|
|
id: projectId,
|
|
|
|
description: 'Project for export',
|
|
|
|
});
|
2022-10-19 14:05:07 +02:00
|
|
|
|
2021-09-20 12:29:16 +02:00
|
|
|
await app.services.featureToggleServiceV2.createFeatureToggle(
|
|
|
|
projectId,
|
|
|
|
{
|
|
|
|
type: 'Release',
|
|
|
|
name: featureName,
|
|
|
|
description: 'Feature for export',
|
|
|
|
},
|
|
|
|
userName,
|
|
|
|
);
|
2022-10-19 14:05:07 +02:00
|
|
|
await app.services.environmentService.addEnvironmentToProject(
|
|
|
|
environment,
|
|
|
|
projectId,
|
|
|
|
);
|
|
|
|
|
|
|
|
await app.services.environmentService.addEnvironmentToProject(
|
|
|
|
DEFAULT_ENV,
|
|
|
|
projectId,
|
|
|
|
);
|
2021-09-20 12:29:16 +02:00
|
|
|
await app.services.featureToggleServiceV2.createStrategy(
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
constraints: [
|
|
|
|
{ contextName: 'userId', operator: 'IN', values: ['123'] },
|
|
|
|
],
|
|
|
|
parameters: {},
|
|
|
|
},
|
2021-11-04 21:24:55 +01:00
|
|
|
{ projectId, featureName, environment },
|
|
|
|
userName,
|
2021-09-20 12:29:16 +02:00
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createStrategy(
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
constraints: [
|
|
|
|
{ contextName: 'userId', operator: 'IN', values: ['123'] },
|
|
|
|
],
|
|
|
|
parameters: {},
|
|
|
|
},
|
2021-11-04 21:24:55 +01:00
|
|
|
{ projectId, featureName, environment: DEFAULT_ENV },
|
|
|
|
userName,
|
2021-09-20 12:29:16 +02:00
|
|
|
);
|
|
|
|
const data = await app.services.stateService.export({});
|
|
|
|
await app.services.stateService.import({
|
|
|
|
data,
|
|
|
|
dropBeforeImport: true,
|
|
|
|
keepExisting: false,
|
|
|
|
userName: 'export-tester',
|
|
|
|
});
|
2022-11-29 16:06:08 +01:00
|
|
|
const f = await app.services.featureToggleServiceV2.getFeature({
|
|
|
|
featureName,
|
|
|
|
});
|
2022-12-01 12:13:49 +01:00
|
|
|
expect(f.environments).toHaveLength(4); // NOTE: this depends on other tests, otherwise it should be 2
|
2021-09-20 12:29:16 +02:00
|
|
|
});
|
2021-09-24 13:55:00 +02:00
|
|
|
|
|
|
|
test(`Importing version 2 replaces :global: environment with 'default'`, async () => {
|
|
|
|
await app.request
|
2022-11-21 10:37:16 +01:00
|
|
|
.post('/api/admin/state/import?drop=true')
|
2021-09-24 13:55:00 +02:00
|
|
|
.attach('file', 'src/test/examples/exported412-version2.json')
|
|
|
|
.expect(202);
|
|
|
|
const env = await app.services.environmentService.get(DEFAULT_ENV);
|
|
|
|
expect(env).toBeTruthy();
|
|
|
|
const feature = await app.services.featureToggleServiceV2.getFeatureToggle(
|
|
|
|
'this-is-fun',
|
|
|
|
);
|
2022-11-21 10:37:16 +01:00
|
|
|
expect(feature.environments).toHaveLength(1);
|
2021-09-24 13:55:00 +02:00
|
|
|
expect(feature.environments[0].name).toBe(DEFAULT_ENV);
|
|
|
|
});
|
2022-03-29 14:59:14 +02:00
|
|
|
|
|
|
|
test(`should import segments and connect them to feature strategies`, async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import')
|
|
|
|
.attach('file', 'src/test/examples/exported-segments.json')
|
|
|
|
.expect(202);
|
|
|
|
|
|
|
|
const allSegments = await app.services.segmentService.getAll();
|
|
|
|
const activeSegments = await app.services.segmentService.getActive();
|
|
|
|
|
|
|
|
expect(allSegments.length).toEqual(2);
|
|
|
|
expect(collectIds(allSegments)).toEqual([1, 2]);
|
|
|
|
expect(activeSegments.length).toEqual(1);
|
|
|
|
expect(collectIds(activeSegments)).toEqual([1]);
|
|
|
|
});
|
2022-06-09 16:56:13 +02:00
|
|
|
|
|
|
|
test(`should not delete api_tokens on import when drop-flag is set`, async () => {
|
|
|
|
const projectId = 'reimported-project';
|
|
|
|
const environment = 'reimported-environment';
|
|
|
|
const apiTokenName = 'not-dropped-token';
|
|
|
|
const featureName = 'reimportedFeature';
|
|
|
|
const userName = 'apiTokens-user';
|
|
|
|
|
|
|
|
await db.stores.environmentStore.create({
|
|
|
|
name: environment,
|
|
|
|
type: 'test',
|
|
|
|
});
|
|
|
|
await db.stores.projectStore.create({
|
|
|
|
name: projectId,
|
|
|
|
id: projectId,
|
|
|
|
description: 'Project for export',
|
|
|
|
});
|
|
|
|
await app.services.environmentService.addEnvironmentToProject(
|
|
|
|
environment,
|
|
|
|
projectId,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createFeatureToggle(
|
|
|
|
projectId,
|
|
|
|
{
|
|
|
|
type: 'Release',
|
|
|
|
name: featureName,
|
|
|
|
description: 'Feature for export',
|
|
|
|
},
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
await app.services.featureToggleServiceV2.createStrategy(
|
|
|
|
{
|
|
|
|
name: 'default',
|
|
|
|
constraints: [
|
|
|
|
{ contextName: 'userId', operator: 'IN', values: ['123'] },
|
|
|
|
],
|
|
|
|
parameters: {},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
projectId,
|
|
|
|
featureName,
|
|
|
|
environment,
|
|
|
|
},
|
|
|
|
userName,
|
|
|
|
);
|
|
|
|
await app.services.apiTokenService.createApiTokenWithProjects({
|
|
|
|
username: apiTokenName,
|
|
|
|
type: ApiTokenType.CLIENT,
|
|
|
|
environment: environment,
|
|
|
|
projects: [projectId],
|
|
|
|
});
|
|
|
|
|
|
|
|
const data = await app.services.stateService.export({});
|
|
|
|
await app.services.stateService.import({
|
|
|
|
data,
|
|
|
|
dropBeforeImport: true,
|
|
|
|
keepExisting: false,
|
|
|
|
userName: userName,
|
|
|
|
});
|
|
|
|
|
|
|
|
const apiTokens = await app.services.apiTokenService.getAllTokens();
|
|
|
|
|
|
|
|
expect(apiTokens.length).toEqual(1);
|
|
|
|
expect(apiTokens[0].username).toBe(apiTokenName);
|
|
|
|
});
|
|
|
|
|
2022-10-19 14:05:07 +02:00
|
|
|
test(`should not show environment on feature toggle, when environment is disabled`, async () => {
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import?drop=true')
|
|
|
|
.attach('file', 'src/test/examples/import-state.json')
|
|
|
|
.expect(202);
|
|
|
|
|
|
|
|
const { body } = await app.request
|
|
|
|
.get('/api/admin/projects/default/features/my-feature')
|
|
|
|
.expect(200);
|
|
|
|
|
2022-11-17 14:05:57 +01:00
|
|
|
// sort to have predictable test results
|
|
|
|
const result = body.environments.sort((e1, e2) => e1.name < e2.name);
|
|
|
|
expect(result).toHaveLength(2);
|
|
|
|
expect(result[0].name).toBe('development');
|
|
|
|
expect(result[0].enabled).toBeTruthy();
|
|
|
|
expect(result[1].name).toBe('production');
|
|
|
|
expect(result[1].enabled).toBeFalsy();
|
2022-10-19 14:05:07 +02:00
|
|
|
});
|
2022-12-01 12:13:49 +01:00
|
|
|
|
|
|
|
test(`should handle v3 export with variants in features`, async () => {
|
|
|
|
app.services.stateService = new StateService(db.stores, {
|
|
|
|
getLogger,
|
|
|
|
flagResolver: {
|
|
|
|
isEnabled: () => false,
|
|
|
|
getAll: () => ({}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import?drop=true')
|
|
|
|
.attach('file', 'src/test/examples/variantsexport_v3.json')
|
|
|
|
.expect(202);
|
|
|
|
|
|
|
|
const exported = await app.services.stateService.export({});
|
|
|
|
let exportedFeatures = exported.features
|
|
|
|
.map((f) => {
|
|
|
|
delete f.createdAt;
|
|
|
|
return f;
|
|
|
|
})
|
|
|
|
.sort();
|
|
|
|
let importedFeatures = variantsv3.features
|
|
|
|
.map((f) => {
|
|
|
|
delete f.createdAt;
|
|
|
|
return f;
|
|
|
|
})
|
|
|
|
.sort();
|
|
|
|
expect(exportedFeatures).toStrictEqual(importedFeatures);
|
|
|
|
});
|
2023-01-13 14:55:57 +01:00
|
|
|
|
|
|
|
test(`should handle v3 export with variants in features and only 1 env`, async () => {
|
|
|
|
app.services.stateService = new StateService(db.stores, {
|
|
|
|
getLogger,
|
|
|
|
flagResolver: {
|
|
|
|
isEnabled: () => false,
|
|
|
|
getAll: () => ({}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await app.request
|
|
|
|
.post('/api/admin/state/import?drop=true')
|
|
|
|
.attach(
|
|
|
|
'file',
|
|
|
|
'src/test/examples/exported3-with-default-disabled.json',
|
|
|
|
)
|
|
|
|
.expect(202);
|
|
|
|
|
|
|
|
const exported = await app.services.stateService.export({});
|
|
|
|
let exportedFeatures = exported.features
|
|
|
|
.map((f) => {
|
|
|
|
delete f.createdAt;
|
|
|
|
return f;
|
|
|
|
})
|
|
|
|
.sort();
|
|
|
|
let importedFeatures = v3WithDefaultDisabled.features
|
|
|
|
.map((f) => {
|
|
|
|
delete f.createdAt;
|
|
|
|
return f;
|
|
|
|
})
|
|
|
|
.sort();
|
|
|
|
expect(exportedFeatures).toStrictEqual(importedFeatures);
|
|
|
|
});
|