import { loginPage } from "../../support/page_objects/navigation" import { isTestSuiteActive } from "../../support/page_objects/projectConstants" import { mainPage } from "../../support/page_objects/mainPage" let baseURL = '' // 0: all enabled // 1: field hide // 2: field sort // 3: field filter // 4: default (address table): for view operation validation // 5: default (country table): for update row/column validation let viewURL = {} export const genTest = (type, xcdb) => { if(!isTestSuiteActive(type, xcdb)) return; const generateViewLink = (viewName) => { // click on share view cy.get('.v-navigation-drawer__content > .container') .find('.v-list > .v-list-item') .contains('Share View') .click() // wait, as URL initially will be /undefined cy.wait(1000) // copy link text, visit URL cy.getActiveModal().find('.share-link-box') .contains('/nc/view/', {timeout: 10000}) .then(($obj) => { cy.get('body').type('{esc}') // viewURL.push($obj.text()) viewURL[viewName] = $obj.text() cy.wait(1000) }) } describe(`${type.toUpperCase()} api - GRID VIEW`, () => { // Run once before test- create project (rest/graphql) // before(() => { // open a table to work on views // cy.openTableTab('Country'); cy.saveLocalStorage() }) beforeEach(() => { cy.restoreLocalStorage(); }) afterEach(() => { cy.saveLocalStorage(); }) after(() => { // close table // mainPage.deleteCreatedViews() cy.get('[href="#table||db||Country"]').find('button.mdi-close').click() }) // Common routine to create/edit/delete GRID & GALLERY view // Input: viewType - 'grid'/'gallery' // const viewTest = (viewType) => { it(`Create ${viewType} view`, () => { // create a normal public view cy.get(`.nc-create-${viewType}-view`).click(); cy.getActiveModal().find('button:contains(Submit)').click() cy.wait(1000) // create view for fields verification cy.get(`.nc-create-${viewType}-view`).click(); cy.getActiveModal().find('button:contains(Submit)').click() cy.wait(1000) // create view for Sort verification cy.get(`.nc-create-${viewType}-view`).click(); cy.getActiveModal().find('button:contains(Submit)').click() cy.wait(1000) // create view for Filter verification cy.get(`.nc-create-${viewType}-view`).click(); cy.getActiveModal().find('button:contains(Submit)').click() cy.wait(1000) // store base URL- to re-visit and delete form view later cy.url().then((url) => { baseURL = url }) }) it(`Share ${viewType} view generate URL with all fields enabled`, () => { cy.get(`.nc-view-item.nc-${viewType}-view-item`).contains('Country1').click() generateViewLink('default') cy.log(viewURL['default']) }) it(`Share ${viewType} view generate URL with a field hidden`, () => { cy.get(`.nc-view-item.nc-${viewType}-view-item`).contains('Country2').click() mainPage.hideUnhideField('LastUpdate') generateViewLink('hide') }) it(`Share ${viewType} view generate URL with a field sorted`, () => { cy.get(`.nc-view-item.nc-${viewType}-view-item`).contains('Country3').click() mainPage.sortField('Country', 'Z -> A') generateViewLink('sort') }) it(`Share ${viewType} view generate URL with a field filtered`, () => { cy.get(`.nc-view-item.nc-${viewType}-view-item`).contains('Country4').click() mainPage.filterField('Country', 'is equal', 'India') generateViewLink('filter') }) it(`Share ${viewType} view : Access URL with a field hidden`, () => { // visit public view cy.visit(viewURL['hide']) // wait for public view page to load! cy.wait(5000) // verify title cy.get('div.model-name').contains('Country2').should('exist') // verify column headers cy.get('[data-col="Country"]').should('exist') cy.get('[data-col="LastUpdate"]').should('not.exist') cy.get('[data-col="Country => City"]').should('exist') // country column content verification before sort mainPage.getCell("Country", 1).contains("Afghanistan").should('exist') mainPage.getCell("Country", 2).contains("Algeria").should('exist') mainPage.getCell("Country", 3).contains("American Samoa").should('exist') }) it(`Share ${viewType} view : Access URL with a field sorted`, () => { // visit public view cy.visit(viewURL['sort']) // wait for public view page to load! cy.wait(5000) // verify title cy.get('div.model-name').contains('Country3').should('exist') // verify column headers cy.get('[data-col="Country"]').should('exist') cy.get('[data-col="LastUpdate"]').should('exist') cy.get('[data-col="Country => City"]').should('exist') // country column content verification before sort mainPage.getCell("Country", 1).contains("Zambia").should('exist') }) it(`Share ${viewType} view : Access URL with a field filtered`, () => { // visit public view cy.visit(viewURL['filter']) // wait for public view page to load! cy.wait(5000) // verify title cy.get('div.model-name').contains('Country4').should('exist') // verify column headers cy.get('[data-col="Country"]').should('exist') cy.get('[data-col="LastUpdate"]').should('exist') cy.get('[data-col="Country => City"]').should('exist') // country column content verification before sort mainPage.getCell("Country", 1).contains("India").should('exist') }) it(`Share ${viewType} view : Access URL with all fields enabled`, () => { // visit public view cy.visit(viewURL['default']) // wait for public view page to load! cy.wait(5000) // verify title cy.get('div.model-name').contains('Country1').should('exist') // verify column headers cy.get('[data-col="Country"]').should('exist') cy.get('[data-col="LastUpdate"]').should('exist') cy.get('[data-col="Country => City"]').should('exist') // country column content verification before sort mainPage.getCell("Country", 1).contains("Afghanistan").should('exist') mainPage.getCell("Country", 2).contains("Algeria").should('exist') mainPage.getCell("Country", 3).contains("American Samoa").should('exist') }) it(`Share ${viewType} view : Enable sort`, () => { // Sort menu operations (Country Column, Z->A) mainPage.sortField('Country', 'Z -> A') mainPage.getCell("Country", 1).contains("Zambia").should('exist') }) it(`Share ${viewType} view : Disable sort`, () => { // remove sort and validate mainPage.clearSort() mainPage.getCell("Country", 1).contains("Afghanistan").should('exist') }) it(`Share ${viewType} view : Create Filter`, () => { // add filter & validate mainPage.filterField('Country', 'is equal', 'India') cy.wait(1000) mainPage.getCell("Country", 1).contains("India").should('exist') }) it(`Share ${viewType} view : Delete Filter`, () => { // Remove sort and Validate mainPage.filterReset() mainPage.getCell("Country", 1).contains("Afghanistan").should('exist') }) it(`Delete ${viewType} view`, () => { // go back to base page cy.visit(baseURL) // number of view entries should be 2 before we delete cy.get('.nc-view-item').its('length').should('eq', 5) // click on delete icon (becomes visible on hovering mouse) cy.get('.nc-view-delete-icon').eq(3).click({ force: true }) cy.wait(1000) cy.get('.nc-view-delete-icon').eq(2).click({ force: true }) cy.wait(1000) cy.get('.nc-view-delete-icon').eq(1).click({ force: true }) cy.wait(1000) cy.get('.nc-view-delete-icon').eq(0).click({ force: true }) cy.wait(1000) // confirm if the number of veiw entries is reduced by 1 cy.get('.nc-view-item').its('length').should('eq', 1) }) } // below scenario's will be invoked twice, once for rest & then for graphql viewTest('grid') }) describe(`${type.toUpperCase()} api - Grid view/ Virtual column verification`, () => { before(() => { // Address table has belongs to, has many & many-to-many cy.openTableTab('Address'); cy.saveLocalStorage() // store base URL- to re-visit and delete form view later cy.url().then((url) => { baseURL = url generateViewLink('virtualColumn') }) }) beforeEach(() => { cy.restoreLocalStorage(); }) afterEach(() => { cy.saveLocalStorage(); }) after(() => { // close table cy.visit(baseURL) mainPage.deleteCreatedViews() cy.get('[href="#table||db||Address"]').find('button.mdi-close').click() }) it(`Generate default Shared GRID view URL`, () => { // visit public view cy.visit(viewURL['virtualColumn']) // wait for public view page to load! cy.wait(5000) }) it(`Share GRID view : Virtual column validation > has many`, () => { // verify column headers cy.get('[data-col="Address => Customer"]').should('exist') cy.get('[data-col="Address => Staff"]').should('exist') cy.get('[data-col="City <= Address"]').should('exist') cy.get('[data-col="Address <=> Staff"]').should('exist') // has many field validation mainPage.getCell("Address => Staff", 3).click().find('button.mdi-close-thick').should('not.exist') mainPage.getCell("Address => Staff", 3).click().find('button.mdi-plus').should('not.exist') mainPage.getCell("Address => Staff", 3).click().find('button.mdi-arrow-expand').click() cy.getActiveModal().find('button.mdi-reload').should('exist') cy.getActiveModal().find('button').contains('Link to').should('not.exist') cy.getActiveModal().find('.child-card').contains('Mike').should('exist') cy.getActiveModal().find('.child-card').find('button').should('not.exist') cy.get('body').type('{esc}') }) it(`Share GRID view : Virtual column validation > belongs to`, () => { // belongs to field validation mainPage.getCell("City <= Address", 1).click().find('button.mdi-close-thick').should('not.exist') mainPage.getCell("City <= Address", 1).click().find('button.mdi-arrow-expand').should('not.exist') mainPage.getCell("City <= Address", 1).find('.v-chip').contains('Lethbridge').should('exist') }) it(`Share GRID view : Virtual column validation > many to many`, () => { // many-to-many field validation mainPage.getCell("Address <=> Staff", 1).click().find('button.mdi-close-thick').should('not.exist') mainPage.getCell("Address <=> Staff", 1).click().find('button.mdi-plus').should('not.exist') mainPage.getCell("Address <=> Staff", 1).click().find('button.mdi-arrow-expand').click() cy.getActiveModal().find('button.mdi-reload').should('exist') cy.getActiveModal().find('button').contains('Link to').should('not.exist') cy.getActiveModal().find('.child-card').contains('Mike').should('exist') cy.getActiveModal().find('.child-card').find('button').should('not.exist') cy.get('body').type('{esc}') }) }) describe(`${type.toUpperCase()} api - Grid view/ row-column update verification`, () => { before(() => { // Address table has belongs to, has many & many-to-many cy.openTableTab('Country') cy.saveLocalStorage() // store base URL- to re-visit and delete form view later cy.url().then((url) => { baseURL = url generateViewLink('rowColUpdate') }) }) after(() => { // close table cy.restoreLocalStorage(); cy.visit(baseURL) // delete row mainPage.getPagination(5).click() cy.wait(3000) mainPage.getRow(10).find('.mdi-checkbox-blank-outline').click({ force: true }) mainPage.getCell("Country", 10).rightclick() cy.getActiveMenu().contains('Delete Selected Row').click() // delete column cy.get(`th:contains('dummy') .mdi-menu-down`) .trigger('mouseover') .click() cy.get('.nc-column-delete').click() cy.get('button:contains(Confirm)').click() mainPage.deleteCreatedViews() // close table cy.get('[href="#table||db||Country"]').find('button.mdi-close').click() }) it(`Share GRID view : ensure we have only one link even if shared multiple times`, () => { // generate view link multiple times generateViewLink('rowColUpdate') generateViewLink('rowColUpdate') // verify if only one link exists in table cy.get('.v-navigation-drawer__content > .container') .find('.v-list > .v-list-item') .contains('Share View') .parent().find('button.mdi-dots-vertical').click() cy.getActiveMenu().find('.v-list-item').contains('Views List').click() cy.wait(1000) // cy.get('.container').find('button.mdi-delete-outline') cy.get('th:contains("View Link")').parent().parent() .next().find('tr').its('length').should('eq', 1) .then(() => { cy.get('.v-overlay__content > .d-flex > .v-icon').click() }) }) it(`Generate default Shared GRID view URL`, () => { // add row cy.get('.nc-add-new-row-btn').click({force: true}) cy.get('#data-table-form-Country > input').first().click().type('a') cy.contains('Save Row').filter('button').click({ force: true }) cy.wait(1000) // add column mainPage.addColumn('dummy') cy.wait(5000) // visit public view cy.log(viewURL['rowColUpdate']) cy.restoreLocalStorage(); cy.visit(viewURL['rowColUpdate']) //5 // wait for public view page to load! cy.wait(5000) }) it(`Share GRID view : new row visible`, () => { // verify row cy.get(`.v-pagination > li:contains('5') button`).click() cy.wait(3000) mainPage.getCell('Country', 10).contains('a').should('exist') }) it.skip(`Share GRID view : new column visible`, () => { // verify column headers cy.get('[data-col="dummy"]').should('exist') }) }) } // invoke for different API types supported // // genTest('rest', false) // genTest('graphql', false) /** * @copyright Copyright (c) 2021, Xgene Cloud Ltd * * @author Pranav C Balan * @author Raju Udava * * @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 . * */