mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
c3216ac941
Does what it says on the tin, should help with cleaning up https://github.com/Unleash/unleash/pull/4512 and respective schema changes. --------- Co-authored-by: Gastón Fournier <gaston@getunleash.io>
179 lines
5.9 KiB
TypeScript
179 lines
5.9 KiB
TypeScript
///<reference path="../../global.d.ts" />
|
|
|
|
import {
|
|
PA_ASSIGN_BUTTON_ID,
|
|
PA_ASSIGN_CREATE_ID,
|
|
PA_EDIT_BUTTON_ID,
|
|
PA_REMOVE_BUTTON_ID,
|
|
PA_ROLE_ID,
|
|
PA_USERS_GROUPS_ID,
|
|
PA_USERS_GROUPS_TITLE_ID,
|
|
//@ts-ignore
|
|
} from '../../../src/utils/testIds';
|
|
|
|
describe('project-access', () => {
|
|
const baseUrl = Cypress.config().baseUrl;
|
|
const randomId = String(Math.random()).split('.')[1];
|
|
const groupAndProjectName = `group-e2e-${randomId}`;
|
|
const userName = `user-e2e-${randomId}`;
|
|
const groupIds: any[] = [];
|
|
const userIds: any[] = [];
|
|
|
|
before(() => {
|
|
cy.runBefore();
|
|
cy.login_UI();
|
|
for (let i = 1; i <= 2; i++) {
|
|
const name = `${i}-${userName}`;
|
|
cy.request('POST', `${baseUrl}/api/admin/user-admin`, {
|
|
name: name,
|
|
email: `${name}@test.com`,
|
|
sendEmail: false,
|
|
rootRole: 3,
|
|
})
|
|
.as(name)
|
|
.then(response => {
|
|
const id = response.body.id;
|
|
userIds.push(id);
|
|
cy.request('POST', `${baseUrl}/api/admin/groups`, {
|
|
name: `${i}-${groupAndProjectName}`,
|
|
users: [{ user: { id: id } }],
|
|
}).then(response => {
|
|
const id = response.body.id;
|
|
groupIds.push(id);
|
|
});
|
|
});
|
|
}
|
|
cy.request('POST', `${baseUrl}/api/admin/projects`, {
|
|
id: groupAndProjectName,
|
|
name: groupAndProjectName,
|
|
});
|
|
});
|
|
|
|
after(() => {
|
|
userIds.forEach(id =>
|
|
cy.request('DELETE', `${baseUrl}/api/admin/user-admin/${id}`)
|
|
);
|
|
groupIds.forEach(id =>
|
|
cy.request('DELETE', `${baseUrl}/api/admin/groups/${id}`)
|
|
);
|
|
|
|
cy.request(
|
|
'DELETE',
|
|
`${baseUrl}/api/admin/projects/${groupAndProjectName}`
|
|
);
|
|
});
|
|
|
|
beforeEach(() => {
|
|
cy.login_UI();
|
|
|
|
cy.intercept('GET', `${baseUrl}/api/admin/ui-config`, req => {
|
|
req.headers['cache-control'] =
|
|
'no-cache, no-store, must-revalidate';
|
|
req.on('response', res => {
|
|
if (res.body) {
|
|
res.body.flags = {
|
|
...res.body.flags,
|
|
multipleRoles: true,
|
|
};
|
|
}
|
|
});
|
|
});
|
|
|
|
cy.visit(`/projects/${groupAndProjectName}/settings/access`);
|
|
if (document.querySelector("[data-testid='CLOSE_SPLASH']")) {
|
|
cy.get("[data-testid='CLOSE_SPLASH']").click();
|
|
}
|
|
});
|
|
|
|
it('can assign permissions to user', () => {
|
|
cy.get(`[data-testid='${PA_ASSIGN_BUTTON_ID}']`).click();
|
|
|
|
cy.intercept(
|
|
'POST',
|
|
`/api/admin/projects/${groupAndProjectName}/access`
|
|
).as('assignAccess');
|
|
|
|
cy.get(`[data-testid='${PA_USERS_GROUPS_ID}']`).click();
|
|
cy.contains(`1-${userName}`).click();
|
|
cy.get(`[data-testid='${PA_USERS_GROUPS_TITLE_ID}']`).click();
|
|
cy.get(`[data-testid='${PA_ROLE_ID}']`).click();
|
|
cy.contains('full control over the project').click({ force: true });
|
|
|
|
cy.get(`[data-testid='${PA_ASSIGN_CREATE_ID}']`).click();
|
|
cy.wait('@assignAccess');
|
|
cy.contains(`1-${userName}`);
|
|
});
|
|
|
|
it('can assign permissions to group', () => {
|
|
cy.get(`[data-testid='${PA_ASSIGN_BUTTON_ID}']`).click();
|
|
|
|
cy.intercept(
|
|
'POST',
|
|
`/api/admin/projects/${groupAndProjectName}/access`
|
|
).as('assignAccess');
|
|
|
|
cy.get(`[data-testid='${PA_USERS_GROUPS_ID}']`).click();
|
|
cy.contains(`1-${groupAndProjectName}`).click({ force: true });
|
|
cy.get(`[data-testid='${PA_USERS_GROUPS_TITLE_ID}']`).click();
|
|
cy.get(`[data-testid='${PA_ROLE_ID}']`).click();
|
|
cy.contains('full control over the project').click({ force: true });
|
|
|
|
cy.get(`[data-testid='${PA_ASSIGN_CREATE_ID}']`).click();
|
|
cy.wait('@assignAccess');
|
|
cy.contains(`1-${groupAndProjectName}`);
|
|
});
|
|
|
|
it('can edit role', () => {
|
|
cy.get(`[data-testid='${PA_EDIT_BUTTON_ID}']`).first().click();
|
|
|
|
cy.intercept(
|
|
'PUT',
|
|
`/api/admin/projects/${groupAndProjectName}/groups/${groupIds[0]}/roles`
|
|
).as('editAccess');
|
|
|
|
cy.get(`[data-testid='CancelIcon']`).last().click();
|
|
cy.get(`[data-testid='${PA_ROLE_ID}']`).click();
|
|
cy.contains('update feature toggles within a project').click({
|
|
force: true,
|
|
});
|
|
|
|
cy.get(`[data-testid='${PA_ASSIGN_CREATE_ID}']`).click();
|
|
cy.wait('@editAccess');
|
|
cy.get("td span:contains('Owner')").should('have.length', 2);
|
|
cy.get("td span:contains('Member')").should('have.length', 1);
|
|
});
|
|
|
|
it('can edit role to multiple roles', () => {
|
|
cy.get(`[data-testid='${PA_EDIT_BUTTON_ID}']`).first().click();
|
|
|
|
cy.intercept(
|
|
'PUT',
|
|
`/api/admin/projects/${groupAndProjectName}/groups/${groupIds[0]}/roles`
|
|
).as('editAccess');
|
|
|
|
cy.get(`[data-testid='${PA_ROLE_ID}']`).click();
|
|
cy.contains('full control over the project').click({
|
|
force: true,
|
|
});
|
|
|
|
cy.get(`[data-testid='${PA_ASSIGN_CREATE_ID}']`).click();
|
|
cy.wait('@editAccess');
|
|
cy.get("td span:contains('Owner')").should('have.length', 2);
|
|
cy.get("td span:contains('2 roles')").should('have.length', 1);
|
|
});
|
|
|
|
it('can remove access', () => {
|
|
cy.get(`[data-testid='${PA_REMOVE_BUTTON_ID}']`).first().click();
|
|
|
|
cy.intercept(
|
|
'DELETE',
|
|
`/api/admin/projects/${groupAndProjectName}/groups/${groupIds[0]}/roles`
|
|
).as('removeAccess');
|
|
|
|
cy.contains("Yes, I'm sure").click();
|
|
|
|
cy.wait('@removeAccess');
|
|
cy.contains(`1-${groupAndProjectName} has been removed from project`);
|
|
});
|
|
});
|