Browse Source

test: CY share base handling

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/3396/head
Raju Udava 2 years ago
parent
commit
13eb340838
  1. 36
      scripts/cypress-v2/integration/common/6g_base_share.js

36
scripts/cypress-v2/integration/common/6g_base_share.js

@ -10,6 +10,7 @@ import {
_viewMenu,
_topRightMenu,
} from "../spec/roleValidation.spec";
import {linkSync} from "fs";
// fix me
let linkText = "";
@ -26,51 +27,36 @@ export const genTest = (apiType, dbType) => {
baseUrl: null,
});
cy.wait(5000);
cy.saveLocalStorage();
cy.wait(1000);
cy.printLocalStorage();
});
it(`${roleType}: Validate access permissions: advance menu`, () => {
cy.restoreLocalStorage();
// cy.restoreLocalStorage();
_advSettings(roleType, "baseShare");
});
it(`${roleType}: Validate access permissions: edit schema`, () => {
cy.restoreLocalStorage();
// cy.restoreLocalStorage();
_editSchema(roleType, "baseShare");
});
it(`${roleType}: Validate access permissions: edit data`, () => {
cy.restoreLocalStorage();
// cy.restoreLocalStorage();
_editData(roleType, "baseShare");
});
it(`${roleType}: Validate access permissions: edit comments`, () => {
cy.restoreLocalStorage();
// cy.restoreLocalStorage();
_editComment(roleType, "baseShare");
});
// fix me
// it(`${roleType}: Validate access permissions: view's menu`, () => {
it(`${roleType}: Validate access permissions: view's menu`, () => {
// cy.restoreLocalStorage();
// _viewMenu(roleType, "baseShare");
// });
_viewMenu(roleType, "baseShare");
});
};
describe(`${apiType.toUpperCase()} Base VIEW share`, () => {
before(() => {
// cy.restoreLocalStorage();
// cy.wait(1000);
//
// cy.visit("/");
// cy.wait(5000);
//
// // // kludge: wait for page load to finish
// projectsPage.openConfiguredProject(apiType, dbType);
loginPage.loginAndOpenProject(apiType, dbType);
cy.openTableTab("Country", 25);
@ -164,9 +150,11 @@ style="background: transparent; "></iframe>
});
permissionValidation("editor");
});
describe(`${apiType.toUpperCase()} iFrame Test`, () => {
// https://docs.cypress.io/api/commands/visit#Prefixes
it.skip("Generate & verify embed HTML IFrame", {baseUrl: null}, () => {
it("Generate & verify embed HTML IFrame", {baseUrl: null}, () => {
let filePath = "scripts/cypress-v2/fixtures/sampleFiles/iFrame.html";
cy.log(filePath);
@ -192,7 +180,7 @@ style="background: transparent; "></iframe>
cy.iframe().find(`.nc-grid-cell`).eq(2).contains("GUINESS").should("exist");
});
});
})
}
/**

Loading…
Cancel
Save