|
|
|
@ -86,20 +86,35 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
loginPage.signIn(roles.owner.credentials); |
|
|
|
|
projectsPage.openProject("sample"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// kludge: wait for page load to finish
|
|
|
|
|
cy.wait(2000); |
|
|
|
|
// close team & auth tab
|
|
|
|
|
cy.get('button.ant-tabs-tab-remove').should('exist').click(); |
|
|
|
|
cy.wait(1000); |
|
|
|
|
|
|
|
|
|
cy.saveLocalStorage(); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
beforeEach(() => { |
|
|
|
|
cy.restoreLocalStorage(); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
after(() => {}); |
|
|
|
|
|
|
|
|
|
it("Verify Schema", () => { |
|
|
|
|
cy.openTableTab("Film", 3) |
|
|
|
|
|
|
|
|
|
// verify if all tables exist
|
|
|
|
|
for(let i=0; i<tn.length; i++) |
|
|
|
|
cy.get(".nc-project-tree").contains(tn[i]).should('exist') |
|
|
|
|
for(let i=0; i<tn.length; i++) { |
|
|
|
|
cy.get(`.nc-project-tree-tbl-${tn[i]}`).should('exist') |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// for Film table, verify columns
|
|
|
|
|
for(let i=0; i<columnCount; i++) |
|
|
|
|
cy.get(".nc-grid-header-row").find(`[data-col="${cn[i]}"]`).should('exist') |
|
|
|
|
for(let i=0; i<columnCount; i++) { |
|
|
|
|
cy.get(`th[data-title="${cn[i]}"]`).should("exist"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -114,20 +129,22 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
// checkbox
|
|
|
|
|
mainPage |
|
|
|
|
.getCell("Done", cellIdx) |
|
|
|
|
.find(".mdi-check-circle-outline") |
|
|
|
|
.should(records2.Done ? "exist" : "not.exist"); |
|
|
|
|
.find(".nc-cell-hover-show") |
|
|
|
|
.should(records2.Done ? "not.exist" : "exist"); |
|
|
|
|
|
|
|
|
|
// date
|
|
|
|
|
|
|
|
|
|
// duration
|
|
|
|
|
mainPage.getCell("Duration", cellIdx).find('input').then(($e) => { |
|
|
|
|
expect($e[0].value).to.equal(records2.Duration) |
|
|
|
|
}) |
|
|
|
|
// mainPage.getCell("Duration", cellIdx).find('input').then(($e) => {
|
|
|
|
|
// expect($e[0].value).to.equal(records2.Duration)
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
mainPage.getCell("Duration", cellIdx).contains(records2.Duration).should("exist"); |
|
|
|
|
|
|
|
|
|
// rating
|
|
|
|
|
mainPage |
|
|
|
|
.getCell("Rating", cellIdx) |
|
|
|
|
.find("button.mdi-star") |
|
|
|
|
.find(".ant-rate-star-full") |
|
|
|
|
.should("have.length", records2.Rating); |
|
|
|
|
|
|
|
|
|
// verifying only one instance as its different for PG & SQLite
|
|
|
|
@ -136,10 +153,11 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
// LinkToAnotherRecord
|
|
|
|
|
mainPage.getCell("Actor", cellIdx).scrollIntoView(); |
|
|
|
|
cy.get( |
|
|
|
|
`:nth-child(${cellIdx}) > [data-col="Actor"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(1) > .v-chip__content > .name` |
|
|
|
|
`[data-title="Actor"] > :nth-child(${cellIdx}) > .nc-virtual-cell > .w-full > .chips > :nth-child(1) > .name` |
|
|
|
|
) |
|
|
|
|
.contains(records2.Actor[0]) |
|
|
|
|
.should("exist"); |
|
|
|
|
|
|
|
|
|
// cy.get(
|
|
|
|
|
// `:nth-child(${cellIdx}) > [data-col="Actor"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(2) > .v-chip__content > .name`
|
|
|
|
|
// )
|
|
|
|
@ -148,9 +166,12 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
|
|
|
|
|
// lookup
|
|
|
|
|
mainPage.getCell("Status (from Actor)", cellIdx).scrollIntoView(); |
|
|
|
|
cy.get( |
|
|
|
|
`:nth-child(${cellIdx}) > [data-col="Status (from Actor)"] > .nc-virtual-cell > .v-lazy > .d-flex > :nth-child(1) > .v-chip__content > div > .set-item` |
|
|
|
|
) |
|
|
|
|
// cy.get(
|
|
|
|
|
// `:nth-child(${cellIdx}) > [data-col="Status (from Actor)"] > .nc-virtual-cell > .v-lazy > .d-flex > :nth-child(1) > .v-chip__content > div > .set-item`
|
|
|
|
|
// )
|
|
|
|
|
// .contains(records2["Status (from Actor)"][0])
|
|
|
|
|
// .should("exist");
|
|
|
|
|
cy.get(`[data-title="Status (from Actor)"] > :nth-child(${cellIdx}) > .nc-virtual-cell > .flex > :nth-child(1) > .nc-cell > .ant-select > .ant-select-selector > .ant-select-selection-item > .ant-tag`) |
|
|
|
|
.contains(records2["Status (from Actor)"][0]) |
|
|
|
|
.should("exist"); |
|
|
|
|
// cy.get(
|
|
|
|
@ -163,30 +184,34 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
if( testMode === 'CY_QUICK') { |
|
|
|
|
|
|
|
|
|
mainPage.getCell("RollUp", cellIdx).scrollIntoView(); |
|
|
|
|
cy.get(`:nth-child(${cellIdx}) > [data-col="RollUp"] > .nc-virtual-cell`) |
|
|
|
|
.contains(records2.RollUp) |
|
|
|
|
.should("exist"); |
|
|
|
|
mainPage.getCell("RollUp", cellIdx).contains(records2.RollUp).should("exist"); |
|
|
|
|
// cy.get(`:nth-child(${cellIdx}) > [data-title="RollUp"] > .nc-virtual-cell`)
|
|
|
|
|
// .contains(records2.RollUp)
|
|
|
|
|
// .should("exist");
|
|
|
|
|
|
|
|
|
|
// formula
|
|
|
|
|
mainPage.getCell("Computation", cellIdx).scrollIntoView(); |
|
|
|
|
cy.get( |
|
|
|
|
`:nth-child(${cellIdx}) > [data-col="Computation"] > .nc-virtual-cell` |
|
|
|
|
) |
|
|
|
|
.contains(records2.Computation) |
|
|
|
|
.should("exist"); |
|
|
|
|
mainPage.getCell("Computation", cellIdx).contains(records2.Computation).should("exist"); |
|
|
|
|
// cy.get(
|
|
|
|
|
// `:nth-child(${cellIdx}) > [data-title="Computation"] > .nc-virtual-cell`
|
|
|
|
|
// )
|
|
|
|
|
// .contains(records2.Computation)
|
|
|
|
|
// .should("exist");
|
|
|
|
|
|
|
|
|
|
// ltar hm relation
|
|
|
|
|
mainPage.getCell("Producer", cellIdx).scrollIntoView(); |
|
|
|
|
cy.get( |
|
|
|
|
`:nth-child(${cellIdx}) > [data-col="Producer"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(1) > .v-chip__content > .name` |
|
|
|
|
) |
|
|
|
|
.contains(records2.Producer[0]) |
|
|
|
|
.should("exist"); |
|
|
|
|
cy.get( |
|
|
|
|
`:nth-child(${cellIdx}) > [data-col="Producer"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(2) > .v-chip__content > .name` |
|
|
|
|
) |
|
|
|
|
.contains(records2.Producer[1]) |
|
|
|
|
.should("exist"); |
|
|
|
|
mainPage.getCell("Producer", cellIdx).find('.chip').eq(0).contains(records2.Producer[0]).should('exist') |
|
|
|
|
mainPage.getCell("Producer", cellIdx).find('.chip').eq(1).contains(records2.Producer[1]).should('exist') |
|
|
|
|
// cy.get(
|
|
|
|
|
// `:nth-child(${cellIdx}) > [data-title="Producer"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(1) > .v-chip__content > .name`
|
|
|
|
|
// )
|
|
|
|
|
// .contains(records2.Producer[0])
|
|
|
|
|
// .should("exist");
|
|
|
|
|
// cy.get(
|
|
|
|
|
// `:nth-child(${cellIdx}) > [data-title="Producer"] > .nc-virtual-cell > .v-lazy > .d-100 > .chips > :nth-child(2) > .v-chip__content > .name`
|
|
|
|
|
// )
|
|
|
|
|
// .contains(records2.Producer[1])
|
|
|
|
|
// .should("exist");
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
cy.closeTableTab("Film"); |
|
|
|
@ -194,55 +219,78 @@ export const genTest = (apiType, dbType, testMode) => {
|
|
|
|
|
|
|
|
|
|
it("Verify Views & Shared base", () => { |
|
|
|
|
cy.openTableTab("Film", 3); |
|
|
|
|
mainPage.toggleRightSidebar(); |
|
|
|
|
cy.get('.nc-form-view-item').eq(0) |
|
|
|
|
.click({ force: true }) |
|
|
|
|
|
|
|
|
|
// Header & description should exist
|
|
|
|
|
// cy.get(".nc-form")
|
|
|
|
|
// .find('[placeholder="Form Title"]')
|
|
|
|
|
// .contains("FormTitle")
|
|
|
|
|
// .should("exist");
|
|
|
|
|
// cy.get(".nc-form")
|
|
|
|
|
// .find('[placeholder="Add form description"]')
|
|
|
|
|
// .contains("FormDescription")
|
|
|
|
|
// .should("exist");
|
|
|
|
|
|
|
|
|
|
cy.get(".nc-form").should("exist"); |
|
|
|
|
|
|
|
|
|
cy.get(".nc-form") |
|
|
|
|
.find('[placeholder="Form Title"]') |
|
|
|
|
.contains("FormTitle") |
|
|
|
|
.should("exist"); |
|
|
|
|
.find('[placeholder="Form Title"]') |
|
|
|
|
.should("exist").then(($el) => { |
|
|
|
|
cy.log($el) |
|
|
|
|
expect($el.val()).to.equal("FormTitle"); |
|
|
|
|
}) |
|
|
|
|
cy.get(".nc-form") |
|
|
|
|
.find('[placeholder="Add form description"]') |
|
|
|
|
.contains("FormDescription") |
|
|
|
|
.should("exist"); |
|
|
|
|
.find('[placeholder="Add form description"]') |
|
|
|
|
.should("exist").then(($el) => { |
|
|
|
|
cy.log($el) |
|
|
|
|
expect($el.val()).to.equal("FormDescription"); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// modified column name & help text
|
|
|
|
|
cy.get(".nc-field-wrapper").eq(0) |
|
|
|
|
.find('.nc-field-labels') |
|
|
|
|
cy.get(".nc-editable").eq(0) |
|
|
|
|
.find('.name') |
|
|
|
|
.contains("DisplayName") |
|
|
|
|
.should('exist') |
|
|
|
|
cy.get(".nc-field-wrapper").eq(0) |
|
|
|
|
.find('.nc-hint') |
|
|
|
|
cy.get(".nc-editable").eq(0) |
|
|
|
|
.find('.text-gray-500') |
|
|
|
|
.contains('HelpText') |
|
|
|
|
.should('exist') |
|
|
|
|
|
|
|
|
|
cy.get(".nc-field-wrapper").eq(1) |
|
|
|
|
.find('.nc-field-labels') |
|
|
|
|
cy.get(".nc-editable").eq(1) |
|
|
|
|
.find('.name') |
|
|
|
|
.contains("Email") |
|
|
|
|
.should('exist') |
|
|
|
|
|
|
|
|
|
// add message
|
|
|
|
|
cy.get(".nc-form > .mx-auto") |
|
|
|
|
.find("textarea").then(($element) => { |
|
|
|
|
expect($element[0].value).to.have.string("Thank you for submitting the form!") |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// submit another form button
|
|
|
|
|
cy.get(".nc-form > .mx-auto") |
|
|
|
|
.find('[type="checkbox"]') |
|
|
|
|
.eq(0) |
|
|
|
|
.should('be.checked') |
|
|
|
|
// "New form after 5 seconds" button
|
|
|
|
|
cy.get(".nc-form > .mx-auto") |
|
|
|
|
.find('[type="checkbox"]') |
|
|
|
|
.eq(1) |
|
|
|
|
.should('be.checked') |
|
|
|
|
// email me
|
|
|
|
|
cy.get(".nc-form > .mx-auto") |
|
|
|
|
.find('[type="checkbox"]') |
|
|
|
|
.eq(2) |
|
|
|
|
.should('not.be.checked') |
|
|
|
|
cy.get("textarea.nc-form-after-submit-msg").then(($element) => { |
|
|
|
|
expect($element[0].value).to.have.string("Thank you for submitting the form!") |
|
|
|
|
}) |
|
|
|
|
// cy.get(".nc-form > .mx-auto")
|
|
|
|
|
// .find("textarea").then(($element) => {
|
|
|
|
|
// expect($element[0].value).to.have.string("Thank you for submitting the form!")
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
cy.get("button.nc-form-checkbox-submit-another-form.ant-switch-checked").should('exist') |
|
|
|
|
cy.get("button.nc-form-checkbox-show-blank-form.ant-switch-checked").should('exist') |
|
|
|
|
cy.get("button.nc-form-checkbox-send-email.ant-switch-checked").should('not.exist') |
|
|
|
|
|
|
|
|
|
// // submit another form button
|
|
|
|
|
// cy.get(".nc-form > .mx-auto")
|
|
|
|
|
// .find('[type="checkbox"]')
|
|
|
|
|
// .eq(0)
|
|
|
|
|
// .should('be.checked')
|
|
|
|
|
// // "New form after 5 seconds" button
|
|
|
|
|
// cy.get(".nc-form > .mx-auto")
|
|
|
|
|
// .find('[type="checkbox"]')
|
|
|
|
|
// .eq(1)
|
|
|
|
|
// .should('be.checked')
|
|
|
|
|
// // email me
|
|
|
|
|
// cy.get(".nc-form > .mx-auto")
|
|
|
|
|
// .find('[type="checkbox"]')
|
|
|
|
|
// .eq(2)
|
|
|
|
|
// .should('not.be.checked')
|
|
|
|
|
|
|
|
|
|
cy.closeTableTab("Film"); |
|
|
|
|
}); |
|
|
|
|