Files
zitadel/apps/login/cypress/integration/login.cy.ts

110 lines
3.4 KiB
TypeScript
Raw Normal View History

2023-07-05 19:06:21 +02:00
import { stub } from "../support/mock";
2023-07-04 08:50:43 +02:00
2023-07-04 14:52:33 +02:00
describe("login", () => {
2023-07-04 13:25:40 +02:00
beforeEach(() => {
2023-07-05 19:06:21 +02:00
stub("zitadel.session.v2alpha.SessionService", "CreateSession", {
2023-07-04 13:25:40 +02:00
data: {
details: {
sequence: 859,
changeDate: "2023-07-04T07:58:20.126Z",
resourceOwner: "220516472055706145",
},
sessionId: "221394658884845598",
sessionToken:
"SDMc7DlYXPgwRJ-Tb5NlLqynysHjEae3csWsKzoZWLplRji0AYY3HgAkrUEBqtLCvOayLJPMd0ax4Q",
challenges: undefined,
2023-07-04 10:00:42 +02:00
},
});
2023-07-05 19:06:21 +02:00
stub("zitadel.session.v2alpha.SessionService", "GetSession", {
2023-07-04 13:25:40 +02:00
data: {
session: {
id: "221394658884845598",
creationDate: "2023-07-04T07:58:20.026Z",
changeDate: "2023-07-04T07:58:20.126Z",
sequence: 859,
factors: {
user: {
id: "123",
loginName: "john@zitadel.com",
},
password: undefined,
passkey: undefined,
intent: undefined,
2023-07-04 10:09:30 +02:00
},
2023-07-04 13:25:40 +02:00
metadata: {},
domain: "localhost",
2023-07-04 09:34:07 +02:00
},
},
});
2023-07-05 19:06:21 +02:00
stub("zitadel.settings.v2alpha.SettingsService", "GetLoginSettings", {
2023-07-05 14:16:04 +02:00
data: {
settings: {
passkeysType: 1,
2023-07-04 13:25:40 +02:00
},
2023-07-05 14:16:04 +02:00
},
});
});
describe("password login", () => {
beforeEach(() => {
2023-07-05 19:06:21 +02:00
stub(
2023-07-05 14:16:04 +02:00
"zitadel.user.v2alpha.UserService",
"ListAuthenticationMethodTypes",
{
data: {
authMethodTypes: [1], // 1 for password authentication
},
}
);
});
it("should redirect a user with password authentication to /password", () => {
cy.visit("/loginname?loginName=johndoe%40zitadel.com&submit=true");
cy.location("pathname", { timeout: 10_000 }).should("eq", "/password");
});
2023-07-05 19:06:21 +02:00
describe("with passkey prompt", () => {
beforeEach(() => {
stub("zitadel.session.v2alpha.SessionService", "SetSession", {
data: {
details: {
sequence: 859,
changeDate: "2023-07-04T07:58:20.126Z",
resourceOwner: "220516472055706145",
},
sessionToken:
"SDMc7DlYXPgwRJ-Tb5NlLqynysHjEae3csWsKzoZWLplRji0AYY3HgAkrUEBqtLCvOayLJPMd0ax4Q",
challenges: undefined,
},
});
});
it("should prompt a user to setup passwordless authentication if passkey is allowed in the login settings", () => {
cy.visit("/loginname?loginName=john%40zitadel.com&submit=true");
cy.location("pathname", { timeout: 10_000 }).should("eq", "/password");
cy.get('input[type="password"]').focus().type("MyStrongPassword!1");
cy.get('button[type="submit"]').click();
cy.location("pathname", { timeout: 10_000 }).should("eq", "/passkey/add");
});
});
2023-07-05 14:16:04 +02:00
});
describe("passkey login", () => {
beforeEach(() => {
2023-07-05 19:06:21 +02:00
stub(
2023-07-05 14:16:04 +02:00
"zitadel.user.v2alpha.UserService",
"ListAuthenticationMethodTypes",
{
data: {
authMethodTypes: [2], // 2 for passwordless authentication
},
}
);
});
it("should redirect a user with passwordless authentication to /passkey/login", () => {
cy.visit("/loginname?loginName=johndoe%40zitadel.com&submit=true");
cy.location("pathname", { timeout: 10_000 }).should(
"eq",
"/passkey/login"
);
});
2023-07-04 08:50:43 +02:00
});
2023-07-04 14:13:39 +02:00
});