2021-01-27 12:56:28 +00:00
|
|
|
import LoginPage from "../support/pages/LoginPage";
|
|
|
|
import SidebarPage from "../support/pages/admin_console/SidebarPage";
|
|
|
|
import CreateRealmPage from "../support/pages/admin_console/CreateRealmPage";
|
|
|
|
import Masthead from "../support/pages/admin_console/Masthead";
|
2021-02-09 12:32:41 +00:00
|
|
|
import AdminClient from "../support/util/AdminClient";
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-27 12:47:57 +00:00
|
|
|
const masthead = new Masthead();
|
|
|
|
const loginPage = new LoginPage();
|
|
|
|
const sidebarPage = new SidebarPage();
|
|
|
|
const createRealmPage = new CreateRealmPage();
|
|
|
|
|
2021-01-21 12:09:50 +00:00
|
|
|
describe("Realms test", function () {
|
2021-02-09 12:32:41 +00:00
|
|
|
const testRealmName = "Test realm";
|
2021-01-21 12:09:50 +00:00
|
|
|
describe("Realm creation", function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
cy.visit("");
|
2021-01-25 17:17:59 +00:00
|
|
|
loginPage.logIn();
|
2021-01-21 12:09:50 +00:00
|
|
|
});
|
|
|
|
|
2021-02-09 12:32:41 +00:00
|
|
|
after(async () => {
|
|
|
|
const client = new AdminClient();
|
|
|
|
await client.deleteRealm(testRealmName);
|
|
|
|
});
|
|
|
|
|
2021-01-21 12:09:50 +00:00
|
|
|
it("should fail creating Master realm", function () {
|
|
|
|
sidebarPage.goToCreateRealm();
|
|
|
|
createRealmPage.fillRealmName("master").createRealm();
|
|
|
|
|
|
|
|
masthead.checkNotificationMessage(
|
2021-02-09 12:32:41 +00:00
|
|
|
"Could not create realm Conflict detected. See logs for details"
|
2021-01-21 12:09:50 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should create Test realm", function () {
|
|
|
|
sidebarPage.goToCreateRealm();
|
2021-02-09 12:32:41 +00:00
|
|
|
createRealmPage.fillRealmName(testRealmName).createRealm();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
|
|
|
masthead.checkNotificationMessage("Realm created");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should change to Test realm", function () {
|
|
|
|
sidebarPage.getCurrentRealm().should("eq", "Master");
|
|
|
|
|
2021-02-09 12:32:41 +00:00
|
|
|
sidebarPage
|
|
|
|
.goToRealm(testRealmName)
|
|
|
|
.getCurrentRealm()
|
|
|
|
.should("eq", testRealmName);
|
2021-01-21 12:09:50 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|