1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

Chore/increase client api test coverage (#8950)

Added more tests around specific plans. Also added snapshot as per our
conversation @gastonfournier, but I'm unsure how much value it will give
because it seems that the tests should already catch this using
respondWithValidation and the OpenAPI schema. The problem here is that
empty array is a valid state, so there were no reason for the schema to
break the tests.
This commit is contained in:
Fredrik Strand Oseberg 2024-12-12 11:42:18 +01:00 committed by GitHub
parent 8ad63bc035
commit 7c646bc523
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 234 additions and 47 deletions

View File

@ -6,8 +6,8 @@ on:
- opened - opened
- synchronize - synchronize
paths: paths:
- src/lib/features/client-feature-toggles/* - src/lib/features/client-feature-toggles/**
- src/lib/features/frontend-api/* - src/lib/features/frontend-api/**
jobs: jobs:
notify-core-changes: notify-core-changes:

View File

@ -0,0 +1,66 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should match snapshot from /api/client/features 1`] = `
{
"features": [
{
"description": null,
"enabled": false,
"impressionData": false,
"name": "test1",
"project": "default",
"stale": false,
"strategies": [
{
"constraints": [],
"name": "flexibleRollout",
"parameters": {
"groupId": "test1",
"rollout": "100",
"stickiness": "default",
},
"variants": [],
},
],
"type": "release",
"variants": [],
},
{
"description": null,
"enabled": false,
"impressionData": false,
"name": "test2",
"project": "default",
"stale": false,
"strategies": [
{
"constraints": [
{
"contextName": "userId",
"operator": "IN",
"values": [
"123",
],
},
],
"name": "default",
"parameters": {},
"variants": [],
},
],
"type": "release",
"variants": [],
},
],
"meta": {
"etag": ""61824cd0:11"",
"queryHash": "61824cd0",
"revisionId": 11,
},
"query": {
"environment": "default",
"inlineSegmentConstraints": true,
},
"version": 2,
}
`;

View File

@ -13,13 +13,19 @@ import { type IUserWithRootRole, TEST_AUDIT_USER } from '../../../types';
let app: IUnleashTest; let app: IUnleashTest;
let db: ITestDb; let db: ITestDb;
let dummyAdmin: IUserWithRootRole; let dummyAdmin: IUserWithRootRole;
let proApp: IUnleashTest;
let proDb: ITestDb;
let enterpriseApp: IUnleashTest;
let enterpriseDb: ITestDb;
let enterpriseDummyAdmin: IUserWithRootRole;
let proDummyAdmin: IUserWithRootRole;
const apiClientResponse = [ const getApiClientResponse = (project = 'default') => [
{ {
name: 'test1', name: 'test1',
type: 'release', type: 'release',
enabled: false, enabled: false,
project: 'default', project: project,
stale: false, stale: false,
strategies: [ strategies: [
{ {
@ -41,7 +47,7 @@ const apiClientResponse = [
name: 'test2', name: 'test2',
type: 'release', type: 'release',
enabled: false, enabled: false,
project: 'default', project: project,
stale: false, stale: false,
strategies: [ strategies: [
{ {
@ -63,6 +69,59 @@ const apiClientResponse = [
}, },
]; ];
const cleanup = async (db: ITestDb, app: IUnleashTest) => {
const all =
await db.stores.projectStore.getEnvironmentsForProject('default');
await Promise.all(
all
.filter((env) => env.environment !== DEFAULT_ENV)
.map(async (env) =>
db.stores.projectStore.deleteEnvironmentForProject(
'default',
env.environment,
),
),
);
};
const setupFeatures = async (
db: ITestDb,
app: IUnleashTest,
project = 'default',
) => {
await db.rawDatabase.raw('DELETE FROM features');
await app.createFeature('test1', project);
await app.createFeature('test2', project);
await app.addStrategyToFeatureEnv(
{
name: 'flexibleRollout',
constraints: [],
parameters: {
rollout: '100',
stickiness: 'default',
groupId: 'test1',
},
},
DEFAULT_ENV,
'test1',
project,
);
await app.addStrategyToFeatureEnv(
{
name: 'default',
constraints: [
{ contextName: 'userId', operator: 'IN', values: ['123'] },
],
parameters: {},
},
DEFAULT_ENV,
'test2',
project,
);
};
beforeAll(async () => { beforeAll(async () => {
db = await dbInit('client_feature_toggles', getLogger); db = await dbInit('client_feature_toggles', getLogger);
app = await setupAppWithCustomConfig( app = await setupAppWithCustomConfig(
@ -77,6 +136,38 @@ beforeAll(async () => {
db.rawDatabase, db.rawDatabase,
); );
enterpriseDb = await dbInit('client_feature_toggles_enterprise', getLogger);
enterpriseApp = await setupAppWithCustomConfig(
enterpriseDb.stores,
{
experimental: {
flags: {
strictSchemaValidation: true,
},
},
ui: {
environment: 'Enterprise',
},
},
enterpriseDb.rawDatabase,
);
proDb = await dbInit('client_feature_toggles_pro', getLogger);
proApp = await setupAppWithCustomConfig(
proDb.stores,
{
experimental: {
flags: {
strictSchemaValidation: true,
},
},
ui: {
environment: 'Pro',
},
},
proDb.rawDatabase,
);
dummyAdmin = await app.services.userService.createUser( dummyAdmin = await app.services.userService.createUser(
{ {
name: 'Some Name', name: 'Some Name',
@ -85,26 +176,39 @@ beforeAll(async () => {
}, },
TEST_AUDIT_USER, TEST_AUDIT_USER,
); );
enterpriseDummyAdmin = await enterpriseApp.services.userService.createUser(
{
name: 'Some Name',
email: 'test@getunleash.io',
rootRole: RoleName.ADMIN,
},
TEST_AUDIT_USER,
);
proDummyAdmin = await proApp.services.userService.createUser(
{
name: 'Some Name',
email: 'test@getunleash.io',
rootRole: RoleName.ADMIN,
},
TEST_AUDIT_USER,
);
}); });
afterEach(async () => { afterEach(async () => {
const all = await cleanup(db, app);
await db.stores.projectStore.getEnvironmentsForProject('default'); await cleanup(proDb, proApp);
await Promise.all( await cleanup(enterpriseDb, enterpriseApp);
all
.filter((env) => env.environment !== DEFAULT_ENV)
.map(async (env) =>
db.stores.projectStore.deleteEnvironmentForProject(
'default',
env.environment,
),
),
);
}); });
afterAll(async () => { afterAll(async () => {
await app.destroy(); await app.destroy();
await db.destroy(); await db.destroy();
await proApp.destroy();
await proDb.destroy();
await enterpriseApp.destroy();
await enterpriseDb.destroy();
}); });
test('should fetch single feature', async () => { test('should fetch single feature', async () => {
@ -164,40 +268,57 @@ test('should support filtering on project', async () => {
}); });
test('should return correct data structure from /api/client/features', async () => { test('should return correct data structure from /api/client/features', async () => {
await db.rawDatabase.raw('DELETE FROM features'); await setupFeatures(db, app);
await app.createFeature('test1', 'default');
await app.createFeature('test2', 'default');
await app.addStrategyToFeatureEnv(
{
name: 'flexibleRollout',
constraints: [],
parameters: {
rollout: '100',
stickiness: 'default',
groupId: 'test1',
},
},
DEFAULT_ENV,
'test1',
);
await app.addStrategyToFeatureEnv(
{
name: 'default',
constraints: [
{ contextName: 'userId', operator: 'IN', values: ['123'] },
],
parameters: {},
},
DEFAULT_ENV,
'test2',
);
const result = await app.request const result = await app.request
.get('/api/client/features') .get('/api/client/features')
.expect('Content-Type', /json/) .expect('Content-Type', /json/)
.expect(200); .expect(200);
expect(result.body.features).toEqual(apiClientResponse); expect(result.body.features).toEqual(getApiClientResponse());
});
test('should return correct data structure from /api/client/features for pro', async () => {
await proApp.services.projectService.createProject(
{ name: 'Pro', id: 'pro' },
proDummyAdmin,
TEST_AUDIT_USER,
);
await setupFeatures(proDb, proApp, 'pro');
const result = await proApp.request
.get('/api/client/features')
.expect('Content-Type', /json/)
.expect(200);
expect(result.body.features).toEqual(getApiClientResponse('pro'));
});
test('should return correct data structure from /api/client/features for Enterprise', async () => {
await enterpriseApp.services.projectService.createProject(
{ name: 'Enterprise', id: 'enterprise' },
enterpriseDummyAdmin,
TEST_AUDIT_USER,
);
await setupFeatures(enterpriseDb, enterpriseApp, 'enterprise');
const result = await enterpriseApp.request
.get('/api/client/features')
.expect('Content-Type', /json/)
.expect(200);
expect(result.body.features).toEqual(getApiClientResponse('enterprise'));
});
test('should match snapshot from /api/client/features', async () => {
await setupFeatures(db, app);
const result = await app.request
.get('/api/client/features')
.expect('Content-Type', /json/)
.expect(200);
expect(result.body).toMatchSnapshot();
}); });