2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from "../support/filterTests"
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-02-23 14:14:28 +01:00
|
|
|
filterTests(["smoke", "all"], () => {
|
2022-02-17 15:06:17 +01:00
|
|
|
context("Create a Table", () => {
|
2022-01-21 13:43:27 +01:00
|
|
|
before(() => {
|
|
|
|
cy.login()
|
|
|
|
cy.createTestApp()
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should create a new Table", () => {
|
|
|
|
cy.createTable("dog")
|
|
|
|
cy.wait(1000)
|
|
|
|
// Check if Table exists
|
|
|
|
cy.get(".table-title h1").should("have.text", "dog")
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("adds a new column to the table", () => {
|
|
|
|
cy.addColumn("dog", "name", "Text")
|
|
|
|
cy.contains("name").should("be.visible")
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("creates a row in the table", () => {
|
|
|
|
cy.addRow(["Rover"])
|
|
|
|
cy.contains("Rover").should("be.visible")
|
2021-11-15 16:25:58 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
|
|
|
|
it("updates a column on the table", () => {
|
|
|
|
cy.get(".title").click()
|
|
|
|
cy.get(".spectrum-Table-editIcon > use").click()
|
2022-03-01 12:39:48 +01:00
|
|
|
cy.get(".modal-inner-wrapper").within(() => {
|
|
|
|
|
|
|
|
cy.get("input").eq(0).type("updated", { force: true })
|
2022-01-21 13:43:27 +01:00
|
|
|
// Unset table display column
|
|
|
|
cy.get(".spectrum-Switch-input").eq(1).click()
|
|
|
|
cy.contains("Save Column").click()
|
2022-03-01 12:39:48 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.contains("nameupdated ").should("contain", "nameupdated")
|
2021-11-15 16:25:58 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("edits a row", () => {
|
|
|
|
cy.contains("button", "Edit").click({ force: true })
|
|
|
|
cy.wait(1000)
|
|
|
|
cy.get(".spectrum-Modal input").clear()
|
|
|
|
cy.get(".spectrum-Modal input").type("Updated")
|
|
|
|
cy.contains("Save").click()
|
|
|
|
cy.contains("Updated").should("have.text", "Updated")
|
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("deletes a row", () => {
|
|
|
|
cy.get(".spectrum-Checkbox-input").check({ force: true })
|
|
|
|
cy.contains("Delete 1 row(s)").click()
|
|
|
|
cy.get(".spectrum-Modal").contains("Delete").click()
|
|
|
|
cy.contains("RoverUpdated").should("not.exist")
|
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 18:28:33 +01:00
|
|
|
if (Cypress.env("TEST_ENV")) {
|
|
|
|
// No Pagination in CI - Test env only for the next two tests
|
2022-04-14 18:15:34 +02:00
|
|
|
xit("Adds 15 rows and checks pagination", () => {
|
2022-01-21 18:28:33 +01:00
|
|
|
// 10 rows per page, 15 rows should create 2 pages within table
|
|
|
|
const totalRows = 16
|
2022-02-23 14:14:28 +01:00
|
|
|
for (let i = 1; i < totalRows; i++) {
|
2022-01-21 18:28:33 +01:00
|
|
|
cy.addRow([i])
|
|
|
|
}
|
2022-04-12 17:20:15 +02:00
|
|
|
cy.reload()
|
|
|
|
cy.wait(2000)
|
2022-01-21 18:28:33 +01:00
|
|
|
cy.get(".spectrum-Pagination").within(() => {
|
|
|
|
cy.get(".spectrum-ActionButton").eq(1).click()
|
|
|
|
})
|
|
|
|
cy.get(".spectrum-Pagination").within(() => {
|
|
|
|
cy.get(".spectrum-Body--secondary").contains("Page 2")
|
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-04-14 18:15:34 +02:00
|
|
|
xit("Deletes rows and checks pagination", () => {
|
2022-04-12 17:20:15 +02:00
|
|
|
// Delete rows, removing second page from table
|
2022-01-21 18:28:33 +01:00
|
|
|
cy.get(".spectrum-Checkbox-input").check({ force: true })
|
2022-04-12 17:20:15 +02:00
|
|
|
cy.get(".popovers").within(() => {
|
|
|
|
cy.get(".spectrum-Button").click({ force: true })
|
|
|
|
})
|
|
|
|
cy.get(".spectrum-Dialog-grid").contains("Delete").click({ force: true })
|
2022-01-21 18:28:33 +01:00
|
|
|
cy.wait(1000)
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 18:28:33 +01:00
|
|
|
// Confirm table only has one page
|
|
|
|
cy.get(".spectrum-Pagination").within(() => {
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-ActionButton").eq(1).should("not.be.enabled")
|
2022-01-21 18:28:33 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-01-21 18:28:33 +01:00
|
|
|
}
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("deletes a column", () => {
|
|
|
|
const columnName = "nameupdated"
|
|
|
|
cy.get(".title").click()
|
|
|
|
cy.get(".spectrum-Table-editIcon > use").click()
|
|
|
|
cy.contains("Delete").click()
|
|
|
|
cy.get('[data-cy="delete-column-confirm"]').type(columnName)
|
|
|
|
cy.contains("Delete Column").click()
|
|
|
|
cy.contains("nameupdated").should("not.exist")
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("deletes a table", () => {
|
|
|
|
cy.get(".nav-item")
|
|
|
|
.contains("dog")
|
|
|
|
.parents(".nav-item")
|
|
|
|
.first()
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".actions .spectrum-Icon").click({ force: true })
|
|
|
|
})
|
|
|
|
cy.get(".spectrum-Menu > :nth-child(2)").click()
|
|
|
|
cy.get('[data-cy="delete-table-confirm"]').type("dog")
|
|
|
|
cy.contains("Delete Table").click()
|
|
|
|
cy.contains("dog").should("not.exist")
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
})
|
2020-08-07 19:31:40 +02:00
|
|
|
})
|