8d72f8a705
* upgrade cypress * fixed delete now has dialog * also check "unAssign" * client type no longer required * providers and group changes * grp creation working * moved create realm button ouside the dropdown * sped up test and added cleanup * Revert "moved create realm button ouside the dropdown" This reverts commit e2076a5305808417de910ba8fada8e528e5c356a. * make test re-runnable * removed un needed navigation * Fix misformed Cypress config for GitHub Action * cleanup after test * fixed cleanup * temporary removed this test * also remove user "new" * try adding a wait for CI * get different modal id * add {force: true} to modal functions * mv grp search last and ignore 401 * try using cy.get and disable video for testing * add back video artifacts Co-authored-by: mfrances <mfrances@redhat.com> Co-authored-by: Jon Koops <jonkoops@gmail.com> Co-authored-by: jenny-s51 <jshandel@redhat.com>
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
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";
|
|
import { keycloakBefore } from "../support/util/keycloak_before";
|
|
|
|
const masthead = new Masthead();
|
|
const loginPage = new LoginPage();
|
|
const sidebarPage = new SidebarPage();
|
|
const createRealmPage = new CreateRealmPage();
|
|
|
|
describe("Realms test", () => {
|
|
const testRealmName = "Test realm";
|
|
describe("Realm creation", () => {
|
|
beforeEach(() => {
|
|
keycloakBefore();
|
|
loginPage.logIn();
|
|
});
|
|
|
|
after(async () => {
|
|
const client = new AdminClient();
|
|
await client.deleteRealm(testRealmName);
|
|
});
|
|
|
|
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 change to Test realm", () => {
|
|
sidebarPage.getCurrentRealm().should("eq", "Master");
|
|
|
|
sidebarPage
|
|
.goToRealm(testRealmName)
|
|
.getCurrentRealm()
|
|
.should("eq", testRealmName);
|
|
});
|
|
});
|
|
});
|