2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from "../support/filterTests"
|
2021-03-05 14:52:26 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
filterTests(['smoke', 'all'], () => {
|
2022-02-17 15:06:17 +01:00
|
|
|
context("Create Bindings", () => {
|
2022-01-21 13:43:27 +01:00
|
|
|
before(() => {
|
|
|
|
cy.login()
|
|
|
|
cy.createTestApp()
|
|
|
|
cy.navigateToFrontend()
|
2020-08-28 13:57:46 +02:00
|
|
|
})
|
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should add a current user binding", () => {
|
|
|
|
cy.addComponent("Elements", "Paragraph").then(() => {
|
|
|
|
addSettingBinding("text", "Current User._id")
|
|
|
|
})
|
2021-03-08 12:25:24 +01:00
|
|
|
})
|
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should handle an invalid binding", () => {
|
|
|
|
cy.addComponent("Elements", "Paragraph").then(componentId => {
|
|
|
|
// Cypress needs to escape curly brackets
|
|
|
|
cy.get("[data-cy=setting-text] input")
|
|
|
|
.type("{{}{{}{{} Current User._id {}}{}}")
|
|
|
|
.blur()
|
|
|
|
cy.getComponent(componentId).should("have.text", "{{{ [user].[_id] }}")
|
|
|
|
})
|
2020-08-28 13:57:46 +02:00
|
|
|
})
|
2021-03-08 12:25:24 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should add a URL param binding", () => {
|
|
|
|
const paramName = "foo"
|
|
|
|
cy.createScreen("Test Param", `/test/:${paramName}`)
|
|
|
|
cy.addComponent("Elements", "Paragraph").then(componentId => {
|
|
|
|
addSettingBinding("text", `URL.${paramName}`)
|
|
|
|
// The builder preview pages don't have a real URL, so all we can do
|
|
|
|
// is check that we were able to bind to the property, and that the
|
|
|
|
// component exists on the page
|
|
|
|
cy.getComponent(componentId).should("have.text", "New Paragraph")
|
|
|
|
})
|
2021-03-08 12:25:24 +01:00
|
|
|
})
|
2021-03-05 14:52:26 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should add a binding with a handlebars helper", () => {
|
|
|
|
cy.addComponent("Elements", "Paragraph").then(componentId => {
|
|
|
|
// Cypress needs to escape curly brackets
|
|
|
|
cy.get("[data-cy=setting-text] input")
|
|
|
|
.type("{{}{{} add 1 2 {}}{}}")
|
|
|
|
.blur()
|
|
|
|
cy.getComponent(componentId).should("have.text", "3")
|
|
|
|
})
|
|
|
|
})
|
2021-03-05 14:52:26 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
|
|
|
|
const addSettingBinding = (setting, bindingText, clickOption = true) => {
|
|
|
|
cy.get(`[data-cy="setting-${setting}"] [data-cy=text-binding-button]`).click()
|
|
|
|
cy.get(".drawer").within(() => {
|
|
|
|
if (clickOption) {
|
|
|
|
cy.contains(bindingText).click()
|
|
|
|
cy.get("textarea").should("have.value", `{{ ${bindingText} }}`)
|
|
|
|
} else {
|
|
|
|
cy.get("textarea").type(bindingText)
|
|
|
|
}
|
|
|
|
cy.contains("Save").click()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|