mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
4.6 KiB
149 lines
4.6 KiB
3 years ago
|
|
||
|
import { loginPage } from "../../support/page_objects/navigation"
|
||
|
import { mainPage } from "../../support/page_objects/mainPage"
|
||
3 years ago
|
import { isTestSuiteActive } from "../../support/page_objects/projectConstants"
|
||
3 years ago
|
|
||
3 years ago
|
export const genTest = (type, xcdb) => {
|
||
3 years ago
|
if(!isTestSuiteActive(type, xcdb)) return;
|
||
3 years ago
|
|
||
|
describe(`${type.toUpperCase()} api - Table Column`, () => {
|
||
3 years ago
|
const name = 'tablex'
|
||
|
const colName = 'column_name_a'
|
||
3 years ago
|
const updatedColName = 'updated_column_name'
|
||
3 years ago
|
const randVal = 'Test'
|
||
|
const updatedRandVal = 'Updated'
|
||
3 years ago
|
|
||
|
before(() => {
|
||
3 years ago
|
// loginPage.loginAndOpenProject(type)
|
||
3 years ago
|
cy.createTable(name)
|
||
|
});
|
||
|
|
||
|
// delete table
|
||
|
after(() => {
|
||
|
cy.deleteTable(name)
|
||
|
});
|
||
|
|
||
|
it('Create Table Column', () => {
|
||
|
cy.get(`.project-tab:contains(${name}):visible`).should('exist')
|
||
3 years ago
|
mainPage.addColumn(colName)
|
||
3 years ago
|
|
||
3 years ago
|
cy.get(`th:contains(${colName})`).should('exist');
|
||
3 years ago
|
|
||
3 years ago
|
// wait for pop up's to exit
|
||
|
cy.wait(3000)
|
||
|
})
|
||
3 years ago
|
|
||
|
// edit the newly created column
|
||
3 years ago
|
it('Edit table column - change datatype', () => {
|
||
3 years ago
|
cy.get(`th:contains(${colName}) .mdi-menu-down`)
|
||
3 years ago
|
.trigger('mouseover', {force: true})
|
||
|
.click({force: true})
|
||
|
|
||
|
cy.get('.nc-column-edit').click()
|
||
|
|
||
|
// change column type and verify
|
||
|
cy.get('.nc-ui-dt-dropdown').click()
|
||
|
cy.contains('LongText').click()
|
||
|
cy.get('.nc-col-create-or-edit-card').contains('Save').click()
|
||
|
|
||
3 years ago
|
cy.get(`th[data-col="${colName}"] .mdi-text-subject`).should('exist')
|
||
3 years ago
|
|
||
3 years ago
|
cy.get(`th:contains(${colName}) .mdi-menu-down`)
|
||
3 years ago
|
.trigger('mouseover', {force: true})
|
||
|
.click({force: true})
|
||
|
|
||
|
cy.get('.nc-column-edit').click()
|
||
|
})
|
||
|
|
||
|
// edit the newly created column
|
||
|
it('Edit table column - rename', () => {
|
||
3 years ago
|
cy.get(`th:contains(${colName}) .mdi-menu-down`)
|
||
3 years ago
|
.trigger('mouseover', {force: true})
|
||
|
.click({force: true})
|
||
|
|
||
3 years ago
|
cy.get('.nc-column-edit').click()
|
||
|
|
||
3 years ago
|
// rename column and verify
|
||
3 years ago
|
cy.get('.nc-column-name-input input').clear().type(updatedColName)
|
||
3 years ago
|
cy.get('.nc-col-create-or-edit-card').contains('Save').click()
|
||
|
|
||
3 years ago
|
cy.wait(3000)
|
||
3 years ago
|
|
||
3 years ago
|
cy.get(`th:contains(${colName})`).should('not.exist')
|
||
|
cy.get(`th:contains(${updatedColName})`).should('exist')
|
||
3 years ago
|
})
|
||
|
|
||
|
// delete the newly created column
|
||
|
it('Delete table column', () => {
|
||
3 years ago
|
cy.get(`th:contains(${updatedColName})`).should('exist');
|
||
3 years ago
|
|
||
3 years ago
|
cy.get(`th:contains(${updatedColName}) .mdi-menu-down`)
|
||
3 years ago
|
.trigger('mouseover')
|
||
|
.click()
|
||
|
|
||
|
cy.get('.nc-column-delete').click()
|
||
|
cy.get('button:contains(Confirm)').click()
|
||
|
|
||
3 years ago
|
cy.get(`th:contains(${updatedColName})`).should('not.exist');
|
||
|
})
|
||
3 years ago
|
|
||
|
it('Add new row', () => {
|
||
|
cy.wait(2000)
|
||
|
cy.get('.nc-add-new-row-btn').click({force: true});
|
||
|
cy.get('#data-table-form-Title > input').first().type(randVal);
|
||
|
cy.contains('Save Row').filter('button').click({force: true})
|
||
|
cy.get('td', {timeout: 10000}).contains(randVal).should('exist');
|
||
|
})
|
||
|
|
||
|
it('Update row', () => {
|
||
|
cy.get('td').contains(randVal)
|
||
|
.closest('tr')
|
||
|
.find('.nc-row-expand-icon')
|
||
|
.click({force: true});
|
||
|
|
||
|
cy.get('#data-table-form-Title > input').first().clear().type(updatedRandVal);
|
||
|
cy.contains('Save Row').filter('button').click({force: true})
|
||
|
|
||
|
cy.wait(3000)
|
||
|
cy.get('td').contains(randVal).should('not.exist');
|
||
|
cy.get('td').contains(updatedRandVal).should('exist');
|
||
|
})
|
||
|
|
||
|
it('Delete row', () => {
|
||
|
cy.get('td').contains(updatedRandVal).rightclick({force: true})
|
||
|
|
||
|
// delete row
|
||
|
cy.getActiveMenu().find('.v-list-item:contains("Delete Row")').first().click({force: true})
|
||
|
cy.wait(1000)
|
||
|
cy.get('td').contains(randVal).should('not.exist');
|
||
|
})
|
||
3 years ago
|
})
|
||
3 years ago
|
}
|
||
|
|
||
3 years ago
|
// genTest('rest', false)
|
||
|
// genTest('graphql', false)
|
||
3 years ago
|
|
||
3 years ago
|
/**
|
||
|
* @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/>.
|
||
|
*
|
||
|
*/
|
||
|
|