mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 10:36:38 +00:00
chore: move cypress-v2 to cypress
This commit is contained in:
299
scripts/cypress/integration/common/5a_user_role.js
Normal file
299
scripts/cypress/integration/common/5a_user_role.js
Normal file
@@ -0,0 +1,299 @@
|
||||
import { loginPage, projectsPage } from "../../support/page_objects/navigation";
|
||||
import { mainPage, settingsPage } from "../../support/page_objects/mainPage";
|
||||
import {
|
||||
isPostgres,
|
||||
isXcdb,
|
||||
roles,
|
||||
staticProjects,
|
||||
} from "../../support/page_objects/projectConstants";
|
||||
import { isTestSuiteActive } from "../../support/page_objects/projectConstants";
|
||||
import {
|
||||
_advSettings,
|
||||
_editSchema,
|
||||
_editData,
|
||||
_editComment,
|
||||
_viewMenu,
|
||||
_topRightMenu,
|
||||
disableTableAccess,
|
||||
_accessControl,
|
||||
} from "../spec/roleValidation.spec";
|
||||
|
||||
export const genTest = (apiType, dbType) => {
|
||||
if (!isTestSuiteActive(apiType, dbType)) return;
|
||||
|
||||
describe("Static user creations (different roles)", () => {
|
||||
before(() => {
|
||||
mainPage.tabReset();
|
||||
|
||||
// kludge: wait for page load to finish
|
||||
cy.wait(4000);
|
||||
// close team & auth tab
|
||||
cy.get('button.ant-tabs-tab-remove').should('exist').click();
|
||||
cy.wait(1000);
|
||||
|
||||
settingsPage.openMenu(settingsPage.TEAM_N_AUTH)
|
||||
|
||||
cy.saveLocalStorage();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
cy.restoreLocalStorage();
|
||||
});
|
||||
|
||||
after(() => {
|
||||
cy.signOut();
|
||||
});
|
||||
|
||||
const addUser = (user) => {
|
||||
it(`RoleType: ${user.name}`, () => {
|
||||
// for first project, users need to be added explicitly using "New User" button
|
||||
// for subsequent projects, they will be required to just add to this project
|
||||
// using ROW count to identify if its former or latter scenario
|
||||
// 5 users (owner, creator, editor, viewer, commenter) = 5
|
||||
// cy.get(`.nc-user-row`).then((obj) => {
|
||||
// cy.log(obj.length);
|
||||
// if (obj.length == 5) {
|
||||
// mainPage.addExistingUserToProject(
|
||||
// user.credentials.username,
|
||||
// user.name
|
||||
// );
|
||||
// } else {
|
||||
// mainPage.addNewUserToProject(
|
||||
// user.credentials,
|
||||
// user.name
|
||||
// );
|
||||
// }
|
||||
// });
|
||||
|
||||
cy.get(`.nc-user-row`).should('exist')
|
||||
mainPage.addNewUserToProject(
|
||||
user.credentials,
|
||||
user.name
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
addUser(roles.creator);
|
||||
addUser(roles.editor);
|
||||
addUser(roles.commenter);
|
||||
addUser(roles.viewer);
|
||||
|
||||
// Access control list- configuration
|
||||
//
|
||||
it(`Access control list- configuration`, () => {
|
||||
mainPage.closeMetaTab();
|
||||
|
||||
// open Project metadata tab
|
||||
//
|
||||
settingsPage.openMenu(settingsPage.PROJ_METADATA);
|
||||
settingsPage.openTab(settingsPage.UI_ACCESS_CONTROL);
|
||||
|
||||
// validate if it has 19 entries representing tables & views
|
||||
if (isPostgres())
|
||||
cy.get(".nc-acl-table-row").should("have.length", 24);
|
||||
else if (isXcdb())
|
||||
cy.get(".nc-acl-table-row").should("have.length", 19);
|
||||
else cy.get(".nc-acl-table-row").should("have.length", 19);
|
||||
|
||||
// disable table & view access
|
||||
//
|
||||
disableTableAccess("Language", "editor");
|
||||
disableTableAccess("Language", "commenter");
|
||||
disableTableAccess("Language", "viewer");
|
||||
|
||||
disableTableAccess("CustomerList", "editor");
|
||||
disableTableAccess("CustomerList", "commenter");
|
||||
disableTableAccess("CustomerList", "viewer");
|
||||
|
||||
cy.get("button.nc-acl-save").click({ force: true });
|
||||
cy.toastWait("Updated UI ACL for tables successfully");
|
||||
|
||||
mainPage.closeMetaTab();
|
||||
});
|
||||
});
|
||||
|
||||
const roleValidation = (roleType) => {
|
||||
describe(`User role validation`, () => {
|
||||
|
||||
before(() => {
|
||||
// cy.restoreLocalStorage();
|
||||
cy.visit(mainPage.roleURL[roleType])
|
||||
cy.wait(5000);
|
||||
|
||||
cy.get('button:contains("SIGN UP")').should('exist')
|
||||
cy.get('input[type="text"]', { timeout: 20000 }).type(
|
||||
roles[roleType].credentials.username
|
||||
);
|
||||
cy.get('input[type="password"]').type(roles[roleType].credentials.password);
|
||||
cy.get('button:contains("SIGN UP")').click();
|
||||
|
||||
cy.wait(3000);
|
||||
|
||||
cy.get('.nc-project-page-title').contains("My Projects").should("be.visible");
|
||||
|
||||
if (dbType === "xcdb") {
|
||||
if ("rest" == apiType)
|
||||
projectsPage.openProject(
|
||||
staticProjects.sampleREST.basic.name
|
||||
);
|
||||
else
|
||||
projectsPage.openProject(
|
||||
staticProjects.sampleGQL.basic.name
|
||||
);
|
||||
} else if (dbType === "mysql") {
|
||||
if ("rest" == apiType)
|
||||
projectsPage.openProject(
|
||||
staticProjects.externalREST.basic.name
|
||||
);
|
||||
else
|
||||
projectsPage.openProject(
|
||||
staticProjects.externalGQL.basic.name
|
||||
);
|
||||
} else if (dbType === "postgres") {
|
||||
if ("rest" == apiType)
|
||||
projectsPage.openProject(
|
||||
staticProjects.pgExternalREST.basic.name
|
||||
);
|
||||
else
|
||||
projectsPage.openProject(
|
||||
staticProjects.pgExternalGQL.basic.name
|
||||
);
|
||||
}
|
||||
|
||||
if (roleType === "creator") {
|
||||
// kludge: wait for page load to finish
|
||||
// close team & auth tab
|
||||
cy.wait(2000);
|
||||
cy.get('button.ant-tabs-tab-remove').should('exist').click();
|
||||
cy.wait(1000);
|
||||
}
|
||||
|
||||
cy.saveLocalStorage();
|
||||
})
|
||||
|
||||
beforeEach(() => {
|
||||
cy.restoreLocalStorage();
|
||||
});
|
||||
|
||||
after(() => {
|
||||
// sign out
|
||||
cy.signOut();
|
||||
});
|
||||
|
||||
///////////////////////////////////////////////////////
|
||||
// Test suite
|
||||
|
||||
it(`[${roles[roleType].name}] Left navigation menu, New User add`, () => {
|
||||
// project configuration settings
|
||||
//
|
||||
_advSettings(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Access control`, () => {
|
||||
// Access control validation
|
||||
//
|
||||
_accessControl(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Schema: create table, add/modify/delete column`, () => {
|
||||
// Schema related validations
|
||||
// - Add/delete table
|
||||
// - Add/Update/delete column
|
||||
//
|
||||
_editSchema(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Data: add/modify/delete row, update cell contents`, () => {
|
||||
// Table data related validations
|
||||
// - Add/delete/modify row
|
||||
//
|
||||
_editData(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Comments: view/add`, () => {
|
||||
// read &/ update comment
|
||||
// Viewer: only allowed to read
|
||||
// Everyone else: read &/ update
|
||||
//
|
||||
_editComment(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Right navigation menu, share view`, () => {
|
||||
// right navigation menu bar
|
||||
// Editor/Viewer/Commenter : can only view 'existing' views
|
||||
// Rest: can create/edit
|
||||
_viewMenu(roleType, "userRole");
|
||||
});
|
||||
|
||||
it(`[${roles[roleType].name}] Download files`, () => {
|
||||
|
||||
// to be fixed
|
||||
if(roleType === 'commenter' || roleType === 'viewer') {}
|
||||
else {
|
||||
// viewer & commenter doesn't contain hideField option in ncv2
|
||||
// #ID, City, LastUpdate, City => Address, Country <= City, +
|
||||
mainPage.hideField("LastUpdate");
|
||||
|
||||
const verifyCsv = (retrievedRecords) => {
|
||||
// expected output, statically configured
|
||||
let storedRecords = [
|
||||
`City,Address List,Country`,
|
||||
`A Corua (La Corua),939 Probolinggo Loop,Spain`,
|
||||
`Abha,733 Mandaluyong Place,Saudi Arabia`,
|
||||
`Abu Dhabi,535 Ahmadnagar Manor,United Arab Emirates`,
|
||||
`Acua,1789 Saint-Denis Parkway,Mexico`,
|
||||
];
|
||||
|
||||
// skip if xcdb
|
||||
if (!isXcdb()) {
|
||||
for (let i = 0; i < storedRecords.length; i++) {
|
||||
// cy.log(retrievedRecords[i])
|
||||
expect(retrievedRecords[i]).to.be.equal(
|
||||
storedRecords[i]
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// download & verify
|
||||
mainPage.downloadAndVerifyCsv(
|
||||
`City_exported_1.csv`,
|
||||
verifyCsv,
|
||||
roleType
|
||||
);
|
||||
mainPage.unhideField("LastUpdate");
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
// skip owner validation as rest of the cases pretty much cover the same
|
||||
// roleValidation('owner')
|
||||
roleValidation("creator");
|
||||
roleValidation("editor");
|
||||
roleValidation("commenter");
|
||||
roleValidation("viewer");
|
||||
};
|
||||
|
||||
/**
|
||||
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||||
*
|
||||
* @author Pranav C Balan <pranavxc@gmail.com>
|
||||
* @author Raju Udava <sivadstala@gmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
Reference in New Issue
Block a user