2021-08-09 08:47:34 +00:00
|
|
|
type RequirementType = "Required" | "Alternative" | "Disabled" | "Conditional";
|
|
|
|
|
|
|
|
export default class FlowDetails {
|
|
|
|
executionExists(name: string) {
|
|
|
|
this.getExecution(name).should("exist");
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private getExecution(name: string) {
|
2021-09-17 13:23:34 +00:00
|
|
|
return cy.findByTestId(name);
|
2021-08-09 08:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
moveRowTo(from: string, to: string) {
|
2021-09-17 13:23:34 +00:00
|
|
|
cy.findByTestId(from).trigger("dragstart").trigger("dragleave");
|
2021-08-09 08:47:34 +00:00
|
|
|
|
2021-09-17 13:23:34 +00:00
|
|
|
cy.findByTestId(to)
|
2021-08-09 08:47:34 +00:00
|
|
|
.trigger("dragenter")
|
|
|
|
.trigger("dragover")
|
|
|
|
.trigger("drop")
|
|
|
|
.trigger("dragend");
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeRequirement(execution: string, requirement: RequirementType) {
|
|
|
|
this.getExecution(execution)
|
|
|
|
.parentsUntil(".keycloak__authentication__flow-row")
|
|
|
|
.find(".keycloak__authentication__requirement-dropdown")
|
|
|
|
.click()
|
|
|
|
.contains(requirement)
|
|
|
|
.click();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
goToDiagram() {
|
|
|
|
cy.get("#diagramView").click();
|
|
|
|
return this;
|
|
|
|
}
|
2021-09-06 12:43:36 +00:00
|
|
|
|
|
|
|
private clickEditDropdownForFlow(subFlowName: string, option: string) {
|
2021-09-17 13:23:34 +00:00
|
|
|
cy.findByTestId(`${subFlowName}-edit-dropdown`)
|
|
|
|
.click()
|
|
|
|
.contains(option)
|
|
|
|
.click();
|
2021-09-06 12:43:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
addExecution(subFlowName: string, executionTestId: string) {
|
|
|
|
this.clickEditDropdownForFlow(subFlowName, "Add step");
|
|
|
|
|
|
|
|
cy.get(".pf-c-pagination").should("exist");
|
2021-09-17 13:23:34 +00:00
|
|
|
cy.findByTestId(executionTestId).click();
|
|
|
|
cy.findByTestId("modal-add").click();
|
2021-09-06 12:43:36 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
addCondition(subFlowName: string, executionTestId: string) {
|
|
|
|
this.clickEditDropdownForFlow(subFlowName, "Add condition");
|
|
|
|
|
|
|
|
cy.get(".pf-c-pagination").should("not.exist");
|
2021-09-17 13:23:34 +00:00
|
|
|
cy.findByTestId(executionTestId).click();
|
|
|
|
cy.findByTestId("modal-add").click();
|
2021-09-06 12:43:36 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
2021-08-09 08:47:34 +00:00
|
|
|
}
|