mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-18 11:14:57 +02:00
<!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> This PR sets up exports so that we can import in enterprise with just "unleash-server". This will free us to refactor unleash internals without breaking enterprise ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> <!-- Does it close an issue? Multiple? --> Closes # <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? -->
112 lines
3.1 KiB
TypeScript
112 lines
3.1 KiB
TypeScript
import dbInit, { ITestDb } from '../../../helpers/database-init';
|
|
import { IUnleashTest, setupAppWithAuth } from '../../../helpers/test-helper';
|
|
import getLogger from '../../../../fixtures/no-logger';
|
|
import { DEFAULT_ENV } from '../../../../../lib/util';
|
|
import { RoleName, CREATE_FEATURE_STRATEGY } from '../../../../../lib/types';
|
|
|
|
let app: IUnleashTest;
|
|
let db: ITestDb;
|
|
|
|
beforeAll(async () => {
|
|
db = await dbInit('feature_strategy_auth_api_serial', getLogger);
|
|
app = await setupAppWithAuth(db.stores);
|
|
});
|
|
|
|
afterEach(async () => {
|
|
const all = await db.stores.projectStore.getEnvironmentsForProject(
|
|
'default',
|
|
);
|
|
await Promise.all(
|
|
all
|
|
.filter((env) => env !== DEFAULT_ENV)
|
|
.map(async (env) =>
|
|
db.stores.projectStore.deleteEnvironmentForProject(
|
|
'default',
|
|
env,
|
|
),
|
|
),
|
|
);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await app.destroy();
|
|
await db.destroy();
|
|
});
|
|
|
|
test('Should not be possible to update feature toggle without permission', async () => {
|
|
const email = 'user@mail.com';
|
|
const url = '/api/admin/projects/default/features';
|
|
const name = 'auth.toggle.update';
|
|
|
|
await db.stores.featureToggleStore.create('default', { name });
|
|
|
|
await app.services.userService.createUser({
|
|
email,
|
|
rootRole: RoleName.VIEWER,
|
|
});
|
|
|
|
await app.request.post('/auth/demo/login').send({
|
|
email,
|
|
});
|
|
|
|
await app.request
|
|
.put(`${url}/${name}`)
|
|
.send({ name, description: 'updated', type: 'kill-switch' })
|
|
.expect(403);
|
|
});
|
|
|
|
test('Should be possible to update feature toggle with permission', async () => {
|
|
const email = 'user2@mail.com';
|
|
const url = '/api/admin/projects/default/features';
|
|
const name = 'auth.toggle.update2';
|
|
|
|
await db.stores.featureToggleStore.create('default', { name });
|
|
|
|
await app.services.userService.createUser({
|
|
email,
|
|
rootRole: RoleName.EDITOR,
|
|
});
|
|
|
|
await app.request.post('/auth/demo/login').send({
|
|
email,
|
|
});
|
|
|
|
await app.request
|
|
.put(`${url}/${name}`)
|
|
.send({ name, description: 'updated', type: 'kill-switch' })
|
|
.expect(200);
|
|
});
|
|
|
|
test('Should not be possible auto-enable feature toggle without CREATE_FEATURE_STRATEGY permission', async () => {
|
|
const email = 'user33@mail.com';
|
|
const url = '/api/admin/projects/default/features';
|
|
const name = 'auth.toggle.enable';
|
|
|
|
await app.services.featureToggleServiceV2.createFeatureToggle(
|
|
'default',
|
|
{ name },
|
|
'me',
|
|
true,
|
|
);
|
|
|
|
await app.services.userService.createUser({
|
|
email,
|
|
rootRole: RoleName.EDITOR,
|
|
});
|
|
|
|
await app.request.post('/auth/demo/login').send({
|
|
email,
|
|
});
|
|
|
|
const role = await db.stores.roleStore.getRoleByName(RoleName.EDITOR);
|
|
|
|
await db.stores.accessStore.removePermissionFromRole(
|
|
role.id,
|
|
CREATE_FEATURE_STRATEGY,
|
|
'default',
|
|
);
|
|
await app.request
|
|
.post(`${url}/${name}/environments/default/on`)
|
|
.expect(403);
|
|
});
|