keycloak-scim/cypress/integration/realm_test.spec.ts

101 lines
2.8 KiB
TypeScript
Raw Normal View History

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";
import AdminClient from "../support/util/AdminClient";
2022-01-24 14:17:55 +00:00
import RealmSelector from "../support/pages/admin_console/RealmSelector";
import {
keycloakBefore,
keycloakBeforeEach,
} from "../support/util/keycloak_hooks";
const masthead = new Masthead();
const loginPage = new LoginPage();
const sidebarPage = new SidebarPage();
const createRealmPage = new CreateRealmPage();
2022-01-24 14:17:55 +00:00
const realmSelector = new RealmSelector();
const adminClient = new AdminClient();
describe("Realms test", () => {
const testRealmName = "Test realm";
describe("Realm creation", () => {
before(() => {
keycloakBefore();
2021-01-25 17:17:59 +00:00
loginPage.logIn();
});
beforeEach(() => {
keycloakBeforeEach();
});
2022-01-24 14:17:55 +00:00
after(() => {
[testRealmName, "one", "two"].map((realm) =>
adminClient.deleteRealm(realm)
);
});
it("should fail creating Master realm", () => {
sidebarPage.goToCreateRealm();
createRealmPage.fillRealmName("master").createRealm();
masthead.checkNotificationMessage(
"Could not create realm Conflict detected. See logs for details"
);
});
it("should create Test realm", () => {
sidebarPage.goToCreateRealm();
createRealmPage.fillRealmName(testRealmName).createRealm();
masthead.checkNotificationMessage("Realm created");
});
it("should create realm from new a realm", () => {
sidebarPage.goToCreateRealm();
createRealmPage.fillRealmName("one").createRealm();
const fetchUrl = "/auth/admin/realms?briefRepresentation=true";
cy.intercept(fetchUrl).as("fetch");
masthead.checkNotificationMessage("Realm created");
cy.wait(["@fetch"]);
sidebarPage.goToCreateRealm();
createRealmPage.fillRealmName("two").createRealm();
masthead.checkNotificationMessage("Realm created");
cy.wait(["@fetch"]);
});
it("should change to Test realm", () => {
sidebarPage.getCurrentRealm().should("eq", "Two");
sidebarPage
.goToRealm(testRealmName)
.getCurrentRealm()
.should("eq", testRealmName);
});
});
2022-01-24 14:17:55 +00:00
describe("More then 5 realms", () => {
const realmNames = ["One", "Two", "Three", "Four", "Five"];
before(() => {
keycloakBefore();
loginPage.logIn();
realmNames.map((realm) => adminClient.createRealm(realm));
});
after(() => {
for (const realmName of realmNames) {
adminClient.deleteRealm(realmName);
}
});
it("switch to searchable realm selector", () => {
realmSelector.openRealmContextSelector().shouldContainAll(realmNames);
});
});
});