keycloak-scim/cypress/integration/login_test.spec.ts

30 lines
746 B
TypeScript
Raw Normal View History

2021-01-27 12:56:28 +00:00
import LoginPage from "../support/pages/LoginPage";
import Masthead from "../support/pages/admin_console/Masthead";
import { keycloakBefore } from "../support/util/keycloak_before";
const username = "admin";
const password = "admin";
const loginPage = new LoginPage();
const masthead = new Masthead();
describe("Logging In", () => {
beforeEach(() => {
keycloakBefore();
});
it("displays errors on wrong credentials", () => {
loginPage.logIn("wrong", "user{enter}");
loginPage.checkErrorMessage("Invalid username or password.").isLogInPage();
});
it("logs in", () => {
loginPage.logIn(username, password);
2022-01-05 09:56:38 +00:00
masthead.checkIsAdminConsole();
cy.getCookie("KEYCLOAK_SESSION_LEGACY").should("exist");
});
});