2020-09-25 14:12:16 +02:00
|
|
|
context("Create a Table", () => {
|
|
|
|
before(() => {
|
2021-04-15 19:29:11 +02:00
|
|
|
cy.login()
|
2021-03-05 15:36:38 +01:00
|
|
|
cy.createTestApp()
|
2020-09-25 14:12:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should create a new Table", () => {
|
|
|
|
cy.createTable("dog")
|
2021-09-28 13:26:38 +02:00
|
|
|
cy.wait(1000)
|
2020-09-25 14:12:16 +02:00
|
|
|
// Check if Table exists
|
2020-10-27 16:26:07 +01:00
|
|
|
cy.get(".table-title h1").should("have.text", "dog")
|
2020-09-25 14:12:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it("adds a new column to the table", () => {
|
2020-10-05 12:13:09 +02:00
|
|
|
cy.addColumn("dog", "name", "Text")
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("name").should("be.visible")
|
|
|
|
})
|
|
|
|
|
2020-10-09 20:10:28 +02:00
|
|
|
it("creates a row in the table", () => {
|
|
|
|
cy.addRow(["Rover"])
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("Rover").should("be.visible")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("updates a column on the table", () => {
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.get(".title").click()
|
|
|
|
cy.get(".spectrum-Table-editIcon > use").click()
|
2021-10-01 14:58:15 +02:00
|
|
|
cy.get("input").eq(1).type("updated", { force: true })
|
2020-10-15 09:17:26 +02:00
|
|
|
// Unset table display column
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.get(".spectrum-Switch-input").eq(1).click()
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("Save Column").click()
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.contains("nameupdated ").should("contain", "nameupdated")
|
2020-09-25 14:12:16 +02:00
|
|
|
})
|
2021-10-14 17:45:27 +02:00
|
|
|
|
2020-10-09 20:10:28 +02:00
|
|
|
it("edits a row", () => {
|
2020-10-28 17:05:19 +01:00
|
|
|
cy.contains("button", "Edit").click({ force: true })
|
|
|
|
cy.wait(1000)
|
2021-09-29 12:27:58 +02:00
|
|
|
cy.get(".spectrum-Modal input").clear()
|
2021-10-12 14:02:08 +02:00
|
|
|
cy.get(".spectrum-Modal input").type("Updated")
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("Save").click()
|
2021-09-27 19:19:25 +02:00
|
|
|
cy.contains("Updated").should("have.text", "Updated")
|
2020-09-25 14:12:16 +02:00
|
|
|
})
|
2021-10-14 17:45:27 +02:00
|
|
|
|
2020-10-09 20:10:28 +02:00
|
|
|
it("deletes a row", () => {
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.get(".spectrum-Checkbox-input").check({ force: true })
|
2020-10-27 17:01:27 +01:00
|
|
|
cy.contains("Delete 1 row(s)").click()
|
2021-10-01 14:58:15 +02:00
|
|
|
cy.get(".spectrum-Modal").contains("Delete").click()
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("RoverUpdated").should("not.exist")
|
|
|
|
})
|
2021-11-15 16:25:58 +01:00
|
|
|
|
|
|
|
it("Adds 15 rows and checks pagination", () => {
|
|
|
|
// 10 rows per page, 15 rows should create 2 pages within table
|
|
|
|
const totalRows = 16
|
|
|
|
for (let i = 1; i < totalRows; i++){
|
|
|
|
cy.addRow([i])
|
|
|
|
}
|
|
|
|
cy.wait(1000)
|
|
|
|
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")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it("Deletes rows and checks pagination", () => {
|
|
|
|
// Delete rows, removing second page of rows from table
|
|
|
|
const deleteRows = 5
|
|
|
|
cy.get(".spectrum-Checkbox-input").check({ force: true })
|
|
|
|
cy.get(".spectrum-Table-body")
|
|
|
|
cy.contains("Delete 5 row(s)").click()
|
|
|
|
cy.get(".spectrum-Modal").contains("Delete").click()
|
|
|
|
cy.wait(1000)
|
|
|
|
|
|
|
|
// Confirm table only has one page
|
|
|
|
cy.get(".spectrum-Pagination").within(() => {
|
|
|
|
cy.get(".spectrum-ActionButton").eq(1).should('not.be.enabled')
|
|
|
|
})
|
|
|
|
})
|
2020-09-25 14:12:16 +02:00
|
|
|
|
|
|
|
it("deletes a column", () => {
|
2021-05-25 19:06:56 +02:00
|
|
|
cy.get(".title").click()
|
|
|
|
cy.get(".spectrum-Table-editIcon > use").click()
|
2020-10-28 10:50:05 +01:00
|
|
|
cy.contains("Delete").click()
|
2020-10-27 17:01:27 +01:00
|
|
|
cy.wait(50)
|
2021-10-01 14:58:15 +02:00
|
|
|
cy.contains("Delete Column").click()
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("nameupdated").should("not.exist")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("deletes a table", () => {
|
2021-10-01 14:58:15 +02:00
|
|
|
cy.get(".nav-item")
|
|
|
|
.contains("dog")
|
|
|
|
.parents(".nav-item")
|
|
|
|
.first()
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".actions .spectrum-Icon").click({ force: true })
|
|
|
|
})
|
2021-06-02 13:32:07 +02:00
|
|
|
cy.get(".spectrum-Menu > :nth-child(2)").click()
|
2020-09-25 14:12:16 +02:00
|
|
|
cy.contains("Delete Table").click()
|
|
|
|
cy.contains("dog").should("not.exist")
|
|
|
|
})
|
2020-08-07 19:31:40 +02:00
|
|
|
})
|