2021-06-07 16:46:09 +02:00
|
|
|
// TODO for now components are skipped, might not be good to keep doing this
|
2021-03-05 14:52:26 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from "../support/filterTests"
|
2020-06-11 12:56:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
filterTests(['all'], () => {
|
|
|
|
xcontext("Create Components", () => {
|
|
|
|
let headlineId
|
2021-03-05 14:52:26 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
before(() => {
|
|
|
|
cy.login()
|
|
|
|
cy.createTestApp()
|
|
|
|
cy.createTable("dog")
|
|
|
|
cy.addColumn("dog", "name", "Text")
|
|
|
|
cy.addColumn("dog", "age", "Number")
|
|
|
|
cy.addColumn("dog", "type", "Options")
|
|
|
|
cy.navigateToFrontend()
|
2021-03-05 14:52:26 +01:00
|
|
|
})
|
2020-06-11 12:56:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should add a container", () => {
|
|
|
|
cy.addComponent(null, "Container").then(componentId => {
|
|
|
|
cy.getComponent(componentId).should("exist")
|
|
|
|
})
|
|
|
|
})
|
2021-03-05 14:52:26 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should add a headline", () => {
|
|
|
|
cy.addComponent("Elements", "Headline").then(componentId => {
|
|
|
|
headlineId = componentId
|
|
|
|
cy.getComponent(headlineId).should("exist")
|
|
|
|
})
|
|
|
|
})
|
2020-06-11 12:56:16 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should change the text of the headline", () => {
|
|
|
|
const text = "Lorem ipsum dolor sit amet."
|
2021-03-05 14:52:26 +01:00
|
|
|
cy.get("[data-cy=Settings]").click()
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.get("[data-cy=setting-text] input")
|
|
|
|
.type(text)
|
|
|
|
.blur()
|
|
|
|
cy.getComponent(headlineId).should("have.text", text)
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should change the size of the headline", () => {
|
|
|
|
cy.get("[data-cy=Design]").click()
|
|
|
|
cy.contains("Typography").click()
|
|
|
|
cy.get("[data-cy=font-size-prop-control]").click()
|
|
|
|
cy.contains("60px").click()
|
|
|
|
cy.getComponent(headlineId).should("have.css", "font-size", "60px")
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should create a form and reset to match schema", () => {
|
|
|
|
cy.addComponent("Form", "Form").then(() => {
|
2021-03-05 14:52:26 +01:00
|
|
|
cy.get("[data-cy=Settings]").click()
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.get("[data-cy=setting-dataSource]")
|
|
|
|
.contains("Choose option")
|
|
|
|
.click()
|
|
|
|
cy.get(".dropdown")
|
|
|
|
.contains("dog")
|
2021-03-05 14:52:26 +01:00
|
|
|
.click()
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.addComponent("Form", "Field Group").then(fieldGroupId => {
|
|
|
|
cy.get("[data-cy=Settings]").click()
|
|
|
|
cy.contains("Update Form Fields").click()
|
|
|
|
cy.get(".modal")
|
|
|
|
.get("button.primary")
|
|
|
|
.click()
|
|
|
|
cy.getComponent(fieldGroupId).within(() => {
|
|
|
|
cy.contains("name").should("exist")
|
|
|
|
cy.contains("age").should("exist")
|
|
|
|
cy.contains("type").should("exist")
|
|
|
|
})
|
|
|
|
cy.getComponent(fieldGroupId)
|
|
|
|
.find("input")
|
|
|
|
.should("have.length", 2)
|
|
|
|
cy.getComponent(fieldGroupId)
|
|
|
|
.find(".spectrum-Picker")
|
|
|
|
.should("have.length", 1)
|
2021-03-05 14:52:26 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2021-03-08 12:57:56 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("deletes a component", () => {
|
|
|
|
cy.addComponent("Elements", "Paragraph").then(componentId => {
|
|
|
|
cy.get("[data-cy=setting-_instanceName] input")
|
|
|
|
.type(componentId)
|
|
|
|
.blur()
|
|
|
|
cy.get(".ui-nav ul .nav-item.selected .ri-more-line").click({
|
|
|
|
force: true,
|
|
|
|
})
|
|
|
|
cy.get(".dropdown-container")
|
|
|
|
.contains("Delete")
|
|
|
|
.click()
|
|
|
|
cy.get(".modal")
|
|
|
|
.contains("Delete Component")
|
|
|
|
.click()
|
|
|
|
cy.getComponent(componentId).should("not.exist")
|
2021-03-08 12:57:56 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2020-06-11 12:56:16 +02:00
|
|
|
})
|