mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 19:55:04 +00:00
chore: move cypress-v2 to cypress
This commit is contained in:
199
scripts/cypress/integration/common/1c_sql_view.js
Normal file
199
scripts/cypress/integration/common/1c_sql_view.js
Normal file
@@ -0,0 +1,199 @@
|
||||
import {
|
||||
isTestSuiteActive,
|
||||
isXcdb,
|
||||
} from "../../support/page_objects/projectConstants";
|
||||
import { mainPage } from "../../support/page_objects/mainPage";
|
||||
|
||||
export const genTest = (apiType, dbType) => {
|
||||
if (!isTestSuiteActive(apiType, dbType)) return;
|
||||
|
||||
describe(`${apiType.toUpperCase()} SQL Views`, () => {
|
||||
// Run once before test- create project (rest/graphql)
|
||||
//
|
||||
before(() => {
|
||||
cy.fileHook();
|
||||
mainPage.tabReset();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
cy.fileHook();
|
||||
})
|
||||
|
||||
it(`XCDB: SQL View Column operations`, () => {
|
||||
// Open one of the views & verify validity of first two entries
|
||||
if (isXcdb()) {
|
||||
cy.openViewsTab("CustomerList", 25);
|
||||
|
||||
// Record-1 validation
|
||||
mainPage.getCell(`ID`, 1).contains("1").should("exist");
|
||||
mainPage
|
||||
.getCell(`Name`, 1)
|
||||
.contains("MARY SMITH")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`Address`, 1)
|
||||
.contains("1913 Hanoi Way")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`ZipCode`, 1)
|
||||
.contains("35200")
|
||||
.should("exist");
|
||||
|
||||
// Record-2 validation
|
||||
mainPage.getCell(`ID`, 2).contains("2").should("exist");
|
||||
mainPage
|
||||
.getCell(`Name`, 2)
|
||||
.contains("PATRICIA JOHNSON")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`Address`, 2)
|
||||
.contains("1121 Loja Avenue")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`ZipCode`, 2)
|
||||
.contains("17886")
|
||||
.should("exist");
|
||||
|
||||
// Column operations: Hide
|
||||
mainPage.hideField(`ZipCode`);
|
||||
mainPage.unhideField(`ZipCode`);
|
||||
|
||||
// Column operations: Sort
|
||||
mainPage.sortField("Name", "Z → A");
|
||||
mainPage
|
||||
.getCell(`Name`, 1)
|
||||
.contains("ZACHARY HITE")
|
||||
.should("exist");
|
||||
mainPage.clearSort();
|
||||
|
||||
// Column operations: Filter
|
||||
mainPage.filterField("Name", "is like", "MARY");
|
||||
mainPage
|
||||
.getCell(`Name`, 1)
|
||||
.contains("MARY SMITH")
|
||||
.should("exist");
|
||||
mainPage.filterReset();
|
||||
|
||||
cy.closeViewsTab("CustomerList");
|
||||
}
|
||||
});
|
||||
|
||||
it(`SQL View Column operations`, () => {
|
||||
if (!isXcdb()) {
|
||||
// Open one of the views & verify validity of first two entries
|
||||
|
||||
cy.openViewsTab("ActorInfo", 25);
|
||||
|
||||
// Record-1 validation
|
||||
mainPage.getCell(`ActorId`, 1).contains("1").should("exist");
|
||||
mainPage
|
||||
.getCell(`FirstName`, 1)
|
||||
.contains("PENELOPE")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`LastName`, 1)
|
||||
.contains("GUINESS")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`FilmInfo`, 1)
|
||||
.contains("Animation: ANACONDA CONFESSIONS")
|
||||
.should("exist");
|
||||
|
||||
// Record-2 validation
|
||||
mainPage.getCell(`ActorId`, 2).contains("2").should("exist");
|
||||
mainPage
|
||||
.getCell(`FirstName`, 2)
|
||||
.contains("NICK")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`LastName`, 2)
|
||||
.contains("WAHLBERG")
|
||||
.should("exist");
|
||||
mainPage
|
||||
.getCell(`FilmInfo`, 2)
|
||||
.contains("Action: BULL SHAWSHANK")
|
||||
.should("exist");
|
||||
|
||||
// Column operations: Hide
|
||||
mainPage.hideField("FilmInfo");
|
||||
mainPage.unhideField("FilmInfo");
|
||||
|
||||
// Column operations: Sort
|
||||
mainPage.sortField("FirstName", "Z → A");
|
||||
mainPage
|
||||
.getCell(`FirstName`, 1)
|
||||
.contains("ZERO")
|
||||
.should("exist");
|
||||
mainPage.clearSort();
|
||||
|
||||
// Column operations: Filter
|
||||
mainPage.filterField("FirstName", "is like", "PENELOPE");
|
||||
mainPage
|
||||
.getCell(`FirstName`, 1)
|
||||
.contains("PENELOPE")
|
||||
.should("exist");
|
||||
mainPage.filterReset();
|
||||
|
||||
cy.closeViewsTab("ActorInfo");
|
||||
}
|
||||
});
|
||||
|
||||
it.skip(`SQL View List`, () => {
|
||||
// confirm if other views exist
|
||||
//
|
||||
cy.openViewsTab("CustomerList", 25);
|
||||
cy.closeViewsTab("CustomerList");
|
||||
|
||||
cy.openViewsTab("FilmList", 25);
|
||||
cy.closeViewsTab("FilmList");
|
||||
|
||||
cy.openViewsTab("SalesByFilmCategory", 16);
|
||||
cy.closeViewsTab("SalesByFilmCategory");
|
||||
|
||||
if (!isXcdb()) {
|
||||
cy.openViewsTab("NicerButSlowerFilmList", 25);
|
||||
cy.closeViewsTab("NicerButSlowerFilmList");
|
||||
|
||||
// SalesByStore && StaffList contain no entries. Hence marking row count to 0
|
||||
cy.openViewsTab("SalesByStore", 0);
|
||||
cy.closeViewsTab("SalesByStore");
|
||||
|
||||
cy.openViewsTab("StaffList", 0);
|
||||
cy.closeViewsTab("StaffList");
|
||||
} else {
|
||||
cy.openViewsTab("SalesByStore", 2);
|
||||
cy.closeViewsTab("SalesByStore");
|
||||
|
||||
cy.openViewsTab("StaffList", 2);
|
||||
cy.closeViewsTab("StaffList");
|
||||
}
|
||||
});
|
||||
|
||||
after(() => {
|
||||
// void
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* @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