import { v4 as uuid } from "uuid"; import SidebarPage from "../support/pages/admin-ui/SidebarPage"; import LoginPage from "../support/pages/LoginPage"; import CreateUserPage from "../support/pages/admin-ui/manage/users/CreateUserPage"; import Masthead from "../support/pages/admin-ui/Masthead"; import ListingPage from "../support/pages/admin-ui/ListingPage"; import UserDetailsPage from "../support/pages/admin-ui/manage/users/user_details/UserDetailsPage"; import AttributesTab from "../support/pages/admin-ui/manage/AttributesTab"; import ModalUtils from "../support/util/ModalUtils"; import { keycloakBefore } from "../support/util/keycloak_hooks"; import UserGroupsPage from "../support/pages/admin-ui/manage/users/UserGroupsPage"; import adminClient from "../support/util/AdminClient"; import CredentialsPage from "../support/pages/admin-ui/manage/users/CredentialsPage"; import UsersPage from "../support/pages/admin-ui/manage/users/UsersPage"; import IdentityProviderLinksTab from "../support/pages/admin-ui/manage/users/user_details/tabs/IdentityProviderLinksTab"; import RoleMappingTab from "../support/pages/admin-ui/manage/RoleMappingTab"; import CommonPage from "../support/pages/CommonPage"; let groupName = "group"; let groupsList: string[] = []; describe("User creation", () => { const loginPage = new LoginPage(); const sidebarPage = new SidebarPage(); const createUserPage = new CreateUserPage(); const userGroupsPage = new UserGroupsPage(); const masthead = new Masthead(); const modalUtils = new ModalUtils(); const listingPage = new ListingPage(); const userDetailsPage = new UserDetailsPage(); const credentialsPage = new CredentialsPage(); const attributesTab = new AttributesTab(); const usersPage = new UsersPage(); const identityProviderLinksTab = new IdentityProviderLinksTab(); let itemId = "user_crud"; let itemIdWithGroups = "user_with_groups_crud"; let itemIdWithCred = "user_crud_cred"; const itemCredential = "Password"; before(async () => { for (let i = 0; i <= 2; i++) { groupName += "_" + uuid(); await adminClient.createGroup(groupName); groupsList = [...groupsList, groupName]; } }); beforeEach(() => { loginPage.logIn(); keycloakBefore(); sidebarPage.goToUsers(); }); after(() => adminClient.deleteGroups()); it("Go to create User page", () => { createUserPage.goToCreateUser(); cy.url().should("include", "users/add-user"); // Verify Cancel button works createUserPage.cancel(); cy.url().should("not.include", "/add-user"); }); it("Create user test", () => { itemId += "_" + uuid(); // Create createUserPage.goToCreateUser(); createUserPage.createUser(itemId); createUserPage.save(); masthead.checkNotificationMessage("The user has been created"); }); it("Create user with groups test", () => { itemIdWithGroups += uuid(); // Add user from search bar createUserPage.goToCreateUser(); createUserPage.createUser(itemIdWithGroups); createUserPage.toggleAddGroupModal(); const groupsListCopy = groupsList.slice(0, 1); groupsListCopy.forEach((element) => { cy.findByTestId(`${element}-check`).click(); }); createUserPage.joinGroups(); createUserPage.save(); masthead.checkNotificationMessage("The user has been created"); }); it("Create user with credentials test", () => { itemIdWithCred += "_" + uuid(); // Add user from search bar createUserPage.goToCreateUser(); createUserPage.createUser(itemIdWithCred); userDetailsPage.fillUserData(); createUserPage.save(); masthead.checkNotificationMessage("The user has been created"); sidebarPage.waitForPageLoad(); credentialsPage .goToCredentialsTab() .clickEmptyStatePasswordBtn() .fillPasswordForm() .clickConfirmationBtn() .clickSetPasswordBtn(); }); it("Search existing user test", () => { listingPage.searchItem(itemId).itemExist(itemId); }); it("Search non-existing user test", () => { listingPage.searchItem("user_DNE"); cy.findByTestId(listingPage.emptyState).should("exist"); }); it("User details test", () => { sidebarPage.waitForPageLoad(); listingPage.searchItem(itemId).itemExist(itemId); listingPage.goToItemDetails(itemId); userDetailsPage.fillUserData().save(); masthead.checkNotificationMessage("The user has been saved"); sidebarPage.waitForPageLoad(); sidebarPage.goToUsers(); listingPage.searchItem(itemId).itemExist(itemId); }); it("User attributes test", () => { listingPage.goToItemDetails(itemId); attributesTab.goToAttributesTab().addAttribute("key", "value").save(); masthead.checkNotificationMessage("The user has been saved"); }); it("User attributes with multiple values test", () => { listingPage.searchItem(itemId).itemExist(itemId); listingPage.goToItemDetails(itemId); cy.intercept("PUT", `/admin/realms/master/users/*`).as("save-user"); const attributeKey = "key-multiple"; attributesTab .goToAttributesTab() .addAttribute(attributeKey, "other value") .save(); masthead.checkNotificationMessage("The user has been saved"); cy.wait("@save-user").should(({ request, response }) => { expect(response?.statusCode).to.equal(204); expect(request.body.attributes, "response body").deep.equal({ key: ["value"], "key-multiple": ["other value"], }); }); }); it("Add user to groups test", () => { // Go to user groups listingPage.searchItem(itemId).itemExist(itemId); listingPage.goToItemDetails(itemId); userGroupsPage.goToGroupsTab(); userGroupsPage.toggleAddGroupModal(); const groupsListCopy = groupsList.slice(0, 3); groupsListCopy.forEach((element) => { cy.findByTestId(`${element}-check`).click(); }); userGroupsPage.joinGroups(); }); it("Leave group test", () => { listingPage.searchItem(itemId).itemExist(itemId); listingPage.goToItemDetails(itemId); // Go to user groups userGroupsPage.goToGroupsTab(); cy.findByTestId(`leave-${groupsList[0]}`).click(); cy.findByTestId("confirm").click({ force: true }); }); it("search and leave group", () => { listingPage.searchItem(itemId).itemExist(itemId); listingPage.goToItemDetails(itemId); userGroupsPage.goToGroupsTab(); listingPage.searchItem("group"); userGroupsPage.leaveGroupButtonDisabled(); listingPage.clickTableHeaderItemCheckboxAllRows(); userGroupsPage.leaveGroupButtonEnabled(); userGroupsPage.leaveGroup(); }); it("Go to user consents test", () => { listingPage.searchItem(itemId).itemExist(itemId); sidebarPage.waitForPageLoad(); listingPage.goToItemDetails(itemId); cy.findByTestId("user-consents-tab").click(); cy.findByTestId("empty-state").contains("No consents"); }); describe("Identity provider links", () => { const usernameIdpLinksTest = "user_idp_link_test"; const identityProviders = [ { testName: "Bitbucket", displayName: "BitBucket", alias: "bitbucket" }, { testName: "Facebook", displayName: "Facebook", alias: "facebook" }, { testName: "Keycloak-oidc", displayName: "Keycloak OpenID Connect", alias: "keycloak-oidc", }, ]; before(async () => { await Promise.all([ adminClient.createUser({ username: usernameIdpLinksTest, enabled: true, }), identityProviders.forEach((idp) => adminClient.createIdentityProvider(idp.displayName, idp.alias), ), ]); }); after(async () => { await adminClient.deleteUser(usernameIdpLinksTest); await Promise.all( identityProviders.map((idp) => adminClient.deleteIdentityProvider(idp.alias), ), ); }); beforeEach(() => { usersPage.goToUserListTab().goToUserDetailsPage(usernameIdpLinksTest); userDetailsPage.goToIdentityProviderLinksTab(); }); identityProviders.forEach(($idp, linkedIdpsCount) => { it(`Link account to IdP: ${$idp.testName}`, () => { const availableIdpsCount = identityProviders.length - linkedIdpsCount; if (linkedIdpsCount == 0) { identityProviderLinksTab.assertNoIdentityProvidersLinkedMessageExist( true, ); } identityProviderLinksTab .assertAvailableIdentityProvidersItemsEqual(availableIdpsCount) .clickLinkAccount($idp.testName) .assertLinkAccountModalTitleEqual($idp.testName) .assertLinkAccountModalIdentityProviderInputEqual($idp.testName) .typeLinkAccountModalUserId("testUserId") .typeLinkAccountModalUsername("testUsername") .clickLinkAccountModalLinkBtn() .assertNotificationIdentityProviderLinked() .assertLinkedIdentityProvidersItemsEqual(linkedIdpsCount + 1) .assertAvailableIdentityProvidersItemsEqual(availableIdpsCount - 1) .assertLinkedIdentityProviderExist($idp.testName, true) .assertAvailableIdentityProviderExist($idp.testName, false); if (availableIdpsCount - 1 == 0) { identityProviderLinksTab.assertNoAvailableIdentityProvidersMessageExist( true, ); } }); }); it("Link account to already added IdP fail", () => { cy.wrap(null).then(() => adminClient.unlinkAccountIdentityProvider( usernameIdpLinksTest, identityProviders[0].displayName, ), ); sidebarPage.goToUsers(); usersPage.goToUserListTab().goToUserDetailsPage(usernameIdpLinksTest); userDetailsPage.goToIdentityProviderLinksTab(); cy.wrap(null).then(() => adminClient.linkAccountIdentityProvider( usernameIdpLinksTest, identityProviders[0].displayName, ), ); identityProviderLinksTab .clickLinkAccount(identityProviders[0].testName) .assertLinkAccountModalTitleEqual(identityProviders[0].testName) .assertLinkAccountModalIdentityProviderInputEqual( identityProviders[0].testName, ) .typeLinkAccountModalUserId("testUserId") .typeLinkAccountModalUsername("testUsername") .clickLinkAccountModalLinkBtn() .assertNotificationAlreadyLinkedError(); modalUtils.cancelModal(); }); identityProviders.forEach(($idp, availableIdpsCount) => { it(`Unlink account from IdP: ${$idp.testName}`, () => { const linkedIdpsCount = identityProviders.length - availableIdpsCount; if (availableIdpsCount == 0) { identityProviderLinksTab.assertNoAvailableIdentityProvidersMessageExist( true, ); } identityProviderLinksTab .assertAvailableIdentityProvidersItemsEqual(availableIdpsCount) .clickUnlinkAccount($idp.testName) .assertUnLinkAccountModalTitleEqual($idp.testName) .clickUnlinkAccountModalUnlinkBtn() .assertNotificationPoviderLinkRemoved() .assertLinkedIdentityProvidersItemsEqual(linkedIdpsCount - 1) .assertAvailableIdentityProvidersItemsEqual(availableIdpsCount + 1) .assertLinkedIdentityProviderExist($idp.testName, false) .assertAvailableIdentityProviderExist($idp.testName, true); if (linkedIdpsCount - 1 == 0) { identityProviderLinksTab.assertNoIdentityProvidersLinkedMessageExist( true, ); } }); }); }); it("Reset credential of User with empty state", () => { listingPage.goToItemDetails(itemId); credentialsPage .goToCredentialsTab() .clickEmptyStateResetBtn() .fillResetCredentialForm(); masthead.checkNotificationMessage( "Failed: Failed to send execute actions email", ); }); it("Reset credential of User with existing credentials", () => { listingPage.goToItemDetails(itemIdWithCred); credentialsPage .goToCredentialsTab() .clickResetBtn() .fillResetCredentialForm(); masthead.checkNotificationMessage( "Failed: Failed to send execute actions email", ); }); it("Edit credential label", () => { listingPage.goToItemDetails(itemIdWithCred); credentialsPage .goToCredentialsTab() .clickEditCredentialLabelBtn() .fillEditCredentialForm() .clickEditConfirmationBtn(); masthead.checkNotificationMessage( "The user label has been changed successfully.", ); }); it("Show credential data dialog", () => { listingPage.goToItemDetails(itemIdWithCred); credentialsPage .goToCredentialsTab() .clickShowDataDialogBtn() .clickCloseDataDialogBtn(); }); it("Delete credential", () => { listingPage.goToItemDetails(itemIdWithCred); credentialsPage.goToCredentialsTab(); cy.wait(2000); listingPage.deleteItem(itemCredential); modalUtils.checkModalTitle("Delete credentials?").confirmModal(); masthead.checkNotificationMessage( "The credentials has been deleted successfully.", ); }); it("Delete user from search bar test", () => { // Delete sidebarPage.waitForPageLoad(); listingPage.searchItem(itemId).itemExist(itemId); listingPage.deleteItemFromSearchBar(itemId); modalUtils.checkModalTitle("Delete user?").confirmModal(); masthead.checkNotificationMessage("The user has been deleted"); sidebarPage.waitForPageLoad(); listingPage.itemExist(itemId, false); }); it("Delete user with groups test", () => { // Delete listingPage.deleteItem(itemIdWithGroups); modalUtils.checkModalTitle("Delete user?").confirmModal(); masthead.checkNotificationMessage("The user has been deleted"); sidebarPage.waitForPageLoad(); listingPage.itemExist(itemIdWithGroups, false); }); it("Delete user with credential test", () => { // Delete listingPage.deleteItem(itemIdWithCred); modalUtils.checkModalTitle("Delete user?").confirmModal(); masthead.checkNotificationMessage("The user has been deleted"); sidebarPage.waitForPageLoad(); listingPage.itemExist(itemIdWithCred, false); }); describe("Accessibility tests for users", () => { const a11yUser = "a11y-user"; const role = "admin"; const roleMappingTab = new RoleMappingTab(""); beforeEach(() => { loginPage.logIn(); keycloakBefore(); sidebarPage.goToUsers(); cy.injectAxe(); }); it("Check a11y violations on load/ users list", () => { cy.checkA11y(); }); it("Check a11y violations on empty create user form", () => { createUserPage.goToCreateUser(); cy.checkA11y(); }); it("Check a11y violations on user details tab", () => { createUserPage.goToCreateUser(); createUserPage.createUser(a11yUser); userDetailsPage.fillUserData(); createUserPage.save(); cy.checkA11y(); }); it("Check a11y violations on user attributes tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); attributesTab.goToAttributesTab(); cy.checkA11y(); }); it("Check a11y violations on user credentials tab setting a password", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); credentialsPage.goToCredentialsTab(); credentialsPage .clickEmptyStatePasswordBtn() .fillPasswordForm() .clickConfirmationBtn() .clickSetPasswordBtn(); cy.checkA11y(); }); it("Check a11y violations on user credentials tab resetting a password", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); credentialsPage.goToCredentialsTab(); credentialsPage.clickResetBtn(); cy.checkA11y(); modalUtils.cancelModal(); }); it("Check a11y violations on user role mapping tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); roleMappingTab.goToRoleMappingTab(); cy.checkA11y(); }); it("Check a11y violations on user role mapping tab assigning a role dialog", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); roleMappingTab.goToRoleMappingTab(); cy.findByTestId("assignRole").click(); cy.checkA11y(); roleMappingTab.selectRow(role).assign(); }); it("Check a11y violations on user groups tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userGroupsPage.goToGroupsTab(); cy.checkA11y(); }); it("Check a11y violations on user groups tab joining group dialog", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userGroupsPage.goToGroupsTab(); cy.findByTestId("no-groups-empty-action").click(); cy.checkA11y(); }); it("Check a11y violations on user groups tab joining group", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userGroupsPage.goToGroupsTab(); cy.findByTestId("no-groups-empty-action").click(); const groupsListCopy = groupsList.slice(0, 1); groupsListCopy.forEach((element) => { cy.findByTestId(`${element}-check`).click(); }); createUserPage.joinGroups(); cy.checkA11y(); }); it("Check a11y violations on user consents tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userDetailsPage.goToConsentsTab(); cy.checkA11y(); }); it("Check a11y violations on user identity provider links tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userDetailsPage.goToIdentityProviderLinksTab(); cy.checkA11y(); }); it("Check a11y violations on user sessions tab", () => { usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); userDetailsPage.goToSessionsTab(); cy.checkA11y(); }); it("Check a11y violations on user deleting dialog", () => { const commonPage = new CommonPage(); usersPage.goToUserListTab().goToUserDetailsPage(a11yUser); commonPage .actionToolbarUtils() .clickActionToggleButton() .clickDropdownItem("Delete"); cy.checkA11y(); cy.findByTestId("confirm").click(); }); it("Check a11y violations on permissions tab", () => { usersPage.goToPermissionsTab(); cy.checkA11y(); }); }); });