2021-12-06 10:50:29 +00:00
|
|
|
import LoginPage from "../support/pages/LoginPage";
|
|
|
|
import Masthead from "../support/pages/admin_console/Masthead";
|
|
|
|
import ListingPage from "../support/pages/admin_console/ListingPage";
|
|
|
|
import SidebarPage from "../support/pages/admin_console/SidebarPage";
|
|
|
|
import ModalUtils from "../support/util/ModalUtils";
|
|
|
|
import AdminClient from "../support/util/AdminClient";
|
2022-01-07 07:27:58 +00:00
|
|
|
import { keycloakBefore } from "../support/util/keycloak_hooks";
|
2021-12-06 10:50:29 +00:00
|
|
|
|
|
|
|
const loginPage = new LoginPage();
|
|
|
|
const masthead = new Masthead();
|
|
|
|
const sidebarPage = new SidebarPage();
|
|
|
|
const listingPage = new ListingPage();
|
|
|
|
const modalUtils = new ModalUtils();
|
|
|
|
|
|
|
|
describe("Clients SAML tests", () => {
|
|
|
|
describe("SAML test", () => {
|
|
|
|
const samlClientName = "saml";
|
|
|
|
|
|
|
|
before(() => {
|
|
|
|
new AdminClient().createClient({
|
|
|
|
protocol: "saml",
|
|
|
|
clientId: samlClientName,
|
|
|
|
publicClient: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
after(() => {
|
|
|
|
new AdminClient().deleteClient(samlClientName);
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
keycloakBefore();
|
|
|
|
loginPage.logIn();
|
|
|
|
sidebarPage.goToClients();
|
|
|
|
listingPage.searchItem(samlClientName).goToItemDetails(samlClientName);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should display the saml sections on details screen", () => {
|
|
|
|
cy.get(".pf-c-jump-links__list").should(($ul) => {
|
|
|
|
expect($ul)
|
|
|
|
.to.contain("SAML capabilities")
|
|
|
|
.to.contain("Signature and Encryption");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should save force name id format", () => {
|
|
|
|
cy.get(".pf-c-jump-links__list").contains("SAML capabilities").click();
|
|
|
|
|
|
|
|
cy.findByTestId("forceNameIdFormat").click({
|
|
|
|
force: true,
|
|
|
|
});
|
|
|
|
cy.findByTestId("settingsSave").click();
|
|
|
|
masthead.checkNotificationMessage("Client successfully updated");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("SAML keys tab", () => {
|
|
|
|
const clientId = "saml-keys";
|
|
|
|
|
|
|
|
before(() => {
|
|
|
|
new AdminClient().createClient({
|
|
|
|
clientId,
|
|
|
|
protocol: "saml",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
after(() => {
|
|
|
|
new AdminClient().deleteClient(clientId);
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
keycloakBefore();
|
|
|
|
loginPage.logIn();
|
|
|
|
sidebarPage.goToClients();
|
|
|
|
listingPage.searchItem(clientId).goToItemDetails(clientId);
|
2022-01-31 07:20:35 +00:00
|
|
|
cy.findByTestId("keysTab").click();
|
2021-12-06 10:50:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't disable when no", () => {
|
|
|
|
cy.findByTestId("clientSignature").click({ force: true });
|
|
|
|
|
|
|
|
modalUtils
|
|
|
|
.checkModalTitle('Disable "Client signature required"')
|
|
|
|
.cancelModal();
|
|
|
|
|
|
|
|
cy.findAllByTestId("certificate").should("have.length", 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("disable client signature", () => {
|
|
|
|
cy.findByTestId("clientSignature").click({ force: true });
|
|
|
|
|
|
|
|
modalUtils
|
|
|
|
.checkModalTitle('Disable "Client signature required"')
|
|
|
|
.confirmModal();
|
|
|
|
|
|
|
|
masthead.checkNotificationMessage("Client successfully updated");
|
|
|
|
cy.findAllByTestId("certificate").should("have.length", 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should enable Encryption keys config", () => {
|
|
|
|
cy.findByTestId("encryptAssertions").click({ force: true });
|
|
|
|
|
|
|
|
cy.findByTestId("generate").click();
|
|
|
|
masthead.checkNotificationMessage(
|
|
|
|
"New key pair and certificate generated successfully"
|
|
|
|
);
|
|
|
|
|
|
|
|
modalUtils.confirmModal();
|
|
|
|
cy.findAllByTestId("certificate").should("have.length", 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|