keycloak-scim/js/apps/admin-ui/cypress/e2e/sessions_test.spec.ts

108 lines
3.1 KiB
TypeScript
Raw Normal View History

import LoginPage from "../support/pages/LoginPage";
import SidebarPage from "../support/pages/admin-ui/SidebarPage";
import SessionsPage from "../support/pages/admin-ui/manage/sessions/SessionsPage";
2022-09-12 13:30:12 +00:00
import CommonPage from "../support/pages/CommonPage";
import ListingPage from "../support/pages/admin-ui/ListingPage";
import GroupPage from "../support/pages/admin-ui/manage/groups/GroupPage";
import { keycloakBefore } from "../support/util/keycloak_hooks";
const loginPage = new LoginPage();
const sidebarPage = new SidebarPage();
const sessionsPage = new SessionsPage();
2022-09-12 13:30:12 +00:00
const commonPage = new CommonPage();
const listingPage = new ListingPage();
const groupPage = new GroupPage();
describe("Sessions test", () => {
2022-09-12 13:30:12 +00:00
const admin = "admin";
const client = "security-admin-console";
2023-02-10 10:10:35 +00:00
beforeEach(() => {
loginPage.logIn();
2023-02-10 10:10:35 +00:00
keycloakBefore();
sidebarPage.goToSessions();
});
2022-09-12 13:30:12 +00:00
describe("Sessions list view", () => {
it("check item values", () => {
2022-10-25 08:57:22 +00:00
listingPage.searchItem(client, false);
2022-09-12 13:30:12 +00:00
commonPage
.tableUtils()
.checkRowItemExists(admin)
.checkRowItemExists(client);
});
2022-09-12 13:30:12 +00:00
it("go to item accessed clients link", () => {
2022-10-25 08:57:22 +00:00
listingPage.searchItem(client, false);
2022-09-12 13:30:12 +00:00
commonPage.tableUtils().clickRowItemLink(client);
});
});
2022-09-12 13:30:12 +00:00
describe("Search", () => {
it("search existing session", () => {
listingPage.searchItem(admin, false);
listingPage.itemExist(admin, true);
groupPage.assertNoSearchResultsMessageExist(false);
});
2022-09-12 13:30:12 +00:00
it("search non-existant session", () => {
listingPage.searchItem("non-existant-session", false);
groupPage.assertNoSearchResultsMessageExist(true);
});
});
2022-09-12 13:30:12 +00:00
describe("revocation", () => {
it("Clear revocation notBefore", () => {
sessionsPage.clearNotBefore();
});
it("Check if notBefore cleared", () => {
sessionsPage.checkNotBeforeCleared();
});
it("Set revocation notBefore", () => {
sessionsPage.setToNow();
});
it("Check if notBefore saved", () => {
sessionsPage.checkNotBeforeValueExists();
});
it("Push when URI not configured", () => {
sessionsPage.pushRevocation();
commonPage
.masthead()
.checkNotificationMessage(
"No push sent. No admin URI configured or no registered cluster nodes available",
);
2022-09-12 13:30:12 +00:00
});
});
2023-03-30 08:44:36 +00:00
describe("Accessibility tests for sessions", () => {
beforeEach(() => {
loginPage.logIn();
keycloakBefore();
sidebarPage.goToSessions();
cy.injectAxe();
});
it("Check a11y violations on load/ sessions", () => {
cy.checkA11y();
});
it("Check a11y violations on revocation dialog", () => {
cy.findByTestId("action-dropdown").click();
cy.findByTestId("revocation").click();
cy.checkA11y();
cy.findByTestId("cancel").click();
});
it("Check a11y violations on sign out all active sessions dialog", () => {
cy.findByTestId("action-dropdown").click();
cy.findByTestId("logout-all").click();
cy.checkA11y();
cy.findByTestId("cancel").click();
});
});
});