2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from "../support/filterTests"
|
2021-10-15 18:36:10 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
filterTests(['all'], () => {
|
2022-02-17 15:06:17 +01:00
|
|
|
context("Rename an App", () => {
|
2022-01-21 13:43:27 +01:00
|
|
|
beforeEach(() => {
|
|
|
|
cy.login()
|
|
|
|
cy.createTestApp()
|
2021-10-15 18:36:10 +02:00
|
|
|
})
|
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should rename an unpublished application", () => {
|
|
|
|
const appName = "Cypress Tests"
|
|
|
|
const appRename = "Cypress Renamed"
|
|
|
|
// Rename app, Search for app, Confirm name was changed
|
|
|
|
cy.get(".home-logo").click()
|
|
|
|
renameApp(appName, appRename)
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
cy.searchForApplication(appRename)
|
|
|
|
cy.get(".appTable").find(".title").should("have.length", 1)
|
|
|
|
// Set app name back to Cypress Tests
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
renameApp(appRename, appName)
|
|
|
|
})
|
|
|
|
|
|
|
|
xit("Should rename a published application", () => {
|
|
|
|
// It is not possible to rename a published application
|
|
|
|
const appName = "Cypress Tests"
|
|
|
|
const appRename = "Cypress Renamed"
|
|
|
|
// Publish the app
|
|
|
|
cy.get(".toprightnav")
|
|
|
|
cy.get(".spectrum-Button").contains("Publish").click({force: true})
|
|
|
|
cy.get(".spectrum-Dialog-grid")
|
|
|
|
.within(() => {
|
|
|
|
// Click publish again within the modal
|
|
|
|
cy.get(".spectrum-Button").contains("Publish").click({force: true})
|
|
|
|
})
|
|
|
|
// Rename app, Search for app, Confirm name was changed
|
|
|
|
cy.get(".home-logo").click()
|
|
|
|
renameApp(appName, appRename, true)
|
|
|
|
cy.searchForApplication(appRename)
|
|
|
|
cy.get(".appTable").find(".wrapper").should("have.length", 1)
|
|
|
|
})
|
2021-10-15 18:36:10 +02:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("Should try to rename an application to have no name", () => {
|
|
|
|
const appName = "Cypress Tests"
|
|
|
|
cy.get(".home-logo").click()
|
|
|
|
renameApp(appName, " ", false, true)
|
|
|
|
cy.wait(500)
|
|
|
|
// Close modal and confirm name has not been changed
|
|
|
|
cy.get(".spectrum-Dialog-grid").contains("Cancel").click()
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
cy.searchForApplication(appName)
|
|
|
|
cy.get(".appTable").find(".title").should("have.length", 1)
|
2021-10-15 18:36:10 +02:00
|
|
|
|
|
|
|
})
|
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
xit("Should create two applications with the same name", () => {
|
|
|
|
// It is not possible to have applications with the same name
|
|
|
|
const appName = "Cypress Tests"
|
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`)
|
|
|
|
cy.wait(500)
|
|
|
|
cy.get(".spectrum-Button").contains("Create app").click({force: true})
|
|
|
|
cy.contains(/Start from scratch/).click()
|
|
|
|
cy.get(".spectrum-Modal")
|
|
|
|
.within(() => {
|
|
|
|
cy.get("input").eq(0).type(appName)
|
|
|
|
cy.get(".spectrum-ButtonGroup").contains("Create app").click({force: true})
|
|
|
|
cy.get(".error").should("have.text", "Another app with the same name already exists")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should validate application names", () => {
|
|
|
|
// App name must be letters, numbers and spaces only
|
|
|
|
// This test checks numbers and special characters specifically
|
|
|
|
const appName = "Cypress Tests"
|
|
|
|
const numberName = 12345
|
|
|
|
const specialCharName = "£$%^"
|
|
|
|
cy.get(".home-logo").click()
|
|
|
|
renameApp(appName, numberName)
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
cy.searchForApplication(numberName)
|
|
|
|
cy.get(".appTable").find(".title").should("have.length", 1)
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
renameApp(numberName, specialCharName)
|
|
|
|
cy.get(".error").should("have.text", "App name must be letters, numbers and spaces only")
|
|
|
|
// Set app name back to Cypress Tests
|
|
|
|
cy.reload()
|
|
|
|
cy.wait(1000)
|
|
|
|
renameApp(numberName, appName)
|
|
|
|
})
|
|
|
|
|
|
|
|
const renameApp = (originalName, changedName, published, noName) => {
|
|
|
|
cy.searchForApplication(originalName)
|
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`)
|
|
|
|
.its("body")
|
|
|
|
.then(val => {
|
|
|
|
if (val.length > 0) {
|
|
|
|
cy.get(".appTable")
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".spectrum-Icon").eq(1).click()
|
|
|
|
})
|
|
|
|
// Check for when an app is published
|
|
|
|
if (published == true){
|
|
|
|
// Should not have Edit as option, will unpublish app
|
|
|
|
cy.should("not.have.value", "Edit")
|
|
|
|
cy.get(".spectrum-Menu").contains("Unpublish").click()
|
|
|
|
cy.get(".spectrum-Dialog-grid").contains("Unpublish app").click()
|
|
|
|
cy.get(".appTable > :nth-child(5) > :nth-child(2) > .spectrum-Icon").click()
|
2021-10-15 18:36:10 +02:00
|
|
|
}
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.contains("Edit").click()
|
|
|
|
cy.get(".spectrum-Modal")
|
|
|
|
.within(() => {
|
|
|
|
if (noName == true){
|
|
|
|
cy.get("input").clear()
|
|
|
|
cy.get(".spectrum-Dialog-grid").click()
|
|
|
|
.contains("App name must be letters, numbers and spaces only")
|
|
|
|
return cy
|
|
|
|
}
|
|
|
|
cy.get("input").clear()
|
|
|
|
cy.get("input").eq(0).type(changedName).should("have.value", changedName).blur()
|
|
|
|
cy.get(".spectrum-ButtonGroup").contains("Save").click({force: true})
|
|
|
|
cy.wait(500)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2022-01-21 13:56:33 +01:00
|
|
|
|
2021-10-15 18:36:10 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|