Browse Source

Merge pull request #3845 from nocodb/test/duration-column

test: enable duration column tests
pull/3853/head
Raju Udava 2 years ago committed by GitHub
parent
commit
79419e2c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 38
      scripts/cypress/integration/common/3e_duration_column.js
  2. 2
      scripts/cypress/integration/test/pg-restTableOps.js
  3. 2
      scripts/cypress/integration/test/restTableOps.js
  4. 2
      scripts/cypress/integration/test/xcdb-restTableOps.js

38
scripts/cypress/integration/common/3e_duration_column.js

@ -13,21 +13,26 @@ export const genTest = (apiType, dbType) => {
cy.get("label").contains(label).parents(".ant-row").first().click();
};
// Run once before test- create table
//
before(() => {
mainPage.tabReset();
// // close team & auth tab
// cy.get('button.ant-tabs-tab-remove').should('exist').click();
cy.restoreLocalStorage();
cy.createTable(tableName);
cy.saveLocalStorage();
});
// Run once before test- create table
//
beforeEach(() => {
cy.restoreLocalStorage();
});
beforeEach(() => {});
afterEach(() => {
cy.saveLocalStorage();
});
after(() => {
cy.restoreLocalStorage();
cy.deleteTable(tableName);
cy.saveLocalStorage();
});
// Routine to create a new look up column
@ -42,7 +47,6 @@ export const genTest = (apiType, dbType) => {
.should("exist")
.clear()
.type(columnName);
// cy.get(".nc-column-type-input").last().click().type("Duration");
cy.getActiveMenu(".nc-dropdown-grid-add-column")
.find(".nc-column-type-input")
.last()
@ -53,6 +57,10 @@ export const genTest = (apiType, dbType) => {
.contains("Duration")
.click();
// fix me! wait till the modal rendering (input highlight) is completed
// focus shifts back to the input field to select text after the dropdown is rendered
cy.wait(500);
// Configure Duration format
fetchParentFromLabel("Duration Format");
cy.getActiveSelection(".nc-dropdown-duration-option")
@ -60,7 +68,6 @@ export const genTest = (apiType, dbType) => {
.contains(durationFormat)
.click();
// cy.get(".ant-btn-primary").contains("Save").should('exist').click();
cy.getActiveMenu(".nc-dropdown-grid-add-column")
.find(".ant-btn-primary:visible")
.contains("Save")
@ -83,8 +90,6 @@ export const genTest = (apiType, dbType) => {
.trigger("mouseover", { force: true })
.click({ force: true });
// cy.get(".nc-column-edit").click();
// cy.get(".nc-column-edit").should("not.be.visible");
cy.getActiveMenu(".nc-dropdown-column-operations")
.find(".nc-column-edit")
.click();
@ -95,6 +100,11 @@ export const genTest = (apiType, dbType) => {
.should("exist")
.clear()
.type(newName);
// fix me! wait till the modal rendering (input highlight) is completed
// focus shifts back to the input field to select text after the dropdown is rendered
cy.wait(500);
// Configure Duration format
fetchParentFromLabel("Duration Format");
cy.getActiveSelection(".nc-dropdown-duration-option")
@ -102,7 +112,6 @@ export const genTest = (apiType, dbType) => {
.contains(newDurationFormat)
.click();
// cy.get(".ant-btn-primary:visible").contains("Save").click();
cy.getActiveMenu(".nc-dropdown-edit-column")
.find(".ant-btn-primary:visible")
.contains("Save")
@ -145,9 +154,6 @@ export const genTest = (apiType, dbType) => {
.contains("Cancel")
.should("exist")
.click();
// mainPage.getCell(colName, index).find('input').then(($e) => {
// expect($e[0].value).to.equal(expectedValue)
// })
mainPage.getCell(colName, index).contains(expectedValue).should("exist");
};

2
scripts/cypress/integration/test/pg-restTableOps.js

@ -31,7 +31,7 @@ const nocoTestSuite = (apiType, dbType) => {
t3b.genTest(apiType, dbType);
t3c.genTest(apiType, dbType);
t3d.genTest(apiType, dbType);
// NcGUI v2 t3e.genTest(apiType, dbType);
t3e.genTest(apiType, dbType);
};
nocoTestSuite("rest", "postgres");

2
scripts/cypress/integration/test/restTableOps.js

@ -31,7 +31,7 @@ const nocoTestSuite = (apiType, dbType) => {
t3b.genTest(apiType, dbType);
t3c.genTest(apiType, dbType);
t3d.genTest(apiType, dbType);
// NcGUI v2 t3e.genTest(apiType, dbType);
t3e.genTest(apiType, dbType);
t3f.genTest(apiType, dbType);
};

2
scripts/cypress/integration/test/xcdb-restTableOps.js

@ -30,7 +30,7 @@ const nocoTestSuite = (apiType, dbType) => {
t3b.genTest(apiType, dbType);
t3c.genTest(apiType, dbType);
t3d.genTest(apiType, dbType);
// NcGUI v2 t3e.genTest(apiType, dbType);
t3e.genTest(apiType, dbType);
};
nocoTestSuite("rest", "xcdb");

Loading…
Cancel
Save