cc31f0853c
* initial version of create authentication screen * initial version of authentication details * added flow details labels to view header * not in use fix * create execution tree * fixed collapsable row layout * fix drag and drop expand * fix merge error * move to modal * diff and post drag and drop changes * fixed locating the parent row * move "live text" for d&d to common messages * firefox fix * initial version of the diagram * use dagre to layout automatically * moved to sperate file * conditional node * now renders subflows sequential * changed to render sequential or parallel flows * fixed render of sub flows * added button edge, drawer and selectable nodes * add requirement dropdown * also do move so we can merge * also do move so we can merge * fixed merge * added refresh * change requirement * fixed merge error * now uses the new routes * Split out routes into multiple files * Update src/authentication/AuthenticationSection.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * fixed labels * merge fix * make execution of these parrallel * added some tests * Update src/authentication/components/FlowRequirementDropdown.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * more review changes * fixed merge error Co-authored-by: Jon Koops <jonkoops@gmail.com>
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
import { keycloakBefore } from "../support/util/keycloak_before";
|
|
import LoginPage from "../support/pages/LoginPage";
|
|
import SidebarPage from "../support/pages/admin_console/SidebarPage";
|
|
import Masthead from "../support/pages/admin_console/Masthead";
|
|
import ListingPage from "../support/pages/admin_console/ListingPage";
|
|
import DuplicateFlowModal from "../support/pages/admin_console/manage/authentication/DuplicateFlowModal";
|
|
import FlowDetails from "../support/pages/admin_console/manage/authentication/FlowDetail";
|
|
|
|
describe("Authentication test", () => {
|
|
const loginPage = new LoginPage();
|
|
const masthead = new Masthead();
|
|
const sidebarPage = new SidebarPage();
|
|
const listingPage = new ListingPage();
|
|
|
|
const detailPage = new FlowDetails();
|
|
|
|
beforeEach(function () {
|
|
keycloakBefore();
|
|
loginPage.logIn();
|
|
sidebarPage.goToAuthentication();
|
|
});
|
|
|
|
it("should create duplicate of existing flow", () => {
|
|
const modalDialog = new DuplicateFlowModal();
|
|
listingPage.clickRowDetails("Browser").clickDetailMenu("Duplicate");
|
|
modalDialog.fill("Copy of browser");
|
|
|
|
masthead.checkNotificationMessage("Flow successfully duplicated");
|
|
listingPage.itemExist("Copy of browser");
|
|
});
|
|
|
|
it("should show the details of a flow as a table", () => {
|
|
listingPage.goToItemDetails("Copy of browser");
|
|
|
|
detailPage.executionExists("Cookie");
|
|
});
|
|
|
|
it("should move kerberos down", () => {
|
|
listingPage.goToItemDetails("Copy of browser");
|
|
|
|
detailPage.moveRowTo("Kerberos", "Identity Provider Redirector");
|
|
});
|
|
|
|
it("should change requirement of cookie", () => {
|
|
listingPage.goToItemDetails("Copy of browser");
|
|
|
|
detailPage.changeRequirement("Cookie", "Required");
|
|
|
|
masthead.checkNotificationMessage("Flow successfully updated");
|
|
});
|
|
|
|
it("should switch to diagram mode", () => {
|
|
listingPage.goToItemDetails("Copy of browser");
|
|
|
|
detailPage.goToDiagram();
|
|
|
|
cy.get(".react-flow").should("exist");
|
|
});
|
|
});
|