keycloak-scim/cypress/support/pages/admin_console/manage/clients/AdvancedTab.ts
2022-01-08 10:27:57 +01:00

108 lines
2.5 KiB
TypeScript

import moment from "moment";
export default class AdvancedTab {
private setToNowBtn = "#setToNow";
private clearBtn = "#clear";
private pushBtn = "#push";
private notBeforeInput = "#kc-not-before";
private clusterNodesExpandBtn =
".pf-c-expandable-section .pf-c-expandable-section__toggle";
private testClusterAvailability = "#testClusterAvailability";
private registerNodeManuallyBtn = "no-nodes-registered-empty-action";
private nodeHostInput = "#nodeHost";
private addNodeConfirmBtn = "#add-node-confirm";
private accessTokenSignatureAlgorithmInput = "#accessTokenSignatureAlgorithm";
private fineGrainSaveBtn = "#fineGrainSave";
private fineGrainRevertBtn = "#fineGrainRevert";
private advancedTab = "#pf-tab-advanced-advanced";
goToAdvancedTab() {
cy.get(this.advancedTab).click();
return this;
}
setRevocationToNow() {
cy.get(this.setToNowBtn).click();
return this;
}
clearRevocation() {
cy.get(this.clearBtn).click();
return this;
}
pushRevocation() {
cy.get(this.pushBtn).click();
return this;
}
checkRevacationIsNone() {
cy.get(this.notBeforeInput).should("have.value", "None");
return this;
}
checkRevocationIsSetToNow() {
cy.get(this.notBeforeInput).should("have.value", moment().format("LLL"));
return this;
}
expandClusterNode() {
cy.get(this.clusterNodesExpandBtn).click();
return this;
}
checkTestClusterAvailability(active: boolean) {
cy.get(this.testClusterAvailability).should(
(active ? "not." : "") + "have.class",
"pf-m-disabled"
);
return this;
}
registerNodeManually() {
cy.findByTestId(this.registerNodeManuallyBtn).click();
return this;
}
fillHost(host: string) {
cy.get(this.nodeHostInput).type(host);
return this;
}
saveHost() {
cy.get(this.addNodeConfirmBtn).click();
return this;
}
selectAccessTokenSignatureAlgorithm(algorithm: string) {
cy.get(this.accessTokenSignatureAlgorithmInput).click();
cy.get(this.accessTokenSignatureAlgorithmInput + " + ul")
.contains(algorithm)
.click();
return this;
}
checkAccessTokenSignatureAlgorithm(algorithm: string) {
cy.get(this.accessTokenSignatureAlgorithmInput).should(
"have.text",
algorithm
);
return this;
}
saveFineGrain() {
cy.get(this.fineGrainSaveBtn).click();
return this;
}
revertFineGrain() {
cy.get(this.fineGrainRevertBtn).click();
return this;
}
}