mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 00:57:13 +00:00
[test] cypress: download csv base view/ shared view verification
Signed-off-by: Raju Udava <sivadstala@gmail.com>
This commit is contained in:
@@ -148,7 +148,21 @@ export const genTest = (type, xcdb) => {
|
||||
mainPage.getCell("District", 1).contains("West Bengali").should('exist')
|
||||
mainPage.getCell("District", 2).contains("Tutuila").should('exist')
|
||||
mainPage.getCell("District", 3).contains("Tamil Nadu").should('exist')
|
||||
})
|
||||
})
|
||||
|
||||
it(`Share ${viewType.toUpperCase()} view : verify download CSV`, () => {
|
||||
// expected output, statically configured
|
||||
let storedRecords = [
|
||||
`Address,District,PostalCode,Phone,Location,LastUpdate,Address => Customer,Address => Staff,City <= Address,Address <=> Staff`,
|
||||
`1013 Tabuk Boulevard,West Bengali,96203,158399646978,[object Object],2014-09-25T17:01:19.000Z,2,,Kanchrapara,`,
|
||||
`1892 Nabereznyje Telny Lane,Tutuila,28396,478229987054,[object Object],2014-09-25T17:00:02.000Z,2,,Tafuna,`,
|
||||
`1993 Tabuk Lane,Tamil Nadu,64221,648482415405,[object Object],2014-09-25T17:01:27.000Z,2,,Tambaram,`,
|
||||
`1661 Abha Drive,Tamil Nadu,14400,270456873752,[object Object],2014-09-25T17:01:23.000Z,1,,Pudukkottai,`
|
||||
]
|
||||
|
||||
// download & verify
|
||||
mainPage.downloadAndVerifyCsv(`Address_exported_1.csv`, storedRecords)
|
||||
})
|
||||
|
||||
// it(`Share ${viewType} view generate URL with all fields enabled`, () => {
|
||||
// cy.get(`.nc-view-item.nc-${viewType}-view-item`).contains('Country1').click()
|
||||
@@ -274,6 +288,17 @@ export const genTest = (type, xcdb) => {
|
||||
mainPage.getCell("District", 1).contains("Tamil").should('exist')
|
||||
})
|
||||
|
||||
it.skip(`Share ${viewType.toUpperCase()} view : verify download CSV after local filter`, () => {
|
||||
let storedRecords = [
|
||||
`Address,District,PostalCode,Phone,Location,LastUpdate,Address => Customer,Address => Staff,City <= Address,Address <=> Staff`,
|
||||
`1013 Tabuk Boulevard,West Bengali,96203,158399646978,[object Object],2014-09-25T17:01:19.000Z,2,,Kanchrapara,`,
|
||||
`1892 Nabereznyje Telny Lane,Tutuila,28396,478229987054,[object Object],2014-09-25T17:00:02.000Z,2,,Tafuna,`,
|
||||
`1993 Tabuk Lane,Tamil Nadu,64221,648482415405,[object Object],2014-09-25T17:01:27.000Z,2,,Tambaram,`,
|
||||
`1661 Abha Drive,Tamil Nadu,14400,270456873752,[object Object],2014-09-25T17:01:23.000Z,1,,Pudukkottai,`
|
||||
]
|
||||
mainPage.downloadAndVerifyCsv(`Address_exported_1.csv`, storedRecords)
|
||||
})
|
||||
|
||||
it(`Share ${viewType.toUpperCase()} view : Delete Filter`, () => {
|
||||
// Remove sort and Validate
|
||||
mainPage.filterReset()
|
||||
|
||||
Reference in New Issue
Block a user