Try to fix cypress tests

This commit is contained in:
Andrew Kingston 2022-02-23 13:14:28 +00:00
parent 54ce2d7370
commit fa6cf0c101
5 changed files with 851 additions and 698 deletions

View File

@ -1,6 +1,6 @@
import filterTests from "../support/filterTests" import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => { filterTests(["smoke", "all"], () => {
context("Create a Table", () => { context("Create a Table", () => {
before(() => { before(() => {
cy.login() cy.login()
@ -71,14 +71,14 @@ filterTests(['smoke', 'all'], () => {
// Delete rows, removing second page of rows from table // Delete rows, removing second page of rows from table
const deleteRows = 5 const deleteRows = 5
cy.get(".spectrum-Checkbox-input").check({ force: true }) cy.get(".spectrum-Checkbox-input").check({ force: true })
cy.get(".spectrum-Table-body") cy.get(".spectrum-Table")
cy.contains("Delete 5 row(s)").click() cy.contains("Delete 5 row(s)").click()
cy.get(".spectrum-Modal").contains("Delete").click() cy.get(".spectrum-Modal").contains("Delete").click()
cy.wait(1000) cy.wait(1000)
// Confirm table only has one page // Confirm table only has one page
cy.get(".spectrum-Pagination").within(() => { cy.get(".spectrum-Pagination").within(() => {
cy.get(".spectrum-ActionButton").eq(1).should('not.be.enabled') cy.get(".spectrum-ActionButton").eq(1).should("not.be.enabled")
}) })
}) })
} }

View File

@ -1,7 +1,6 @@
import filterTests from "../support/filterTests" import filterTests from "../support/filterTests"
filterTests(["smoke", "all"], () => {
filterTests(['smoke', 'all'], () => {
context("Create a User and Assign Roles", () => { context("Create a User and Assign Roles", () => {
before(() => { before(() => {
cy.login() cy.login()
@ -9,7 +8,7 @@ filterTests(['smoke', 'all'], () => {
it("should create a user", () => { it("should create a user", () => {
cy.createUser("bbuser@test.com") cy.createUser("bbuser@test.com")
cy.get(".spectrum-Table-body").should('contain', 'bbuser') cy.get(".spectrum-Table").should("contain", "bbuser")
}) })
it("should confirm there is No Access for a New User", () => { it("should confirm there is No Access for a New User", () => {
@ -17,9 +16,9 @@ filterTests(['smoke', 'all'], () => {
cy.contains("bbuser").click() cy.contains("bbuser").click()
cy.wait(500) cy.wait(500)
// Get No Access table - Confirm it has apps in it // Get No Access table - Confirm it has apps in it
cy.get(".spectrum-Table").eq(1).should('not.contain', 'No rows found') cy.get(".spectrum-Table").eq(1).should("not.contain", "No rows found")
// Get Configure Roles table - Confirm it has no apps // Get Configure Roles table - Confirm it has no apps
cy.get(".spectrum-Table").eq(0).contains('No rows found') cy.get(".spectrum-Table").eq(0).contains("No rows found")
}) })
it("should assign role types", () => { it("should assign role types", () => {
@ -43,9 +42,16 @@ filterTests(['smoke', 'all'], () => {
cy.get(".spectrum-Table").contains("bbuser").click() cy.get(".spectrum-Table").contains("bbuser").click()
cy.wait(1000) cy.wait(1000)
for (let i = 0; i < 3; i++) { for (let i = 0; i < 3; i++) {
cy.get(".spectrum-Table-body").eq(1).find('tr').eq(0).click() cy.get(".spectrum-Table")
.eq(1)
.find(".spectrum-Table-row")
.eq(0)
.click()
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Dialog-grid").contains("Choose an option").click().then(() => { cy.get(".spectrum-Dialog-grid")
.contains("Choose an option")
.click()
.then(() => {
cy.wait(500) cy.wait(500)
if (i == 0) { if (i == 0) {
cy.get(".spectrum-Popover").contains("Admin").click() cy.get(".spectrum-Popover").contains("Admin").click()
@ -57,12 +63,16 @@ filterTests(['smoke', 'all'], () => {
cy.get(".spectrum-Popover").contains("Basic").click() cy.get(".spectrum-Popover").contains("Basic").click()
} }
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Button").contains("Update role").click({ force: true }) cy.get(".spectrum-Button")
.contains("Update role")
.click({ force: true })
}) })
} }
// Confirm roles exist within Configure roles table // Confirm roles exist within Configure roles table
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Table-body").eq(0).within((assginedRoles) => { cy.get(".spectrum-Table")
.eq(0)
.within(assginedRoles => {
expect(assginedRoles).to.contain("Admin") expect(assginedRoles).to.contain("Admin")
expect(assginedRoles).to.contain("Power") expect(assginedRoles).to.contain("Power")
expect(assginedRoles).to.contain("Basic") expect(assginedRoles).to.contain("Basic")
@ -71,35 +81,59 @@ filterTests(['smoke', 'all'], () => {
it("should unassign role types", () => { it("should unassign role types", () => {
// Set each app within Configure roles table to 'No Access' // Set each app within Configure roles table to 'No Access'
cy.get(".spectrum-Table-body").eq(0).find('tr').its('length').then((len) => { cy.get(".spectrum-Table")
.eq(0)
.find(".spectrum-Table-row")
.its("length")
.then(len => {
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {
cy.get(".spectrum-Table-body").eq(0).find('tr').eq(0).click().then(() => { cy.get(".spectrum-Table")
.eq(0)
.find(".spectrum-Table-row")
.eq(0)
.click()
.then(() => {
cy.get(".spectrum-Picker").eq(1).click({ force: true }) cy.get(".spectrum-Picker").eq(1).click({ force: true })
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Popover").contains("No Access").click() cy.get(".spectrum-Popover").contains("No Access").click()
}) })
cy.get(".spectrum-Button").contains("Update role").click({ force: true }) cy.get(".spectrum-Button")
.contains("Update role")
.click({ force: true })
cy.wait(1000) cy.wait(1000)
} }
}) })
// Confirm Configure roles table no longer has any apps in it // Confirm Configure roles table no longer has any apps in it
cy.get(".spectrum-Table-body").eq(0).contains('No rows found') cy.get(".spectrum-Table").eq(0).contains("No rows found")
}) })
it("should enable Developer access", () => { it("should enable Developer access", () => {
// Enable Developer access // Enable Developer access
cy.get(".field").eq(4).within(() => { cy.get(".field")
.eq(4)
.within(() => {
cy.get(".spectrum-Switch-input").click({ force: true }) cy.get(".spectrum-Switch-input").click({ force: true })
}) })
// No Access table should now be empty // No Access table should now be empty
cy.get(".container").contains("No Access").parent().within(() => { cy.get(".container")
.contains("No Access")
.parent()
.within(() => {
cy.get(".spectrum-Table").contains("No rows found") cy.get(".spectrum-Table").contains("No rows found")
}) })
// Each app within Configure roles should have Admin access // Each app within Configure roles should have Admin access
cy.get(".spectrum-Table-body").eq(0).find('tr').its('length').then((len) => { cy.get(".spectrum-Table")
.eq(0)
.find(".spectrum-Table-row")
.its("length")
.then(len => {
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {
cy.get(".spectrum-Table-body").eq(0).find('tr').eq(i).contains("Admin") cy.get(".spectrum-Table")
.eq(0)
.find(".spectrum-Table-row")
.eq(i)
.contains("Admin")
cy.wait(500) cy.wait(500)
} }
}) })
@ -107,26 +141,36 @@ filterTests(['smoke', 'all'], () => {
it("should disable Developer access", () => { it("should disable Developer access", () => {
// Disable Developer access // Disable Developer access
cy.get(".field").eq(4).within(() => { cy.get(".field")
.eq(4)
.within(() => {
cy.get(".spectrum-Switch-input").click({ force: true }) cy.get(".spectrum-Switch-input").click({ force: true })
}) })
// Configure roles table should now be empty // Configure roles table should now be empty
cy.get(".container").contains("Configure roles").parent().within(() => { cy.get(".container")
.contains("Configure roles")
.parent()
.within(() => {
cy.get(".spectrum-Table").contains("No rows found") cy.get(".spectrum-Table").contains("No rows found")
}) })
}) })
it("should delete a user", () => { it("should delete a user", () => {
// Click Delete user button // Click Delete user button
cy.get(".spectrum-Button").contains("Delete user").click({force: true}).then(() => { cy.get(".spectrum-Button")
.contains("Delete user")
.click({ force: true })
.then(() => {
// Confirm deletion within modal // Confirm deletion within modal
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Button").contains("Delete user").click({force: true}) cy.get(".spectrum-Button")
.contains("Delete user")
.click({ force: true })
cy.wait(4000) cy.wait(4000)
}) })
}) })
cy.get(".spectrum-Table-body").should("not.have.text", "bbuser") cy.get(".spectrum-Table").should("not.have.text", "bbuser")
}) })
}) })
}) })

View File

@ -1,9 +1,8 @@
import filterTests from "../../support/filterTests" import filterTests from "../../support/filterTests"
filterTests(['all'], () => { filterTests(["all"], () => {
context("MySQL Datasource Testing", () => { context("MySQL Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) { if (Cypress.env("TEST_ENV")) {
before(() => { before(() => {
cy.login() cy.login()
cy.createTestApp() cy.createTestApp()
@ -16,44 +15,52 @@ filterTests(['all'], () => {
// Select MySQL data source // Select MySQL data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
// Attempt to fetch tables without applying configuration // Attempt to fetch tables without applying configuration
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.get(".spectrum-Button") cy.get(".spectrum-Button")
.contains("Save and fetch tables") .contains("Save and fetch tables")
.click({ force: true }) .click({ force: true })
// Intercept Request after button click & apply assertions // Intercept Request after button click & apply assertions
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.body') cy.get("@datasource")
.should('have.property', 'message', 'connect ECONNREFUSED 127.0.0.1:3306') .its("response.body")
cy.get("@datasource").its('response.body') .should(
.should('have.property', 'status', 500) "have.property",
"message",
"connect ECONNREFUSED 127.0.0.1:3306"
)
cy.get("@datasource")
.its("response.body")
.should("have.property", "status", 500)
}) })
it("should add MySQL data source and fetch tables", () => { it("should add MySQL data source and fetch tables", () => {
// Add & configure MySQL data source // Add & configure MySQL data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.addDatasourceConfig(datasource) cy.addDatasourceConfig(datasource)
// Check response from datasource after adding configuration // Check response from datasource after adding configuration
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.statusCode') cy.get("@datasource").its("response.statusCode").should("eq", 200)
.should('eq', 200)
// Confirm fetch tables was successful // Confirm fetch tables was successful
cy.get(".spectrum-Table-body").eq(0) cy.get(".spectrum-Table")
.find('tr') .eq(0)
.its('length') .find(".spectrum-Table-row")
.should('be.gt', 0) .its("length")
.should("be.gt", 0)
}) })
it("should check table fetching error", () => { it("should check table fetching error", () => {
// MySQL test data source contains tables without primary keys // MySQL test data source contains tables without primary keys
cy.get(".spectrum-InLineAlert") cy.get(".spectrum-InLineAlert")
.should('contain', 'Error fetching tables') .should("contain", "Error fetching tables")
.and('contain', 'No primary key constraint found') .and("contain", "No primary key constraint found")
}) })
it("should define a One relationship type", () => { it("should define a One relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("One").click() cy.get(".spectrum-Popover").contains("One").click()
@ -70,16 +77,19 @@ filterTests(['all'], () => {
cy.reload() cy.reload()
}) })
// Confirm table length & column name // Confirm table length & column name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 1) .its("length")
cy.get(".spectrum-Table-cell").should('contain', "COUNTRIES to REGIONS") .should("eq", 1)
cy.get(".spectrum-Table-cell").should("contain", "COUNTRIES to REGIONS")
}) })
it("should define a Many relationship type", () => { it("should define a Many relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("Many").click() cy.get(".spectrum-Popover").contains("Many").click()
@ -99,92 +109,113 @@ filterTests(['all'], () => {
cy.wait(1000) cy.wait(1000)
}) })
// Confirm table length & relationship name // Confirm table length & relationship name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 2) .its("length")
cy.get(".spectrum-Table-cell") .should("eq", 2)
.should('contain', "LOCATIONS through COUNTRIES → REGIONS") cy.get(".spectrum-Table-cell").should(
"contain",
"LOCATIONS through COUNTRIES → REGIONS"
)
}) })
it("should delete relationships", () => { it("should delete relationships", () => {
// Delete both relationships // Delete both relationships
cy.get(".spectrum-Table-body") cy.get(".spectrum-Table")
.eq(1).find('tr').its('length') .eq(1)
.then((len) => { .find(".spectrum-Table-row")
.its("length")
.then(len => {
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {
cy.get(".spectrum-Table-body").eq(1).within(() => { cy.get(".spectrum-Table")
.eq(1)
.within(() => {
cy.get(".spectrum-Table-row").eq(0).click() cy.get(".spectrum-Table-row").eq(0).click()
cy.wait(500) cy.wait(500)
}) })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Button").contains("Delete").click({ force: true }) cy.get(".spectrum-Button")
.contains("Delete")
.click({ force: true })
}) })
cy.reload() cy.reload()
} }
// Confirm relationships no longer exist // Confirm relationships no longer exist
cy.get(".spectrum-Body").should('contain', 'No relationships configured') cy.get(".spectrum-Body").should(
"contain",
"No relationships configured"
)
}) })
}) })
it("should add a query", () => { it("should add a query", () => {
// Add query // Add query
cy.get(".spectrum-Button").contains("Add query").click({ force: true }) cy.get(".spectrum-Button").contains("Add query").click({ force: true })
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").type(queryName) cy.get("input").type(queryName)
}) })
// Insert Query within Fields section // Insert Query within Fields section
cy.get(".CodeMirror textarea").eq(0) cy.get(".CodeMirror textarea")
.eq(0)
.type("SELECT * FROM books", { force: true }) .type("SELECT * FROM books", { force: true })
// Intercept query execution // Intercept query execution
cy.intercept('**/queries/preview').as('query') cy.intercept("**/queries/preview").as("query")
cy.get(".spectrum-Button").contains("Run Query").click({ force: true }) cy.get(".spectrum-Button").contains("Run Query").click({ force: true })
cy.wait(500) cy.wait(500)
cy.wait("@query") cy.wait("@query")
// Assert against Status Code & Body // Assert against Status Code & Body
cy.get("@query").its('response.statusCode') cy.get("@query").its("response.statusCode").should("eq", 200)
.should('eq', 200) cy.get("@query").its("response.body").should("not.be.empty")
cy.get("@query").its('response.body')
.should('not.be.empty')
// Save query // Save query
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".nav-item").should('contain', queryName) cy.get(".nav-item").should("contain", queryName)
}) })
it("should duplicate a query", () => { it("should duplicate a query", () => {
// Get last nav item - The query // Get last nav item - The query
cy.get(".nav-item").last().within(() => { cy.get(".nav-item")
.last()
.within(() => {
cy.get(".icon").eq(1).click({ force: true }) cy.get(".icon").eq(1).click({ force: true })
}) })
// Select and confirm duplication // Select and confirm duplication
cy.get(".spectrum-Menu").contains("Duplicate").click() cy.get(".spectrum-Menu").contains("Duplicate").click()
cy.get(".nav-item").should('contain', queryName + ' (1)') cy.get(".nav-item").should("contain", queryName + " (1)")
}) })
it("should edit a query name", () => { it("should edit a query name", () => {
// Rename query // Rename query
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").clear().type(queryRename) cy.get("input").clear().type(queryRename)
}) })
// Save query // Save query
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".nav-item").should('contain', queryRename) cy.get(".nav-item").should("contain", queryRename)
}) })
it("should delete a query", () => { it("should delete a query", () => {
// Get last nav item - The query // Get last nav item - The query
for (let i = 0; i < 2; i++) { for (let i = 0; i < 2; i++) {
cy.get(".nav-item").last().within(() => { cy.get(".nav-item")
.last()
.within(() => {
cy.get(".icon").eq(1).click({ force: true }) cy.get(".icon").eq(1).click({ force: true })
}) })
// Select Delete // Select Delete
cy.get(".spectrum-Menu").contains("Delete").click() cy.get(".spectrum-Menu").contains("Delete").click()
cy.get(".spectrum-Button").contains("Delete Query").click({ force: true }) cy.get(".spectrum-Button")
.contains("Delete Query")
.click({ force: true })
cy.wait(1000) cy.wait(1000)
} }
// Confirm deletion // Confirm deletion
cy.get(".nav-item").should('not.contain', queryName) cy.get(".nav-item").should("not.contain", queryName)
cy.get(".nav-item").should('not.contain', queryRename) cy.get(".nav-item").should("not.contain", queryRename)
}) })
} }
}) })

View File

@ -1,9 +1,8 @@
import filterTests from "../../support/filterTests" import filterTests from "../../support/filterTests"
filterTests(['all'], () => { filterTests(["all"], () => {
context("Oracle Datasource Testing", () => { context("Oracle Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) { if (Cypress.env("TEST_ENV")) {
before(() => { before(() => {
cy.login() cy.login()
cy.createTestApp() cy.createTestApp()
@ -16,51 +15,60 @@ filterTests(['all'], () => {
// Select Oracle data source // Select Oracle data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
// Skip table fetch - no config added // Skip table fetch - no config added
cy.get(".spectrum-Button").contains("Skip table fetch").click({ force: true }) cy.get(".spectrum-Button")
.contains("Skip table fetch")
.click({ force: true })
cy.wait(500) cy.wait(500)
// Confirm config contains localhost // Confirm config contains localhost
cy.get(".spectrum-Textfield-input").eq(1).should('have.value', 'localhost') cy.get(".spectrum-Textfield-input")
.eq(1)
.should("have.value", "localhost")
// Add another Oracle data source, configure & skip table fetch // Add another Oracle data source, configure & skip table fetch
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
cy.addDatasourceConfig(datasource, true) cy.addDatasourceConfig(datasource, true)
// Confirm config and no tables // Confirm config and no tables
cy.get(".spectrum-Textfield-input").eq(1).should('have.value', Cypress.env("oracle").HOST) cy.get(".spectrum-Textfield-input")
cy.get(".spectrum-Body").eq(2).should('contain', 'No tables found.') .eq(1)
.should("have.value", Cypress.env("oracle").HOST)
cy.get(".spectrum-Body").eq(2).should("contain", "No tables found.")
}) })
it("Should add Oracle data source and fetch tables without configuration", () => { it("Should add Oracle data source and fetch tables without configuration", () => {
// Select Oracle data source // Select Oracle data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
// Attempt to fetch tables without applying configuration // Attempt to fetch tables without applying configuration
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.get(".spectrum-Button") cy.get(".spectrum-Button")
.contains("Save and fetch tables") .contains("Save and fetch tables")
.click({ force: true }) .click({ force: true })
// Intercept Request after button click & apply assertions // Intercept Request after button click & apply assertions
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.body') cy.get("@datasource")
.should('have.property', 'status', 500) .its("response.body")
.should("have.property", "status", 500)
}) })
it("should add Oracle data source and fetch tables", () => { it("should add Oracle data source and fetch tables", () => {
// Add & configure Oracle data source // Add & configure Oracle data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.addDatasourceConfig(datasource) cy.addDatasourceConfig(datasource)
// Check response from datasource after adding configuration // Check response from datasource after adding configuration
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.statusCode') cy.get("@datasource").its("response.statusCode").should("eq", 200)
.should('eq', 200)
// Confirm fetch tables was successful // Confirm fetch tables was successful
cy.get(".spectrum-Table-body").eq(0) cy.get(".spectrum-Table")
.find('tr') .eq(0)
.its('length') .find(".spectrum-Table-row")
.should('be.gt', 0) .its("length")
.should("be.gt", 0)
}) })
it("should define a One relationship type", () => { it("should define a One relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("One").click() cy.get(".spectrum-Popover").contains("One").click()
@ -77,16 +85,19 @@ filterTests(['all'], () => {
cy.reload() cy.reload()
}) })
// Confirm table length & column name // Confirm table length & column name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 1) .its("length")
cy.get(".spectrum-Table-cell").should('contain', "COUNTRIES to REGIONS") .should("eq", 1)
cy.get(".spectrum-Table-cell").should("contain", "COUNTRIES to REGIONS")
}) })
it("should define a Many relationship type", () => { it("should define a Many relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("Many").click() cy.get(".spectrum-Popover").contains("Many").click()
@ -105,91 +116,114 @@ filterTests(['all'], () => {
cy.reload() cy.reload()
}) })
// Confirm table length & relationship name // Confirm table length & relationship name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 2) .its("length")
cy.get(".spectrum-Table-cell") .should("eq", 2)
.should('contain', "LOCATIONS through COUNTRIES → REGIONS") cy.get(".spectrum-Table-cell").should(
"contain",
"LOCATIONS through COUNTRIES → REGIONS"
)
}) })
it("should delete relationships", () => { it("should delete relationships", () => {
// Delete both relationships // Delete both relationships
cy.get(".spectrum-Table-body") cy.get(".spectrum-Table")
.eq(1).find('tr').its('length') .eq(1)
.then((len) => { .find(".spectrum-Table-row")
.its("length")
.then(len => {
for (let i = 0; i < len; i++) { for (let i = 0; i < len; i++) {
cy.get(".spectrum-Table-body").eq(1).within(() => { cy.get(".spectrum-Table")
.eq(1)
.within(() => {
cy.get(".spectrum-Table-row").eq(0).click() cy.get(".spectrum-Table-row").eq(0).click()
cy.wait(500) cy.wait(500)
}) })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Button").contains("Delete").click({ force: true }) cy.get(".spectrum-Button")
.contains("Delete")
.click({ force: true })
}) })
cy.reload() cy.reload()
} }
// Confirm relationships no longer exist // Confirm relationships no longer exist
cy.get(".spectrum-Body").should('contain', 'No relationships configured') cy.get(".spectrum-Body").should(
"contain",
"No relationships configured"
)
}) })
}) })
it("should add a query", () => { it("should add a query", () => {
// Add query // Add query
cy.get(".spectrum-Button").contains("Add query").click({ force: true }) cy.get(".spectrum-Button").contains("Add query").click({ force: true })
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").type(queryName) cy.get("input").type(queryName)
}) })
// Insert Query within Fields section // Insert Query within Fields section
cy.get(".CodeMirror textarea").eq(0) cy.get(".CodeMirror textarea")
.eq(0)
.type("SELECT * FROM JOBS", { force: true }) .type("SELECT * FROM JOBS", { force: true })
// Intercept query execution // Intercept query execution
cy.intercept('**/queries/preview').as('query') cy.intercept("**/queries/preview").as("query")
cy.get(".spectrum-Button").contains("Run Query").click({ force: true }) cy.get(".spectrum-Button").contains("Run Query").click({ force: true })
cy.wait(500) cy.wait(500)
cy.wait("@query") cy.wait("@query")
// Assert against Status Code & Body // Assert against Status Code & Body
cy.get("@query").its('response.statusCode') cy.get("@query").its("response.statusCode").should("eq", 200)
.should('eq', 200) cy.get("@query").its("response.body").should("not.be.empty")
cy.get("@query").its('response.body')
.should('not.be.empty')
// Save query // Save query
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".nav-item").should('contain', queryName) cy.get(".nav-item").should("contain", queryName)
}) })
it("should duplicate a query", () => { it("should duplicate a query", () => {
// Get query nav item // Get query nav item
cy.get(".nav-item").contains(queryName).parent().within(() => { cy.get(".nav-item")
.contains(queryName)
.parent()
.within(() => {
cy.get(".spectrum-Icon").eq(1).click({ force: true }) cy.get(".spectrum-Icon").eq(1).click({ force: true })
}) })
// Select and confirm duplication // Select and confirm duplication
cy.get(".spectrum-Menu").contains("Duplicate").click() cy.get(".spectrum-Menu").contains("Duplicate").click()
cy.get(".nav-item").should('contain', queryName + ' (1)') cy.get(".nav-item").should("contain", queryName + " (1)")
}) })
it("should edit a query name", () => { it("should edit a query name", () => {
// Rename query // Rename query
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").clear().type(queryRename) cy.get("input").clear().type(queryRename)
}) })
// Save query // Save query
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".nav-item").should('contain', queryRename) cy.get(".nav-item").should("contain", queryRename)
}) })
it("should delete a query", () => { it("should delete a query", () => {
// Get query nav item - QueryName // Get query nav item - QueryName
cy.get(".nav-item").contains(queryName).parent().within(() => { cy.get(".nav-item")
.contains(queryName)
.parent()
.within(() => {
cy.get(".spectrum-Icon").eq(1).click({ force: true }) cy.get(".spectrum-Icon").eq(1).click({ force: true })
}) })
// Select Delete // Select Delete
cy.get(".spectrum-Menu").contains("Delete").click() cy.get(".spectrum-Menu").contains("Delete").click()
cy.get(".spectrum-Button").contains("Delete Query").click({ force: true }) cy.get(".spectrum-Button")
.contains("Delete Query")
.click({ force: true })
cy.wait(1000) cy.wait(1000)
// Confirm deletion // Confirm deletion
cy.get(".nav-item").should('not.contain', queryName) cy.get(".nav-item").should("not.contain", queryName)
}) })
} }
}) })

View File

@ -1,9 +1,8 @@
import filterTests from "../../support/filterTests" import filterTests from "../../support/filterTests"
filterTests(['all'], () => { filterTests(["all"], () => {
context("PostgreSQL Datasource Testing", () => { context("PostgreSQL Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) { if (Cypress.env("TEST_ENV")) {
before(() => { before(() => {
cy.login() cy.login()
cy.createTestApp() cy.createTestApp()
@ -16,37 +15,45 @@ filterTests(['all'], () => {
// Select PostgreSQL data source // Select PostgreSQL data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
// Attempt to fetch tables without applying configuration // Attempt to fetch tables without applying configuration
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.get(".spectrum-Button") cy.get(".spectrum-Button")
.contains("Save and fetch tables") .contains("Save and fetch tables")
.click({ force: true }) .click({ force: true })
// Intercept Request after button click & apply assertions // Intercept Request after button click & apply assertions
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.body') cy.get("@datasource")
.should('have.property', 'message', 'connect ECONNREFUSED 127.0.0.1:5432') .its("response.body")
cy.get("@datasource").its('response.body') .should(
.should('have.property', 'status', 500) "have.property",
"message",
"connect ECONNREFUSED 127.0.0.1:5432"
)
cy.get("@datasource")
.its("response.body")
.should("have.property", "status", 500)
}) })
it("should add PostgreSQL data source and fetch tables", () => { it("should add PostgreSQL data source and fetch tables", () => {
// Add & configure PostgreSQL data source // Add & configure PostgreSQL data source
cy.selectExternalDatasource(datasource) cy.selectExternalDatasource(datasource)
cy.intercept('**/datasources').as('datasource') cy.intercept("**/datasources").as("datasource")
cy.addDatasourceConfig(datasource) cy.addDatasourceConfig(datasource)
// Check response from datasource after adding configuration // Check response from datasource after adding configuration
cy.wait("@datasource") cy.wait("@datasource")
cy.get("@datasource").its('response.statusCode') cy.get("@datasource").its("response.statusCode").should("eq", 200)
.should('eq', 200)
// Confirm fetch tables was successful // Confirm fetch tables was successful
cy.get(".spectrum-Table-body").eq(0) cy.get(".spectrum-Table")
.find('tr') .eq(0)
.its('length') .find(".spectrum-Table-row")
.should('be.gt', 0) .its("length")
.should("be.gt", 0)
}) })
it("should define a One relationship type", () => { it("should define a One relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("One").click() cy.get(".spectrum-Popover").contains("One").click()
@ -63,16 +70,19 @@ filterTests(['all'], () => {
cy.reload() cy.reload()
}) })
// Confirm table length & column name // Confirm table length & column name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 1) .its("length")
cy.get(".spectrum-Table-cell").should('contain', "COUNTRIES to REGIONS") .should("eq", 1)
cy.get(".spectrum-Table-cell").should("contain", "COUNTRIES to REGIONS")
}) })
it("should define a Many relationship type", () => { it("should define a Many relationship type", () => {
// Select relationship type & configure // Select relationship type & configure
cy.get(".spectrum-Button").contains("Define relationship").click({ force: true }) cy.get(".spectrum-Button")
.contains("Define relationship")
.click({ force: true })
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Picker").eq(0).click() cy.get(".spectrum-Picker").eq(0).click()
cy.get(".spectrum-Popover").contains("Many").click() cy.get(".spectrum-Popover").contains("Many").click()
@ -91,19 +101,24 @@ filterTests(['all'], () => {
cy.reload() cy.reload()
}) })
// Confirm table length & relationship name // Confirm table length & relationship name
cy.get(".spectrum-Table-body").eq(1) cy.get(".spectrum-Table")
.find('tr') .eq(1)
.its('length') .find(".spectrum-Table-row")
.should('eq', 2) .its("length")
cy.get(".spectrum-Table-cell") .should("eq", 2)
.should('contain', "LOCATIONS through COUNTRIES → REGIONS") cy.get(".spectrum-Table-cell").should(
"contain",
"LOCATIONS through COUNTRIES → REGIONS"
)
}) })
it("should delete a relationship", () => { it("should delete a relationship", () => {
cy.get(".hierarchy-items-container").contains(datasource).click() cy.get(".hierarchy-items-container").contains(datasource).click()
cy.reload() cy.reload()
// Delete one relationship // Delete one relationship
cy.get(".spectrum-Table-body").eq(1).within(() => { cy.get(".spectrum-Table")
.eq(1)
.within(() => {
cy.get(".spectrum-Table-row").eq(0).click() cy.get(".spectrum-Table-row").eq(0).click()
cy.wait(500) cy.wait(500)
}) })
@ -112,32 +127,36 @@ filterTests(['all'], () => {
}) })
cy.reload() cy.reload()
// Confirm relationship was deleted // Confirm relationship was deleted
cy.get(".spectrum-Table-body") cy.get(".spectrum-Table")
.eq(1).find('tr').its('length').should('eq', 1) .eq(1)
.find(".spectrum-Table-row")
.its("length")
.should("eq", 1)
}) })
it("should add a query", () => { it("should add a query", () => {
// Add query // Add query
cy.get(".spectrum-Button").contains("Add query").click({ force: true }) cy.get(".spectrum-Button").contains("Add query").click({ force: true })
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").type(queryName) cy.get("input").type(queryName)
}) })
// Insert Query within Fields section // Insert Query within Fields section
cy.get(".CodeMirror textarea").eq(0) cy.get(".CodeMirror textarea")
.eq(0)
.type("SELECT * FROM books", { force: true }) .type("SELECT * FROM books", { force: true })
// Intercept query execution // Intercept query execution
cy.intercept('**/queries/preview').as('query') cy.intercept("**/queries/preview").as("query")
cy.get(".spectrum-Button").contains("Run Query").click({ force: true }) cy.get(".spectrum-Button").contains("Run Query").click({ force: true })
cy.wait(500) cy.wait(500)
cy.wait("@query") cy.wait("@query")
// Assert against Status Code & Body // Assert against Status Code & Body
cy.get("@query").its('response.statusCode') cy.get("@query").its("response.statusCode").should("eq", 200)
.should('eq', 200) cy.get("@query").its("response.body").should("not.be.empty")
cy.get("@query").its('response.body')
.should('not.be.empty')
// Save query // Save query
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".hierarchy-items-container").should('contain', queryName) cy.get(".hierarchy-items-container").should("contain", queryName)
}) })
it("should switch to schema with no tables", () => { it("should switch to schema with no tables", () => {
@ -146,10 +165,10 @@ filterTests(['all'], () => {
switchSchema("randomText") switchSchema("randomText")
// No tables displayed // No tables displayed
cy.get(".spectrum-Body").eq(2).should('contain', 'No tables found') cy.get(".spectrum-Body").eq(2).should("contain", "No tables found")
// Previously created query should be visible // Previously created query should be visible
cy.get(".spectrum-Table-body").should('contain', queryName) cy.get(".spectrum-Table").should("contain", queryName)
}) })
it("should switch schemas", () => { it("should switch schemas", () => {
@ -157,44 +176,59 @@ filterTests(['all'], () => {
switchSchema("1") switchSchema("1")
// Confirm tables exist - Check for specific one // Confirm tables exist - Check for specific one
cy.get(".spectrum-Table-body").eq(0).should('contain', 'test') cy.get(".spectrum-Table").eq(0).should("contain", "test")
cy.get(".spectrum-Table-body").eq(0).find('tr').its('length').should('eq', 1) cy.get(".spectrum-Table")
.eq(0)
.find(".spectrum-Table-row")
.its("length")
.should("eq", 1)
// Confirm specific table visible within left nav bar // Confirm specific table visible within left nav bar
cy.get(".hierarchy-items-container").should('contain', 'test') cy.get(".hierarchy-items-container").should("contain", "test")
// Switch back to public schema // Switch back to public schema
switchSchema("public") switchSchema("public")
// Confirm tables exist - again // Confirm tables exist - again
cy.get(".spectrum-Table-body").eq(0).should('contain', 'REGIONS') cy.get(".spectrum-Table").eq(0).should("contain", "REGIONS")
cy.get(".spectrum-Table-body").eq(0) cy.get(".spectrum-Table")
.find('tr').its('length').should('be.gt', 1) .eq(0)
.find(".spectrum-Table-row")
.its("length")
.should("be.gt", 1)
// Confirm specific table visible within left nav bar // Confirm specific table visible within left nav bar
cy.get(".hierarchy-items-container").should('contain', 'REGIONS') cy.get(".hierarchy-items-container").should("contain", "REGIONS")
// No relationships and one query // No relationships and one query
cy.get(".spectrum-Body").eq(3).should('contain', 'No relationships configured.') cy.get(".spectrum-Body")
cy.get(".spectrum-Table-body").eq(1).should('contain', queryName) .eq(3)
.should("contain", "No relationships configured.")
cy.get(".spectrum-Table").eq(1).should("contain", queryName)
}) })
it("should duplicate a query", () => { it("should duplicate a query", () => {
// Get last nav item - The query // Get last nav item - The query
cy.get(".nav-item").last().within(() => { cy.get(".nav-item")
.last()
.within(() => {
cy.get(".icon").eq(1).click({ force: true }) cy.get(".icon").eq(1).click({ force: true })
}) })
// Select and confirm duplication // Select and confirm duplication
cy.get(".spectrum-Menu").contains("Duplicate").click() cy.get(".spectrum-Menu").contains("Duplicate").click()
cy.get(".nav-item").should('contain', queryName + ' (1)') cy.get(".nav-item").should("contain", queryName + " (1)")
}) })
it("should edit a query name", () => { it("should edit a query name", () => {
// Access query // Access query
cy.get(".hierarchy-items-container").contains(queryName + ' (1)').click() cy.get(".hierarchy-items-container")
.contains(queryName + " (1)")
.click()
// Rename query // Rename query
cy.get(".spectrum-Form-item").eq(0).within(() => { cy.get(".spectrum-Form-item")
.eq(0)
.within(() => {
cy.get("input").clear().type(queryRename) cy.get("input").clear().type(queryRename)
}) })
@ -202,36 +236,46 @@ filterTests(['all'], () => {
cy.get(".spectrum-Button").contains("Run Query").click({ force: true }) cy.get(".spectrum-Button").contains("Run Query").click({ force: true })
cy.wait(500) cy.wait(500)
cy.get(".spectrum-Button").contains("Save Query").click({ force: true }) cy.get(".spectrum-Button").contains("Save Query").click({ force: true })
cy.get(".nav-item").should('contain', queryRename) cy.get(".nav-item").should("contain", queryRename)
}) })
it("should delete a query", () => { it("should delete a query", () => {
// Get last nav item - The query // Get last nav item - The query
for (let i = 0; i < 2; i++) { for (let i = 0; i < 2; i++) {
cy.get(".nav-item").last().within(() => { cy.get(".nav-item")
.last()
.within(() => {
cy.get(".icon").eq(1).click({ force: true }) cy.get(".icon").eq(1).click({ force: true })
}) })
// Select Delete // Select Delete
cy.get(".spectrum-Menu").contains("Delete").click() cy.get(".spectrum-Menu").contains("Delete").click()
cy.get(".spectrum-Button").contains("Delete Query").click({ force: true }) cy.get(".spectrum-Button")
.contains("Delete Query")
.click({ force: true })
cy.wait(1000) cy.wait(1000)
} }
// Confirm deletion // Confirm deletion
cy.get(".nav-item").should('not.contain', queryName) cy.get(".nav-item").should("not.contain", queryName)
cy.get(".nav-item").should('not.contain', queryRename) cy.get(".nav-item").should("not.contain", queryRename)
}) })
const switchSchema = (schema) => { const switchSchema = schema => {
// Edit configuration - Change Schema // Edit configuration - Change Schema
cy.get(".spectrum-Textfield").eq(6).within(() => { cy.get(".spectrum-Textfield")
cy.get('input').clear().type(schema) .eq(6)
.within(() => {
cy.get("input").clear().type(schema)
}) })
// Save configuration & fetch // Save configuration & fetch
cy.get(".spectrum-Button").contains("Save").click({ force: true }) cy.get(".spectrum-Button").contains("Save").click({ force: true })
cy.get(".spectrum-Button").contains("Fetch tables").click({ force: true }) cy.get(".spectrum-Button")
.contains("Fetch tables")
.click({ force: true })
// Click fetch tables again within modal // Click fetch tables again within modal
cy.get(".spectrum-Dialog-grid").within(() => { cy.get(".spectrum-Dialog-grid").within(() => {
cy.get(".spectrum-Button").contains("Fetch tables").click({ force: true }) cy.get(".spectrum-Button")
.contains("Fetch tables")
.click({ force: true })
}) })
cy.reload() cy.reload()
cy.wait(5000) cy.wait(5000)