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

175 lines
5 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 { keycloakBefore } from "../support/util/keycloak_hooks";
import PageObject from "../support/pages/admin-ui/components/PageObject";
import adminClient from "../support/util/AdminClient";
import { v4 as uuid } from "uuid";
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 page = new PageObject();
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)
.assertRowItemActionExist(admin, "Sign out");
2022-09-12 13:30:12 +00:00
});
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);
});
});
describe("Offline sessions", () => {
const clientId = "offline-client-" + uuid();
const username = "user-" + uuid();
beforeEach(async () => {
await Promise.all([
adminClient.createClient({
protocol: "openid-connect",
clientId,
publicClient: false,
directAccessGrantsEnabled: true,
clientAuthenticatorType: "client-secret",
secret: "secret",
standardFlowEnabled: true,
}),
adminClient.createUser({
// Create user in master realm
username: username,
enabled: true,
credentials: [{ type: "password", value: "password" }],
}),
]);
await adminClient.auth({
username,
password: "password",
grantType: "password",
clientId,
clientSecret: "secret",
scopes: ["openid", "offline_access"],
});
});
after(() =>
Promise.all([
adminClient.deleteClient(clientId),
adminClient.deleteUser(username),
]),
);
it("check offline token", () => {
sidebarPage.waitForPageLoad();
listingPage.searchItem(clientId, false);
sidebarPage.waitForPageLoad();
// Log out the associated online session of the user
commonPage
.tableUtils()
.checkRowItemExists(username)
.selectRowItemAction(username, "Sign out");
listingPage.searchItem(clientId, false);
sidebarPage.waitForPageLoad();
// Now check that offline session exists (online one has been logged off above)
// and that it is possible to revoke it
commonPage
.tableUtils()
.checkRowItemExists(username)
.selectRowItemAction(username, "Revoke");
});
});
2022-09-12 13:30:12 +00:00
describe("Search", () => {
it("search existing session", () => {
listingPage.searchItem(admin, false);
listingPage.itemExist(admin, true);
page.assertEmptyStateExist(false);
2022-09-12 13:30:12 +00:00
});
2022-09-12 13:30:12 +00:00
it("search non-existant session", () => {
listingPage.searchItem("non-existant-session", false);
page.assertEmptyStateExist(true);
2022-09-12 13:30:12 +00:00
});
});
//TODO seems these tests are not stable on CI
describe.skip("revocation", () => {
2022-09-12 13:30:12 +00:00
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();
});
});
});