2021-01-27 12:56:28 +00:00
|
|
|
import LoginPage from "../support/pages/LoginPage";
|
|
|
|
import Masthead from "../support/pages/admin_console/Masthead";
|
2022-02-22 12:46:49 +00:00
|
|
|
import ListingPage, {
|
|
|
|
Filter,
|
|
|
|
FilterAssignedType,
|
|
|
|
FilterProtocol,
|
|
|
|
} from "../support/pages/admin_console/ListingPage";
|
2021-01-27 12:56:28 +00:00
|
|
|
import SidebarPage from "../support/pages/admin_console/SidebarPage";
|
|
|
|
import CreateClientScopePage from "../support/pages/admin_console/manage/client_scopes/CreateClientScopePage";
|
2022-03-09 16:42:51 +00:00
|
|
|
import { keycloakBefore } from "../support/util/keycloak_hooks";
|
2021-04-20 12:10:00 +00:00
|
|
|
import RoleMappingTab from "../support/pages/admin_console/manage/RoleMappingTab";
|
2021-05-06 05:31:40 +00:00
|
|
|
import ModalUtils from "../support/util/ModalUtils";
|
2022-02-24 10:31:46 +00:00
|
|
|
import adminClient from "../support/util/AdminClient";
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-27 12:47:57 +00:00
|
|
|
let itemId = "client_scope_crud";
|
|
|
|
const loginPage = new LoginPage();
|
|
|
|
const masthead = new Masthead();
|
|
|
|
const sidebarPage = new SidebarPage();
|
|
|
|
const listingPage = new ListingPage();
|
|
|
|
const createClientScopePage = new CreateClientScopePage();
|
2021-05-06 05:31:40 +00:00
|
|
|
const modalUtils = new ModalUtils();
|
2021-01-27 12:47:57 +00:00
|
|
|
|
2021-10-04 06:03:19 +00:00
|
|
|
describe("Client Scopes test", () => {
|
2022-02-22 12:46:49 +00:00
|
|
|
const modalMessageDeleteConfirmation =
|
|
|
|
"Are you sure you want to delete this client scope";
|
|
|
|
const notificationMessageDeletionConfirmation =
|
|
|
|
"The client scope has been deleted";
|
2022-03-06 15:25:37 +00:00
|
|
|
|
2022-02-22 12:46:49 +00:00
|
|
|
const clientScopeName = "client-scope-test";
|
|
|
|
const openIDConnectItemText = "OpenID Connect";
|
|
|
|
const clientScope = {
|
|
|
|
name: clientScopeName,
|
|
|
|
description: "",
|
|
|
|
protocol: "openid-connect",
|
|
|
|
attributes: {
|
|
|
|
"include.in.token.scope": "true",
|
|
|
|
"display.on.consent.screen": "true",
|
|
|
|
"gui.order": "1",
|
|
|
|
"consent.screen.text": "",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
clientScope.name = clientScopeName + i;
|
2022-02-24 10:31:46 +00:00
|
|
|
await adminClient.createClientScope(clientScope);
|
2022-02-22 12:46:49 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
for (let i = 0; i < 5; i++) {
|
2022-02-24 10:31:46 +00:00
|
|
|
if (await adminClient.existsClientScope(clientScopeName + i)) {
|
|
|
|
await adminClient.deleteClientScope(clientScopeName + i);
|
2021-12-10 12:24:26 +00:00
|
|
|
}
|
2022-02-22 12:46:49 +00:00
|
|
|
}
|
|
|
|
});
|
2021-12-10 12:24:26 +00:00
|
|
|
|
2022-02-22 12:46:49 +00:00
|
|
|
describe("Client Scope filter list items", () => {
|
|
|
|
before(() => {
|
2021-12-10 12:24:26 +00:00
|
|
|
keycloakBefore();
|
|
|
|
loginPage.logIn();
|
2022-02-22 12:46:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-12-10 12:24:26 +00:00
|
|
|
sidebarPage.goToClientScopes();
|
|
|
|
});
|
|
|
|
|
2022-02-22 12:46:49 +00:00
|
|
|
it("should filter item by name", () => {
|
|
|
|
const itemName = clientScopeName + 0;
|
|
|
|
listingPage
|
|
|
|
.searchItem(itemName, false)
|
|
|
|
.itemsEqualTo(1)
|
|
|
|
.itemExist(itemName, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should filter items by Assigned type All types", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.AssignedType)
|
|
|
|
.selectSecondaryFilterAssignedType(FilterAssignedType.AllTypes)
|
|
|
|
.itemExist(FilterAssignedType.Default, true)
|
|
|
|
.itemExist(FilterAssignedType.Optional, true)
|
|
|
|
.itemExist(FilterAssignedType.None, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should filter items by Assigned type Default", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.AssignedType)
|
|
|
|
.selectSecondaryFilterAssignedType(FilterAssignedType.Default)
|
|
|
|
.itemExist(FilterAssignedType.Default, true)
|
|
|
|
.itemExist(FilterAssignedType.Optional, false)
|
|
|
|
.itemExist(FilterAssignedType.None, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should filter items by Assigned type Optional", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.AssignedType)
|
|
|
|
.selectSecondaryFilterAssignedType(FilterAssignedType.Optional)
|
|
|
|
.itemExist(FilterAssignedType.Default, false)
|
|
|
|
.itemExist(FilterAssignedType.Optional, true)
|
|
|
|
.itemExist(FilterAssignedType.None, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO https://github.com/keycloak/keycloak-admin-ui/issues/1959
|
|
|
|
it("should filter items by Protocol All", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.Protocol)
|
|
|
|
.selectSecondaryFilterProtocol(FilterProtocol.All)
|
|
|
|
.showNextPageTableItems()
|
|
|
|
.itemExist(FilterProtocol.SAML, true)
|
|
|
|
.itemExist(openIDConnectItemText, true); //using FilterProtocol.OpenID will fail, text does not match.
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO https://github.com/keycloak/keycloak-admin-ui/issues/1959
|
|
|
|
it("should filter items by Protocol SAML", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.Protocol)
|
|
|
|
.selectSecondaryFilterProtocol(FilterProtocol.SAML)
|
|
|
|
.itemExist(FilterProtocol.SAML, true)
|
|
|
|
.itemExist(openIDConnectItemText, false); //using FilterProtocol.OpenID will fail, text does not match.
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO https://github.com/keycloak/keycloak-admin-ui/issues/1959
|
|
|
|
it("should filter items by Protocol OpenID", () => {
|
|
|
|
listingPage
|
|
|
|
.selectFilter(Filter.Protocol)
|
|
|
|
.selectSecondaryFilterProtocol(FilterProtocol.OpenID)
|
|
|
|
.itemExist(FilterProtocol.SAML, false)
|
|
|
|
.itemExist(openIDConnectItemText, true); //using FilterProtocol.OpenID will fail, text does not match.
|
2021-12-10 12:24:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should show items on next page are more than 11", () => {
|
|
|
|
listingPage.showNextPageTableItems();
|
2022-02-22 12:46:49 +00:00
|
|
|
listingPage.itemsGreaterThan(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Client Scope modify list items", () => {
|
|
|
|
const itemName = clientScopeName + 0;
|
|
|
|
before(() => {
|
|
|
|
keycloakBefore();
|
|
|
|
loginPage.logIn();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
sidebarPage.goToClientScopes();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should modify selected item type to Default from search bar", () => {
|
|
|
|
listingPage
|
|
|
|
.clickItemCheckbox(itemName)
|
|
|
|
.changeTypeToOfSelectedItems(FilterAssignedType.Default);
|
|
|
|
listingPage.itemContainValue(itemName, 2, FilterAssignedType.Default);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should modify selected item type to Optional from search bar", () => {
|
|
|
|
listingPage
|
|
|
|
.clickItemCheckbox(itemName)
|
|
|
|
.changeTypeToOfSelectedItems(FilterAssignedType.Optional);
|
|
|
|
listingPage.itemContainValue(itemName, 2, FilterAssignedType.Optional);
|
|
|
|
});
|
2021-12-10 12:24:26 +00:00
|
|
|
|
2022-02-22 12:46:49 +00:00
|
|
|
const expectedItemAssignedTypes = [
|
|
|
|
FilterAssignedType.Default,
|
|
|
|
FilterAssignedType.Optional,
|
|
|
|
FilterAssignedType.None,
|
|
|
|
];
|
|
|
|
expectedItemAssignedTypes.forEach(($assignedType) => {
|
|
|
|
const itemName = clientScopeName + 0;
|
|
|
|
it(`should modify item ${itemName} AssignedType to ${$assignedType} from item bar`, () => {
|
|
|
|
listingPage
|
|
|
|
.searchItem(clientScopeName, false)
|
|
|
|
.clickRowSelectItem(itemName, $assignedType);
|
|
|
|
// sidebarPage.waitForPageLoad(); //not working
|
|
|
|
cy.wait(2000);
|
|
|
|
listingPage.searchItem(itemName, false).itemExist($assignedType);
|
|
|
|
});
|
2021-12-10 12:24:26 +00:00
|
|
|
});
|
2022-02-22 12:46:49 +00:00
|
|
|
|
|
|
|
it("should not allow to modify item AssignedType from search bar when no item selected", () => {
|
|
|
|
const itemName = clientScopeName + 0;
|
|
|
|
listingPage
|
|
|
|
.searchItem(itemName, false)
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled()
|
|
|
|
.clickSearchBarActionButton()
|
|
|
|
.checkDropdownItemIsDisabled("Delete")
|
|
|
|
.clickItemCheckbox(itemName)
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled(false)
|
|
|
|
.clickSearchBarActionButton()
|
|
|
|
.checkDropdownItemIsDisabled("Delete", false)
|
|
|
|
.clickItemCheckbox(itemName)
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled()
|
|
|
|
.clickSearchBarActionButton()
|
|
|
|
.checkDropdownItemIsDisabled("Delete");
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO: blocked by https://github.com/keycloak/keycloak-admin-ui/issues/1952
|
|
|
|
//it("should export item from item bar", () => {
|
|
|
|
|
|
|
|
//});
|
2021-12-10 12:24:26 +00:00
|
|
|
});
|
|
|
|
|
2022-02-22 12:46:49 +00:00
|
|
|
describe("Client Scope delete list items ", () => {
|
|
|
|
before(() => {
|
|
|
|
keycloakBefore();
|
|
|
|
loginPage.logIn();
|
|
|
|
});
|
|
|
|
|
2021-10-04 06:03:19 +00:00
|
|
|
beforeEach(() => {
|
2022-02-22 12:46:49 +00:00
|
|
|
sidebarPage.goToClientScopes();
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO: Partially blocked by https://github.com/keycloak/keycloak-admin-ui/issues/1854
|
|
|
|
it("should delete item from item bar", () => {
|
|
|
|
listingPage
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled()
|
|
|
|
.clickItemCheckbox(clientScopeName + 0)
|
|
|
|
.deleteItem(clientScopeName + 0);
|
|
|
|
modalUtils
|
|
|
|
.checkModalMessage(modalMessageDeleteConfirmation)
|
|
|
|
.confirmModal();
|
|
|
|
masthead.checkNotificationMessage(
|
|
|
|
notificationMessageDeletionConfirmation
|
|
|
|
);
|
|
|
|
//listingPage.checkInSearchBarChangeTypeToButtonIsDisabled();
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO: Partially blocked by https://github.com/keycloak/keycloak-admin-ui/issues/1854
|
|
|
|
it("should delete selected item from search bar", () => {
|
|
|
|
listingPage
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled()
|
|
|
|
.clickItemCheckbox(clientScopeName + 1)
|
|
|
|
.clickSearchBarActionButton()
|
|
|
|
.clickSearchBarActionItem("Delete");
|
|
|
|
modalUtils
|
|
|
|
.checkModalMessage(modalMessageDeleteConfirmation)
|
|
|
|
.confirmModal();
|
|
|
|
masthead.checkNotificationMessage(
|
|
|
|
notificationMessageDeletionConfirmation
|
|
|
|
);
|
|
|
|
//listingPage.checkInSearchBarChangeTypeToButtonIsDisabled();
|
|
|
|
});
|
|
|
|
|
|
|
|
//TODO: Partially blocked by https://github.com/keycloak/keycloak-admin-ui/issues/1854
|
|
|
|
it("should delete multiple selected items from search bar", () => {
|
|
|
|
listingPage
|
|
|
|
.checkInSearchBarChangeTypeToButtonIsDisabled()
|
|
|
|
.clickItemCheckbox(clientScopeName + 2)
|
|
|
|
.clickItemCheckbox(clientScopeName + 3)
|
|
|
|
.clickItemCheckbox(clientScopeName + 4)
|
|
|
|
.clickSearchBarActionButton()
|
|
|
|
.clickSearchBarActionItem("Delete");
|
|
|
|
modalUtils
|
|
|
|
.checkModalMessage(modalMessageDeleteConfirmation)
|
|
|
|
.confirmModal();
|
|
|
|
masthead.checkNotificationMessage(
|
|
|
|
notificationMessageDeletionConfirmation
|
|
|
|
);
|
|
|
|
//listingPage.checkInSearchBarChangeTypeToButtonIsDisabled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Client Scope creation", () => {
|
|
|
|
before(() => {
|
2021-03-18 12:48:14 +00:00
|
|
|
keycloakBefore();
|
2021-01-21 12:09:50 +00:00
|
|
|
loginPage.logIn();
|
2022-02-22 12:46:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-01-21 12:09:50 +00:00
|
|
|
sidebarPage.goToClientScopes();
|
2021-01-25 17:17:59 +00:00
|
|
|
});
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-10-04 06:03:19 +00:00
|
|
|
it("should fail creating client scope", () => {
|
2022-02-22 12:46:49 +00:00
|
|
|
sidebarPage.waitForPageLoad();
|
2021-01-21 12:09:50 +00:00
|
|
|
listingPage.goToCreateItem();
|
|
|
|
|
|
|
|
createClientScopePage.save().checkClientNameRequiredMessage();
|
|
|
|
|
|
|
|
createClientScopePage
|
|
|
|
.fillClientScopeData("address")
|
|
|
|
.save()
|
|
|
|
.checkClientNameRequiredMessage(false);
|
|
|
|
|
|
|
|
// The error should inform about duplicated name/id
|
|
|
|
masthead.checkNotificationMessage(
|
2021-07-28 12:01:42 +00:00
|
|
|
"Could not create client scope: 'Client Scope address already exists'"
|
2021-01-21 12:09:50 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2021-01-27 12:56:28 +00:00
|
|
|
it("Client scope CRUD test", () => {
|
2021-01-25 17:17:59 +00:00
|
|
|
itemId += "_" + (Math.random() + 1).toString(36).substring(7);
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-25 17:17:59 +00:00
|
|
|
// Create
|
2021-01-27 12:56:28 +00:00
|
|
|
listingPage.itemExist(itemId, false).goToCreateItem();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-01-27 12:56:28 +00:00
|
|
|
createClientScopePage.fillClientScopeData(itemId).save();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-03-18 12:48:14 +00:00
|
|
|
masthead.checkNotificationMessage("Client scope created");
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-08-09 14:31:41 +00:00
|
|
|
sidebarPage.goToClientScopes();
|
2021-09-15 09:45:56 +00:00
|
|
|
sidebarPage.waitForPageLoad();
|
2021-06-02 16:41:40 +00:00
|
|
|
|
2021-08-09 14:31:41 +00:00
|
|
|
// Delete
|
|
|
|
listingPage
|
|
|
|
.searchItem(itemId, false)
|
|
|
|
.itemExist(itemId)
|
|
|
|
.deleteItem(itemId);
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-08-09 14:31:41 +00:00
|
|
|
modalUtils
|
2022-02-22 12:46:49 +00:00
|
|
|
.checkModalMessage(modalMessageDeleteConfirmation)
|
2021-08-09 14:31:41 +00:00
|
|
|
.confirmModal();
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-08-09 14:31:41 +00:00
|
|
|
masthead.checkNotificationMessage("The client scope has been deleted");
|
2021-01-21 12:09:50 +00:00
|
|
|
|
2021-08-09 14:31:41 +00:00
|
|
|
listingPage.itemExist(itemId, false);
|
2021-01-21 12:09:50 +00:00
|
|
|
});
|
|
|
|
});
|
2021-04-20 12:10:00 +00:00
|
|
|
|
|
|
|
describe("Scope test", () => {
|
|
|
|
const scopeTab = new RoleMappingTab();
|
|
|
|
const scopeName = "address";
|
2021-05-06 05:31:40 +00:00
|
|
|
it("Assign role", () => {
|
2022-03-06 15:25:37 +00:00
|
|
|
const role = "admin";
|
2021-04-20 12:10:00 +00:00
|
|
|
listingPage.searchItem(scopeName, false).goToItemDetails(scopeName);
|
2022-01-08 09:27:57 +00:00
|
|
|
scopeTab.goToScopeTab().assignRole().selectRow(role).assign();
|
2021-04-20 12:10:00 +00:00
|
|
|
masthead.checkNotificationMessage("Role mapping updated");
|
|
|
|
scopeTab.checkRoles([role]);
|
2022-01-08 09:27:57 +00:00
|
|
|
scopeTab.hideInheritedRoles().selectRow(role).unAssign();
|
2021-05-06 05:31:40 +00:00
|
|
|
modalUtils.checkModalTitle("Remove mapping?").confirmModal();
|
|
|
|
scopeTab.checkRoles([]);
|
2021-04-20 12:10:00 +00:00
|
|
|
});
|
|
|
|
});
|
2021-01-27 12:56:28 +00:00
|
|
|
});
|