2022-01-21 13:43:27 +01:00
|
|
|
import filterTests from "../support/filterTests"
|
2021-11-15 16:25:58 +01:00
|
|
|
|
2022-02-23 14:14:28 +01:00
|
|
|
filterTests(["smoke", "all"], () => {
|
2022-02-17 15:06:17 +01:00
|
|
|
context("Create a User and Assign Roles", () => {
|
2022-01-21 13:43:27 +01:00
|
|
|
before(() => {
|
|
|
|
cy.login()
|
2021-11-15 16:25:58 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
|
|
|
|
it("should create a user", () => {
|
|
|
|
cy.createUser("bbuser@test.com")
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table").should("contain", "bbuser")
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should confirm there is No Access for a New User", () => {
|
|
|
|
// Click into the user
|
|
|
|
cy.contains("bbuser").click()
|
2022-01-18 17:02:42 +01:00
|
|
|
cy.wait(500)
|
2022-01-21 13:43:27 +01:00
|
|
|
// Get No Access table - Confirm it has apps in it
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table").eq(1).should("not.contain", "No rows found")
|
2022-01-21 13:43:27 +01:00
|
|
|
// Get Configure Roles table - Confirm it has no apps
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table").eq(0).contains("No rows found")
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should assign role types", () => {
|
|
|
|
// 3 apps minimum required - to assign an app to each role type
|
|
|
|
cy.request(`${Cypress.config().baseUrl}/api/applications?status=all`)
|
2022-02-23 14:14:28 +01:00
|
|
|
.its("body")
|
|
|
|
.then(val => {
|
|
|
|
if (val.length < 3) {
|
|
|
|
for (let i = 1; i < 3; i++) {
|
|
|
|
const uuid = () => Cypress._.random(0, 1e6)
|
|
|
|
const name = uuid()
|
|
|
|
cy.createApp(name)
|
|
|
|
}
|
2022-01-21 13:43:27 +01:00
|
|
|
}
|
2022-02-23 14:14:28 +01:00
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
// Navigate back to the user
|
|
|
|
cy.visit(`${Cypress.config().baseUrl}/builder`)
|
2022-02-18 18:59:33 +01:00
|
|
|
cy.wait(500)
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.get(".spectrum-SideNav").contains("Users").click()
|
|
|
|
cy.wait(500)
|
2022-02-18 18:59:33 +01:00
|
|
|
cy.get(".spectrum-Table").contains("bbuser").click()
|
|
|
|
cy.wait(1000)
|
2022-01-21 13:43:27 +01:00
|
|
|
for (let i = 0; i < 3; i++) {
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(1)
|
|
|
|
.find(".spectrum-Table-row")
|
|
|
|
.eq(0)
|
2022-02-23 14:53:15 +01:00
|
|
|
.find(".spectrum-Table-cell")
|
|
|
|
.eq(0)
|
2022-02-23 14:14:28 +01:00
|
|
|
.click()
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.wait(500)
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Dialog-grid")
|
|
|
|
.contains("Choose an option")
|
|
|
|
.click()
|
|
|
|
.then(() => {
|
2022-02-23 14:25:48 +01:00
|
|
|
cy.wait(1000)
|
2022-02-23 14:14:28 +01:00
|
|
|
if (i == 0) {
|
|
|
|
cy.get(".spectrum-Popover").contains("Admin").click()
|
|
|
|
}
|
|
|
|
if (i == 1) {
|
|
|
|
cy.get(".spectrum-Popover").contains("Power").click()
|
|
|
|
}
|
|
|
|
if (i == 2) {
|
|
|
|
cy.get(".spectrum-Popover").contains("Basic").click()
|
|
|
|
}
|
2022-02-23 14:25:48 +01:00
|
|
|
cy.wait(1000)
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Button")
|
|
|
|
.contains("Update role")
|
|
|
|
.click({ force: true })
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
}
|
|
|
|
// Confirm roles exist within Configure roles table
|
2022-02-23 14:25:48 +01:00
|
|
|
cy.wait(2000)
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(0)
|
|
|
|
.within(assginedRoles => {
|
2022-01-21 13:43:27 +01:00
|
|
|
expect(assginedRoles).to.contain("Admin")
|
|
|
|
expect(assginedRoles).to.contain("Power")
|
|
|
|
expect(assginedRoles).to.contain("Basic")
|
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("should unassign role types", () => {
|
|
|
|
// Set each app within Configure roles table to 'No Access'
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(0)
|
|
|
|
.find(".spectrum-Table-row")
|
|
|
|
.its("length")
|
|
|
|
.then(len => {
|
|
|
|
for (let i = 0; i < len; i++) {
|
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(0)
|
|
|
|
.find(".spectrum-Table-row")
|
|
|
|
.eq(0)
|
2022-02-23 14:53:15 +01:00
|
|
|
.find(".spectrum-Table-cell")
|
|
|
|
.eq(0)
|
2022-02-23 14:14:28 +01:00
|
|
|
.click()
|
|
|
|
.then(() => {
|
|
|
|
cy.get(".spectrum-Picker").eq(1).click({ force: true })
|
|
|
|
cy.wait(500)
|
|
|
|
cy.get(".spectrum-Popover").contains("No Access").click()
|
|
|
|
})
|
|
|
|
cy.get(".spectrum-Button")
|
|
|
|
.contains("Update role")
|
|
|
|
.click({ force: true })
|
2022-01-21 13:43:27 +01:00
|
|
|
cy.wait(1000)
|
2022-02-23 14:14:28 +01:00
|
|
|
}
|
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
// Confirm Configure roles table no longer has any apps in it
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table").eq(0).contains("No rows found")
|
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("should enable Developer access", () => {
|
|
|
|
// Enable Developer access
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".field")
|
|
|
|
.eq(4)
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".spectrum-Switch-input").click({ force: true })
|
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
// No Access table should now be empty
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".container")
|
|
|
|
.contains("No Access")
|
|
|
|
.parent()
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".spectrum-Table").contains("No rows found")
|
|
|
|
})
|
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
// Each app within Configure roles should have Admin access
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(0)
|
|
|
|
.find(".spectrum-Table-row")
|
|
|
|
.its("length")
|
|
|
|
.then(len => {
|
|
|
|
for (let i = 0; i < len; i++) {
|
|
|
|
cy.get(".spectrum-Table")
|
|
|
|
.eq(0)
|
|
|
|
.find(".spectrum-Table-row")
|
|
|
|
.eq(i)
|
|
|
|
.contains("Admin")
|
|
|
|
cy.wait(500)
|
|
|
|
}
|
|
|
|
})
|
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("should disable Developer access", () => {
|
|
|
|
// Disable Developer access
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".field")
|
|
|
|
.eq(4)
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".spectrum-Switch-input").click({ force: true })
|
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
// Configure roles table should now be empty
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".container")
|
|
|
|
.contains("Configure roles")
|
|
|
|
.parent()
|
|
|
|
.within(() => {
|
|
|
|
cy.get(".spectrum-Table").contains("No rows found")
|
|
|
|
})
|
2021-11-18 14:47:41 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
|
2022-01-21 13:43:27 +01:00
|
|
|
it("should delete a user", () => {
|
|
|
|
// Click Delete user button
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Button")
|
|
|
|
.contains("Delete user")
|
|
|
|
.click({ force: true })
|
|
|
|
.then(() => {
|
|
|
|
// Confirm deletion within modal
|
|
|
|
cy.wait(500)
|
|
|
|
cy.get(".spectrum-Dialog-grid").within(() => {
|
|
|
|
cy.get(".spectrum-Button")
|
|
|
|
.contains("Delete user")
|
|
|
|
.click({ force: true })
|
|
|
|
cy.wait(4000)
|
|
|
|
})
|
2022-01-21 13:43:27 +01:00
|
|
|
})
|
2022-02-23 14:14:28 +01:00
|
|
|
cy.get(".spectrum-Table").should("not.have.text", "bbuser")
|
2021-11-15 16:25:58 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|