@zitadel/testing 0.0.0 → 0.1.0-alpha.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +124 -42
- package/dist/{app-env-D3W0GYhA.d.mts → app-env-Btmfcflb.d.mts} +4 -4
- package/dist/{app-env-D3W0GYhA.d.mts.map → app-env-Btmfcflb.d.mts.map} +1 -1
- package/dist/app-runner.cjs +1 -1
- package/dist/app-runner.mjs +1 -1
- package/dist/{handshake-CggSIoxF.cjs → handshake-CRKcgkfN.cjs} +3 -2
- package/dist/{handshake-CggSIoxF.cjs.map → handshake-CRKcgkfN.cjs.map} +1 -1
- package/dist/{handshake-BPtWruO8.mjs → handshake-ClzWvG8z.mjs} +3 -2
- package/dist/{handshake-BPtWruO8.mjs.map → handshake-ClzWvG8z.mjs.map} +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.mts +4 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/playwright.cjs +273 -15
- package/dist/playwright.cjs.map +1 -1
- package/dist/playwright.d.mts +173 -6
- package/dist/playwright.d.mts.map +1 -1
- package/dist/playwright.mjs +265 -16
- package/dist/playwright.mjs.map +1 -1
- package/dist/{src-DkG0V4A6.mjs → src-9dFjTIAw.mjs} +19 -17
- package/dist/src-9dFjTIAw.mjs.map +1 -0
- package/dist/{src-BIL0PdSd.cjs → src-I0KAh1zU.cjs} +447 -429
- package/dist/src-I0KAh1zU.cjs.map +1 -0
- package/dist/supervisor.cjs +2 -2
- package/dist/supervisor.mjs +2 -2
- package/package.json +5 -5
- package/dist/src-BIL0PdSd.cjs.map +0 -1
- package/dist/src-DkG0V4A6.mjs.map +0 -1
package/dist/playwright.cjs
CHANGED
|
@@ -1,11 +1,237 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_src = require("./src-
|
|
3
|
-
const require_handshake = require("./handshake-
|
|
2
|
+
const require_src = require("./src-I0KAh1zU.cjs");
|
|
3
|
+
const require_handshake = require("./handshake-CRKcgkfN.cjs");
|
|
4
4
|
const require_orchestration = require("./orchestration-D7QBgQ0l.cjs");
|
|
5
5
|
let node_fs = require("node:fs");
|
|
6
6
|
let node_url = require("node:url");
|
|
7
7
|
let node_path = require("node:path");
|
|
8
8
|
let _playwright_test = require("@playwright/test");
|
|
9
|
+
//#region src/passkey.ts
|
|
10
|
+
/**
|
|
11
|
+
* Attach a virtual passkey authenticator to the page via the Chrome DevTools
|
|
12
|
+
* Protocol. The options mirror a platform authenticator with discoverable
|
|
13
|
+
* credentials and automatic user presence — the profile the consumer journey
|
|
14
|
+
* has run in CI since passkey coverage became mandatory there.
|
|
15
|
+
*
|
|
16
|
+
* Chromium only: the CDP WebAuthn domain does not exist in WebKit or Firefox.
|
|
17
|
+
* The authenticator is bound to this page — drive registration and the later
|
|
18
|
+
* login from the same page, or the credential is gone. Serve the app under
|
|
19
|
+
* test on an origin WebAuthn accepts as a relying-party ID: HTTPS on a real
|
|
20
|
+
* domain, or `http://localhost` for local runs — raw IP origins such as
|
|
21
|
+
* `http://127.0.0.1` are invalid RP IDs.
|
|
22
|
+
*/
|
|
23
|
+
async function enableVirtualPasskey(page) {
|
|
24
|
+
let client;
|
|
25
|
+
try {
|
|
26
|
+
client = await page.context().newCDPSession(page);
|
|
27
|
+
} catch (error) {
|
|
28
|
+
throw new Error("enableVirtualPasskey: could not open a CDP session — passkey testing needs Chromium's virtual authenticator, so run passkey specs in a Chromium project.", { cause: error });
|
|
29
|
+
}
|
|
30
|
+
let authenticatorId;
|
|
31
|
+
try {
|
|
32
|
+
await client.send("WebAuthn.enable");
|
|
33
|
+
({authenticatorId} = await client.send("WebAuthn.addVirtualAuthenticator", { options: {
|
|
34
|
+
protocol: "ctap2",
|
|
35
|
+
transport: "internal",
|
|
36
|
+
hasResidentKey: true,
|
|
37
|
+
hasUserVerification: true,
|
|
38
|
+
isUserVerified: true,
|
|
39
|
+
automaticPresenceSimulation: true
|
|
40
|
+
} }));
|
|
41
|
+
} catch (error) {
|
|
42
|
+
await client.detach().catch(() => void 0);
|
|
43
|
+
throw error;
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
authenticatorId,
|
|
47
|
+
async credentialCount() {
|
|
48
|
+
const { credentials } = await client.send("WebAuthn.getCredentials", { authenticatorId });
|
|
49
|
+
return credentials.length;
|
|
50
|
+
},
|
|
51
|
+
async dispose() {
|
|
52
|
+
try {
|
|
53
|
+
await client.send("WebAuthn.removeVirtualAuthenticator", { authenticatorId });
|
|
54
|
+
} catch {} finally {
|
|
55
|
+
await client.detach().catch(() => void 0);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/flows.ts
|
|
62
|
+
/**
|
|
63
|
+
* A union locator resolves in DOM order across the whole page, so every
|
|
64
|
+
* candidate built from a broad selector — accessible names, labels, the
|
|
65
|
+
* generic `data-action` attribute — is scoped to the `<zitadel-login>`
|
|
66
|
+
* host; otherwise a same-named control in the app's own chrome (header
|
|
67
|
+
* nav, footer forms) could win the union. The host element exists no
|
|
68
|
+
* matter what the tenant's template renders, so these fallbacks keep
|
|
69
|
+
* working for custom templates that emit no automation hooks — the case
|
|
70
|
+
* they exist for. The `zitadel-*` testid hooks and the `zl-button` atom
|
|
71
|
+
* are namespaced and stay page-global.
|
|
72
|
+
*/
|
|
73
|
+
function widgetRoot(page) {
|
|
74
|
+
return page.locator("zitadel-login");
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Escape a value for use inside a double-quoted CSS attribute selector,
|
|
78
|
+
* per the CSSOM "serialize a string" rules: NUL becomes U+FFFD, control
|
|
79
|
+
* characters become hex code-point escapes, quote and backslash are
|
|
80
|
+
* backslash-escaped. C1 controls (U+0080–U+009F) are escaped too — CSSOM
|
|
81
|
+
* itself leaves them literal, but the escaped form is equivalent and
|
|
82
|
+
* survives stricter-than-spec selector parsers. Anything the flow schema
|
|
83
|
+
* accepts as an action name yields a parseable selector.
|
|
84
|
+
*/
|
|
85
|
+
function cssAttributeValue(value) {
|
|
86
|
+
let out = "";
|
|
87
|
+
for (const ch of value) {
|
|
88
|
+
const code = ch.codePointAt(0) ?? 0;
|
|
89
|
+
if (code === 0) out += "�";
|
|
90
|
+
else if (code <= 31 || code >= 127 && code <= 159) out += `\\${code.toString(16)} `;
|
|
91
|
+
else if (ch === "\"" || ch === "\\") out += `\\${ch}`;
|
|
92
|
+
else out += ch;
|
|
93
|
+
}
|
|
94
|
+
return out;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Locator for a flow action control by its declared action name. Matches
|
|
98
|
+
* every hook shape the default template emits — host testid, native
|
|
99
|
+
* shadow button/link testids, and the raw `action`/`data-action`
|
|
100
|
+
* attributes (the recover link carries only `data-action`).
|
|
101
|
+
*/
|
|
102
|
+
function flowAction(page, action, options = {}) {
|
|
103
|
+
const attributeSafe = cssAttributeValue(action);
|
|
104
|
+
let candidates = page.getByTestId(`zitadel-action-${action}`).or(page.getByTestId(`zitadel-action-${action}-button`)).or(page.getByTestId(`zitadel-action-${action}-link`)).or(page.locator(`zl-button[action="${attributeSafe}"]`)).or(widgetRoot(page).locator(`[data-action="${attributeSafe}"]`));
|
|
105
|
+
if (options.name) candidates = candidates.or(widgetRoot(page).getByRole("button", { name: options.name })).or(widgetRoot(page).getByRole("link", { name: options.name }));
|
|
106
|
+
return candidates.first();
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Locator for a flow field's input by its normalised hook token
|
|
110
|
+
* (`email`, `password`, a user-schema property name).
|
|
111
|
+
*/
|
|
112
|
+
function flowField(page, field, options = {}) {
|
|
113
|
+
let candidates = page.getByTestId(`zitadel-input-${field}`).or(page.getByTestId(`zitadel-field-${field}`).locator("input"));
|
|
114
|
+
if (options.label) candidates = candidates.or(widgetRoot(page).getByLabel(options.label));
|
|
115
|
+
return candidates.first();
|
|
116
|
+
}
|
|
117
|
+
/** Click a flow action (auto-waits like any locator click). */
|
|
118
|
+
async function clickFlowAction(page, action, options) {
|
|
119
|
+
await flowAction(page, action, options).click();
|
|
120
|
+
}
|
|
121
|
+
/** Fill a flow field (auto-waits like any locator fill). */
|
|
122
|
+
async function fillFlowField(page, field, value, options) {
|
|
123
|
+
await flowField(page, field, options).fill(value);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Sign in with email and password from the flow's entry step. Handles both
|
|
127
|
+
* the default split shape (identifier → password) and flows that render
|
|
128
|
+
* the password field on the entry step.
|
|
129
|
+
*/
|
|
130
|
+
async function loginWithPassword(page, { email, password }) {
|
|
131
|
+
await emailField(page).fill(email);
|
|
132
|
+
const password_ = passwordField(page);
|
|
133
|
+
if (!await password_.isVisible().catch(() => false)) await flowAction(page, "submit").click();
|
|
134
|
+
await password_.fill(password);
|
|
135
|
+
await flowAction(page, "submit").click();
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Sign in with a passkey. With `email`, fills the identifier and takes the
|
|
139
|
+
* step's passkey action; without, taps the entry step's passkey action
|
|
140
|
+
* directly (discoverable-credential one-tap, e.g. the passkey-first
|
|
141
|
+
* preset). Pair with `enableVirtualPasskey` / the `passkey` fixture in
|
|
142
|
+
* headless runs — the ceremony completes automatically once the widget
|
|
143
|
+
* issues the WebAuthn challenge.
|
|
144
|
+
*/
|
|
145
|
+
async function loginWithPasskey(page, options = {}) {
|
|
146
|
+
if (options.email !== void 0) await emailField(page).fill(options.email);
|
|
147
|
+
await flowAction(page, "passkey").click();
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Register a new user with a password: enter the (unknown) identifier,
|
|
151
|
+
* advance into the registration step, continue on the password path, and
|
|
152
|
+
* submit the password. Ends when the final submit is clicked — assert your
|
|
153
|
+
* app's signed-in surface afterwards. Flows that route through steps the
|
|
154
|
+
* default flow does not (e.g. a passkey upsell) need caller-side handling
|
|
155
|
+
* after this returns.
|
|
156
|
+
*/
|
|
157
|
+
async function registerWithPassword(page, { email, password, profile }) {
|
|
158
|
+
await advanceToRegistration(page, email, profile);
|
|
159
|
+
const password_ = passwordField(page);
|
|
160
|
+
if (!await password_.isVisible().catch(() => false)) await flowAction(page, "submit").click();
|
|
161
|
+
await password_.fill(password);
|
|
162
|
+
await flowAction(page, "submit").click();
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Register a new user with a passkey: enter the (unknown) identifier,
|
|
166
|
+
* advance into the registration step, and take its `passkey_register`
|
|
167
|
+
* action. Requires an authenticator (see `loginWithPasskey`). The default
|
|
168
|
+
* flow completes registration from the ceremony directly.
|
|
169
|
+
*/
|
|
170
|
+
async function registerWithPasskey(page, { email, profile }) {
|
|
171
|
+
await advanceToRegistration(page, email, profile);
|
|
172
|
+
await flowAction(page, "passkey_register").click();
|
|
173
|
+
}
|
|
174
|
+
function emailField(page) {
|
|
175
|
+
return flowField(page, "email", { label: /email/i });
|
|
176
|
+
}
|
|
177
|
+
function passwordField(page) {
|
|
178
|
+
return flowField(page, "password", { label: /password/i });
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* From the entry step: submit the unknown identifier (the default flow's
|
|
182
|
+
* `user_not_found` transition routes to registration), or take an explicit
|
|
183
|
+
* `register` navigate action when the entry step is a combined
|
|
184
|
+
* email+password step — there, submitting would attempt a password sign-in
|
|
185
|
+
* instead. Then wait for the registration step and fill what it renders.
|
|
186
|
+
*/
|
|
187
|
+
async function advanceToRegistration(page, email, profile) {
|
|
188
|
+
await emailField(page).fill(email);
|
|
189
|
+
if (await passwordField(page).isVisible().catch(() => false)) await flowAction(page, "register").click();
|
|
190
|
+
else await flowAction(page, "submit").click();
|
|
191
|
+
await expectRegistrationStep(page);
|
|
192
|
+
await fillIfVisible(emailField(page), email);
|
|
193
|
+
for (const entry of profile ?? []) await fillProfileEntry(page, entry);
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Fill one registration field with the verb its control needs: booleans
|
|
197
|
+
* check the `zl-checkbox` native input, strings prefer the `zl-select`
|
|
198
|
+
* native select (option matched by value, falling back to label) and
|
|
199
|
+
* otherwise fill a text-like input. The select/checkbox natives carry the
|
|
200
|
+
* name-first testids the atoms document (`zitadel-select-*`,
|
|
201
|
+
* `zitadel-checkbox-*`); templates without those hooks drive such fields
|
|
202
|
+
* via their own locators.
|
|
203
|
+
*/
|
|
204
|
+
async function fillProfileEntry(page, entry) {
|
|
205
|
+
if (typeof entry.value === "boolean") {
|
|
206
|
+
const checkbox = page.getByTestId(`zitadel-checkbox-${entry.field}`).first();
|
|
207
|
+
if (await checkbox.isVisible().catch(() => false)) await checkbox.setChecked(entry.value);
|
|
208
|
+
return;
|
|
209
|
+
}
|
|
210
|
+
const select = page.getByTestId(`zitadel-select-${entry.field}`).first();
|
|
211
|
+
if (await select.isVisible().catch(() => false)) {
|
|
212
|
+
await select.selectOption(entry.value);
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
await fillIfVisible(flowField(page, entry.field, { label: entry.label }), entry.value);
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Barrier between the entry submit and probing the registration step's
|
|
219
|
+
* fields: without it, optional-field probes race the re-render and read
|
|
220
|
+
* the outgoing step. The default flow's registration step declares
|
|
221
|
+
* `passkey_register` — a structural, locale-independent signal; the
|
|
222
|
+
* heading regex covers password-only flows on the default English
|
|
223
|
+
* template.
|
|
224
|
+
*/
|
|
225
|
+
async function expectRegistrationStep(page) {
|
|
226
|
+
await flowAction(page, "passkey_register").or(widgetRoot(page).getByRole("heading", { name: /create|register|sign up|no-account/i })).first().waitFor({
|
|
227
|
+
state: "visible",
|
|
228
|
+
timeout: 3e4
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
async function fillIfVisible(field, value) {
|
|
232
|
+
if (await field.isVisible().catch(() => false)) await field.fill(value);
|
|
233
|
+
}
|
|
234
|
+
//#endregion
|
|
9
235
|
//#region src/playwright-config.ts
|
|
10
236
|
/**
|
|
11
237
|
* Generate the Playwright `webServer` entries that boot an ephemeral seeded
|
|
@@ -19,6 +245,10 @@ let _playwright_test = require("@playwright/test");
|
|
|
19
245
|
* });
|
|
20
246
|
* ```
|
|
21
247
|
*
|
|
248
|
+
* Omit `app` when the instance serves the app itself (the binary's embedded
|
|
249
|
+
* `/ui/console/` and `/ui/login/` surfaces): only the boot entry is
|
|
250
|
+
* generated, and `appOrigin` must be the instance's own origin.
|
|
251
|
+
*
|
|
22
252
|
* Also points ZITADEL_TESTING_HANDSHAKE at the handshake file so the
|
|
23
253
|
* `@zitadel/testing/playwright` fixtures resolve the instance — Playwright
|
|
24
254
|
* workers re-evaluate the config, which re-applies this for every process
|
|
@@ -31,9 +261,18 @@ function withZitadel(options, resolveEntry = entryPoint) {
|
|
|
31
261
|
if (!Number.isInteger(port) || port <= 0) throw new Error(`withZitadel: port must be a positive integer, got ${port}`);
|
|
32
262
|
const origin = URL.canParse(appOrigin) ? new URL(appOrigin) : void 0;
|
|
33
263
|
if (!origin || origin.protocol !== "http:" && origin.protocol !== "https:" || origin.pathname !== "/" || origin.search !== "" || origin.hash !== "") throw new Error(`withZitadel: appOrigin must be an origin like "http://localhost:3002", got "${appOrigin}"`);
|
|
34
|
-
if (
|
|
35
|
-
|
|
36
|
-
|
|
264
|
+
if (app === void 0) {
|
|
265
|
+
const loopbackHosts = new Set([
|
|
266
|
+
"localhost",
|
|
267
|
+
"127.0.0.1",
|
|
268
|
+
"[::1]"
|
|
269
|
+
]);
|
|
270
|
+
if (origin.protocol !== "http:" || !loopbackHosts.has(origin.hostname) || (origin.port || "80") !== String(port)) throw new Error(`withZitadel: with no \`app\`, the instance itself serves the app, so appOrigin must be its local origin (http://localhost:${port}); got "${appOrigin}".`);
|
|
271
|
+
} else {
|
|
272
|
+
if (!app.readyPath.startsWith("/")) throw new Error(`withZitadel: app.readyPath must start with "/", got "${app.readyPath}"`);
|
|
273
|
+
if (app.command.length === 0) throw new Error("withZitadel: app.command must not be empty");
|
|
274
|
+
if (!(0, node_path.isAbsolute)(app.cwd)) throw new Error(`withZitadel: app.cwd must be absolute, got "${app.cwd}"`);
|
|
275
|
+
}
|
|
37
276
|
for (const [label, value] of [
|
|
38
277
|
["zitadel.serverBinary", options.zitadel?.serverBinary],
|
|
39
278
|
["zitadel.dir", options.zitadel?.dir],
|
|
@@ -52,13 +291,7 @@ function withZitadel(options, resolveEntry = entryPoint) {
|
|
|
52
291
|
preset: options.zitadel?.preset,
|
|
53
292
|
useCase: options.zitadel?.useCase
|
|
54
293
|
};
|
|
55
|
-
const
|
|
56
|
-
command: app.command,
|
|
57
|
-
cwd: app.cwd,
|
|
58
|
-
env: app.env,
|
|
59
|
-
handshakeTimeoutMs: app.readyTimeoutMs ?? 18e4
|
|
60
|
-
};
|
|
61
|
-
return { webServer: [{
|
|
294
|
+
const supervisorEntry = {
|
|
62
295
|
command: `node ${JSON.stringify(resolveEntry("supervisor"))}`,
|
|
63
296
|
url: `http://localhost:${port}/healthz`,
|
|
64
297
|
reuseExistingServer: false,
|
|
@@ -74,7 +307,15 @@ function withZitadel(options, resolveEntry = entryPoint) {
|
|
|
74
307
|
signal: "SIGTERM",
|
|
75
308
|
timeout: 3e4
|
|
76
309
|
}
|
|
77
|
-
}
|
|
310
|
+
};
|
|
311
|
+
if (app === void 0) return { webServer: [supervisorEntry] };
|
|
312
|
+
const appRunnerConfig = {
|
|
313
|
+
command: app.command,
|
|
314
|
+
cwd: app.cwd,
|
|
315
|
+
env: app.env,
|
|
316
|
+
handshakeTimeoutMs: app.readyTimeoutMs ?? 18e4
|
|
317
|
+
};
|
|
318
|
+
return { webServer: [supervisorEntry, {
|
|
78
319
|
command: `node ${JSON.stringify(resolveEntry("app-runner"))}`,
|
|
79
320
|
url: new URL(app.readyPath, appOrigin).toString(),
|
|
80
321
|
reuseExistingServer: false,
|
|
@@ -111,8 +352,11 @@ const test = _playwright_test.test.extend({
|
|
|
111
352
|
zitadel: [async ({}, use) => {
|
|
112
353
|
const handshakePath = process.env.ZITADEL_TESTING_HANDSHAKE;
|
|
113
354
|
if (!handshakePath) throw new Error("ZITADEL_TESTING_HANDSHAKE is not set. Point it at the handshake file written by the script that boots the instance (see @zitadel/testing docs).");
|
|
114
|
-
await use(require_src.connectZitadel(require_handshake.
|
|
115
|
-
}, {
|
|
355
|
+
await use(require_src.connectZitadel(await require_handshake.waitForHandshake(handshakePath)));
|
|
356
|
+
}, {
|
|
357
|
+
scope: "worker",
|
|
358
|
+
auto: true
|
|
359
|
+
}],
|
|
116
360
|
seed: async ({ zitadel, baseURL }, use) => {
|
|
117
361
|
await use({
|
|
118
362
|
user: (input) => zitadel.seedUser(input),
|
|
@@ -124,6 +368,11 @@ const test = _playwright_test.test.extend({
|
|
|
124
368
|
})
|
|
125
369
|
});
|
|
126
370
|
},
|
|
371
|
+
passkey: async ({ page }, use) => {
|
|
372
|
+
const passkey = await enableVirtualPasskey(page);
|
|
373
|
+
await use(passkey);
|
|
374
|
+
await passkey.dispose();
|
|
375
|
+
},
|
|
127
376
|
authenticatedPage: async ({ browser, zitadel, baseURL }, use) => {
|
|
128
377
|
if (!baseURL) throw new Error("authenticatedPage requires `use.baseURL` so the session cookie can be scoped to the app under test.");
|
|
129
378
|
const session = await zitadel.seedSession({ origin: baseURL });
|
|
@@ -143,13 +392,22 @@ const test = _playwright_test.test.extend({
|
|
|
143
392
|
});
|
|
144
393
|
//#endregion
|
|
145
394
|
exports.applyAppEnvTemplate = require_handshake.applyAppEnvTemplate;
|
|
395
|
+
exports.clickFlowAction = clickFlowAction;
|
|
396
|
+
exports.enableVirtualPasskey = enableVirtualPasskey;
|
|
146
397
|
Object.defineProperty(exports, "expect", {
|
|
147
398
|
enumerable: true,
|
|
148
399
|
get: function() {
|
|
149
400
|
return _playwright_test.expect;
|
|
150
401
|
}
|
|
151
402
|
});
|
|
403
|
+
exports.fillFlowField = fillFlowField;
|
|
404
|
+
exports.flowAction = flowAction;
|
|
405
|
+
exports.flowField = flowField;
|
|
406
|
+
exports.loginWithPasskey = loginWithPasskey;
|
|
407
|
+
exports.loginWithPassword = loginWithPassword;
|
|
152
408
|
exports.nextAppEnv = require_handshake.nextAppEnv;
|
|
409
|
+
exports.registerWithPasskey = registerWithPasskey;
|
|
410
|
+
exports.registerWithPassword = registerWithPassword;
|
|
153
411
|
exports.test = test;
|
|
154
412
|
exports.withZitadel = withZitadel;
|
|
155
413
|
|
package/dist/playwright.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playwright.cjs","names":["HANDSHAKE_ENV","SUPERVISOR_CONFIG_ENV","APP_RUNNER_CONFIG_ENV","base","connectZitadel","readHandshakeSync"],"sources":["../src/playwright-config.ts","../src/playwright.ts"],"sourcesContent":["import { existsSync } from \"node:fs\";\nimport { extname, isAbsolute, join } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\n\nimport type { PlaywrightTestConfig } from \"@playwright/test\";\n\nimport type { AppEnvTemplate } from \"./app-env\";\nimport {\n APP_RUNNER_CONFIG_ENV,\n HANDSHAKE_ENV,\n SUPERVISOR_CONFIG_ENV,\n type AppRunnerConfig,\n type SupervisorConfig,\n} from \"./orchestration\";\n\ntype WebServerEntry = Extract<\n NonNullable<PlaywrightTestConfig[\"webServer\"]>,\n readonly unknown[]\n>[number];\n\nexport interface WithZitadelOptions {\n /**\n * The Playwright config's directory (`import.meta.dirname`). Anchors the\n * default handshake location and the working directory of the generated\n * webServer entries.\n */\n configDir: string;\n /**\n * Fixed TCP port for the instance. Required (unlike `startLocalZitadel`,\n * which defaults to a free port) because Playwright's readiness URL must be\n * known while the config is evaluated, before anything boots.\n */\n port: number;\n /**\n * Origin the browser will use for the app under test. Registered as the\n * project's preview origin (the backend's origin check rejects forwarded\n * requests from unregistered origins) and the base of `app.readyPath`.\n */\n appOrigin: string;\n /** Boot/bootstrap options forwarded to the instance supervisor. */\n zitadel?: {\n /** Absolute path to the server binary. */\n serverBinary?: string;\n /** Appended to the missing-binary error, e.g. \"run `moon run server:build` first.\" */\n serverBinaryHint?: string;\n projectName?: string;\n preset?: SupervisorConfig[\"preset\"];\n useCase?: SupervisorConfig[\"useCase\"];\n /** Absolute state directory; defaults to a fresh temp dir removed on stop. */\n dir?: string;\n /** Keep the owned temp dir after stop (debugging). */\n keep?: boolean;\n /** webServer readiness timeout for the boot; cold boot dominates it. */\n bootTimeoutMs?: number;\n };\n /** The app dev server to run against the instance. */\n app: {\n /** Spawn argv (no shell), e.g. [\"corepack\", \"pnpm\", \"--filter\", \"my-app\", \"dev\"]. */\n command: string[];\n /** Working directory for the app command. */\n cwd: string;\n /** Path on `appOrigin` Playwright polls for readiness, e.g. \"/login\". */\n readyPath: string;\n /**\n * Env vars the app needs, as a template mapping env names to\n * InstanceHandle fields — see `nextAppEnv` for the `@zitadel/sdk-next`\n * shape. A template (not a callback) because it crosses into the app\n * runner process.\n */\n env: AppEnvTemplate;\n readyTimeoutMs?: number;\n /** How long SIGTERM gets before the app is killed on teardown. */\n gracefulShutdownMs?: number;\n };\n /** Absolute path; defaults to `<configDir>/.zitadel-testing/handshake.json`. */\n handshakePath?: string;\n}\n\n/**\n * Generate the Playwright `webServer` entries that boot an ephemeral seeded\n * Zitadel and run the app against it, replacing the per-suite wrapper\n * scripts. Spread the result into `defineConfig`:\n *\n * ```ts\n * export default defineConfig({\n * ...withZitadel({ configDir: import.meta.dirname, port: 8092, ... }),\n * testDir: \"./src-real\",\n * });\n * ```\n *\n * Also points ZITADEL_TESTING_HANDSHAKE at the handshake file so the\n * `@zitadel/testing/playwright` fixtures resolve the instance — Playwright\n * workers re-evaluate the config, which re-applies this for every process\n * that needs it. The returned value is plain data; append your own entries\n * to `webServer` if the suite needs additional servers.\n */\nexport function withZitadel(\n options: WithZitadelOptions,\n /** Test seam: alternative executable resolution. */\n resolveEntry: (name: \"supervisor\" | \"app-runner\") => string = entryPoint,\n): { webServer: WebServerEntry[] } {\n const { configDir, port, appOrigin, app } = options;\n if (!isAbsolute(configDir)) {\n throw new Error(`withZitadel: configDir must be absolute, got \"${configDir}\"`);\n }\n if (!Number.isInteger(port) || port <= 0) {\n throw new Error(`withZitadel: port must be a positive integer, got ${port}`);\n }\n const origin = URL.canParse(appOrigin) ? new URL(appOrigin) : undefined;\n if (\n !origin ||\n (origin.protocol !== \"http:\" && origin.protocol !== \"https:\") ||\n origin.pathname !== \"/\" ||\n origin.search !== \"\" ||\n origin.hash !== \"\"\n ) {\n throw new Error(\n `withZitadel: appOrigin must be an origin like \"http://localhost:3002\", got \"${appOrigin}\"`,\n );\n }\n if (!app.readyPath.startsWith(\"/\")) {\n throw new Error(`withZitadel: app.readyPath must start with \"/\", got \"${app.readyPath}\"`);\n }\n if (app.command.length === 0) {\n throw new Error(\"withZitadel: app.command must not be empty\");\n }\n if (!isAbsolute(app.cwd)) {\n throw new Error(`withZitadel: app.cwd must be absolute, got \"${app.cwd}\"`);\n }\n // Path options are consumed by the executables, whose cwd is configDir —\n // a relative path would silently resolve against that, not the project.\n for (const [label, value] of [\n [\"zitadel.serverBinary\", options.zitadel?.serverBinary],\n [\"zitadel.dir\", options.zitadel?.dir],\n [\"handshakePath\", options.handshakePath],\n ] as const) {\n if (value !== undefined && !isAbsolute(value)) {\n throw new Error(`withZitadel: ${label} must be an absolute path, got \"${value}\"`);\n }\n }\n\n const handshakePath =\n options.handshakePath ?? join(configDir, \".zitadel-testing\", \"handshake.json\");\n // Workers inherit the runner's env; the fixtures resolve the instance from it.\n process.env[HANDSHAKE_ENV] = handshakePath;\n\n const supervisorConfig: SupervisorConfig = {\n port,\n appOrigins: [appOrigin],\n serverBinary: options.zitadel?.serverBinary,\n serverBinaryHint: options.zitadel?.serverBinaryHint,\n dir: options.zitadel?.dir,\n keep: options.zitadel?.keep,\n projectName: options.zitadel?.projectName,\n preset: options.zitadel?.preset,\n useCase: options.zitadel?.useCase,\n };\n const appRunnerConfig: AppRunnerConfig = {\n command: app.command,\n cwd: app.cwd,\n env: app.env,\n handshakeTimeoutMs: app.readyTimeoutMs ?? 180_000,\n };\n\n return {\n webServer: [\n {\n command: `node ${JSON.stringify(resolveEntry(\"supervisor\"))}`,\n url: `http://localhost:${port}/healthz`,\n reuseExistingServer: false,\n cwd: configDir,\n stdout: \"pipe\",\n stderr: \"pipe\",\n // Cold boot (fresh data dir: migrations + health wait) dominates.\n timeout: options.zitadel?.bootTimeoutMs ?? 120_000,\n env: {\n [HANDSHAKE_ENV]: handshakePath,\n [SUPERVISOR_CONFIG_ENV]: JSON.stringify(supervisorConfig),\n },\n // SIGTERM first so the supervisor can stop the instance; the default\n // hard kill would orphan the server process group.\n gracefulShutdown: { signal: \"SIGTERM\", timeout: 30_000 },\n },\n {\n command: `node ${JSON.stringify(resolveEntry(\"app-runner\"))}`,\n url: new URL(app.readyPath, appOrigin).toString(),\n reuseExistingServer: false,\n cwd: configDir,\n stdout: \"pipe\",\n stderr: \"pipe\",\n timeout: app.readyTimeoutMs ?? 180_000,\n env: {\n [HANDSHAKE_ENV]: handshakePath,\n [APP_RUNNER_CONFIG_ENV]: JSON.stringify(appRunnerConfig),\n },\n gracefulShutdown: {\n signal: \"SIGTERM\",\n timeout: app.gracefulShutdownMs ?? 15_000,\n },\n },\n ],\n };\n}\n\n/**\n * Resolve a sibling dist entry in the same module format this file was loaded\n * as (dist/supervisor.mjs next to dist/playwright.mjs, .cjs next to .cjs), so\n * the spawned process needs no package-manager bin plumbing.\n */\nfunction entryPoint(name: \"supervisor\" | \"app-runner\"): string {\n const self = fileURLToPath(import.meta.url);\n const ext = extname(self);\n if (ext !== \".mjs\" && ext !== \".cjs\") {\n throw new Error(\n `withZitadel: expected to run from the built package (got ${self}); ` +\n \"build @zitadel/testing first (in-repo: `moon run testing:build`).\",\n );\n }\n const path = fileURLToPath(new URL(`./${name}${ext}`, import.meta.url));\n if (!existsSync(path)) {\n throw new Error(\n `withZitadel: missing ${path}; rebuild @zitadel/testing (in-repo: \\`moon run testing:build\\`).`,\n );\n }\n return path;\n}\n","import { test as base, type Page } from \"@playwright/test\";\n\nimport { readHandshakeSync } from \"./handshake\";\nimport { connectZitadel } from \"./index\";\nimport type {\n ConnectedZitadel,\n Identity,\n MintedSession,\n SeededUser,\n SeedSessionInput,\n SeedUserInput,\n SeedUsersTemplate,\n} from \"./types\";\n\nexport interface AuthenticatedPage {\n /** A page in its own context, already carrying the session cookie. */\n page: Page;\n user: SeededUser;\n session: MintedSession;\n}\n\nexport interface ZitadelTestFixtures {\n /** Per-test seeding; each call mints unique data on the shared instance. */\n seed: {\n user(input?: SeedUserInput): Promise<SeededUser>;\n users(count: number, template?: SeedUsersTemplate): Promise<SeededUser[]>;\n /** Unused email+password for registration flows — creates nothing. */\n identity(): Identity;\n /** Seeded user + headless real-flow login; password flows only. */\n session(input?: SeedSessionInput): Promise<MintedSession>;\n };\n /**\n * Start the test authenticated: a fresh user, a real session minted through\n * the flow API, and the cookie injected into a dedicated browser context —\n * the default `page` stays signed out for login-flow tests. Requires\n * `use.baseURL` (every withZitadel consumer sets it).\n */\n authenticatedPage: AuthenticatedPage;\n}\n\nexport interface ZitadelWorkerFixtures {\n /** Connection to the suite's instance, resolved once per worker. */\n zitadel: ConnectedZitadel;\n}\n\nexport const test = base.extend<ZitadelTestFixtures, ZitadelWorkerFixtures>({\n zitadel: [\n // Playwright derives fixture dependencies from the destructuring pattern,\n // so the empty pattern is required here.\n // oxlint-disable-next-line no-empty-pattern\n async ({}, use) => {\n const handshakePath = process.env.ZITADEL_TESTING_HANDSHAKE;\n if (!handshakePath) {\n throw new Error(\n \"ZITADEL_TESTING_HANDSHAKE is not set. Point it at the handshake file \" +\n \"written by the script that boots the instance (see @zitadel/testing docs).\",\n );\n }\n await use(connectZitadel(readHandshakeSync(handshakePath)));\n },\n { scope: \"worker\" },\n ],\n seed: async ({ zitadel, baseURL }, use) => {\n await use({\n user: (input) => zitadel.seedUser(input),\n users: (count, template) => zitadel.seedUsers(count, template),\n identity: () => zitadel.identity(),\n // The suite's baseURL is the app origin the project allowlists.\n session: (input) => zitadel.seedSession({ origin: baseURL, ...input }),\n });\n },\n authenticatedPage: async ({ browser, zitadel, baseURL }, use) => {\n if (!baseURL) {\n throw new Error(\n \"authenticatedPage requires `use.baseURL` so the session cookie can be \" +\n \"scoped to the app under test.\",\n );\n }\n const session = await zitadel.seedSession({ origin: baseURL });\n const context = await browser.newContext({ baseURL });\n // `addCookies` takes either url or domain/path; url derives the rest.\n const { path: _path, ...cookie } = session.cookie;\n await context.addCookies([{ ...cookie, url: baseURL }]);\n const page = await context.newPage();\n await use({ page, user: session.user, session });\n await context.close();\n },\n});\n\nexport { expect } from \"@playwright/test\";\nexport { applyAppEnvTemplate, nextAppEnv } from \"./app-env\";\nexport type { AppEnvTemplate } from \"./app-env\";\nexport { withZitadel } from \"./playwright-config\";\nexport type { WithZitadelOptions } from \"./playwright-config\";\nexport type {\n ConnectedZitadel,\n Identity,\n InstanceHandle,\n MintedSession,\n SeededUser,\n SeedSessionInput,\n SeedUserInput,\n SeedUsersTemplate,\n} from \"./types\";\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"playwright.cjs","names":["HANDSHAKE_ENV","SUPERVISOR_CONFIG_ENV","APP_RUNNER_CONFIG_ENV","base","connectZitadel","waitForHandshake"],"sources":["../src/passkey.ts","../src/flows.ts","../src/playwright-config.ts","../src/playwright.ts"],"sourcesContent":["import type { CDPSession, Page } from \"@playwright/test\";\n\n/**\n * A virtual WebAuthn authenticator attached to one page. Ceremonies started\n * from that page (passkey registration, passkey login) complete automatically\n * — no OS authenticator dialog, no touch.\n */\nexport interface VirtualPasskey {\n /** CDP id of the virtual authenticator, for advanced raw-protocol use. */\n authenticatorId: string;\n /** Number of credentials the authenticator currently stores. */\n credentialCount(): Promise<number>;\n /** Remove the authenticator and detach the CDP session. */\n dispose(): Promise<void>;\n}\n\n/**\n * Attach a virtual passkey authenticator to the page via the Chrome DevTools\n * Protocol. The options mirror a platform authenticator with discoverable\n * credentials and automatic user presence — the profile the consumer journey\n * has run in CI since passkey coverage became mandatory there.\n *\n * Chromium only: the CDP WebAuthn domain does not exist in WebKit or Firefox.\n * The authenticator is bound to this page — drive registration and the later\n * login from the same page, or the credential is gone. Serve the app under\n * test on an origin WebAuthn accepts as a relying-party ID: HTTPS on a real\n * domain, or `http://localhost` for local runs — raw IP origins such as\n * `http://127.0.0.1` are invalid RP IDs.\n */\nexport async function enableVirtualPasskey(page: Page): Promise<VirtualPasskey> {\n let client: CDPSession;\n try {\n client = await page.context().newCDPSession(page);\n } catch (error) {\n throw new Error(\n \"enableVirtualPasskey: could not open a CDP session — passkey testing \" +\n \"needs Chromium's virtual authenticator, so run passkey specs in a \" +\n \"Chromium project.\",\n { cause: error },\n );\n }\n let authenticatorId: string;\n try {\n await client.send(\"WebAuthn.enable\");\n ({ authenticatorId } = await client.send(\"WebAuthn.addVirtualAuthenticator\", {\n options: {\n protocol: \"ctap2\",\n transport: \"internal\",\n hasResidentKey: true,\n hasUserVerification: true,\n isUserVerified: true,\n automaticPresenceSimulation: true,\n },\n }));\n } catch (error) {\n // Don't leave a half-initialized CDP session attached behind a throw.\n await client.detach().catch(() => undefined);\n throw error;\n }\n\n return {\n authenticatorId,\n async credentialCount() {\n const { credentials } = await client.send(\"WebAuthn.getCredentials\", {\n authenticatorId,\n });\n return credentials.length;\n },\n async dispose() {\n // Best-effort: the page (and with it the CDP target) may already be\n // gone when teardown runs after a failed test; never mask that failure.\n // Detach even when the removal fails, so the session never outlives it.\n try {\n await client.send(\"WebAuthn.removeVirtualAuthenticator\", { authenticatorId });\n } catch {\n // ignore\n } finally {\n await client.detach().catch(() => undefined);\n }\n },\n };\n}\n","import type { Locator, Page } from \"@playwright/test\";\n\n/**\n * Helpers that drive the `<zitadel-login>` widget through complete auth\n * ceremonies, built on the widget's documented automation hooks\n * (`zitadel-field-*` / `zitadel-input-*` on fields, `zitadel-action-*` on\n * actions — see packages/components/README.md). Field names use the\n * normalised hook token: the flow engine names credential fields\n * `x-auth-methods#password`, but the hook (and this API) says `password`.\n *\n * The ceremony helpers assume the default flow vocabulary — steps that\n * declare `submit` / `passkey` / `passkey_register` actions and `email` /\n * password fields, as `default-login.json` does. They branch only on\n * widget-observable state (which fields and actions the flow renders),\n * because customer flow configurations legitimately vary; they never\n * assert app state. Callers navigate to the widget first and assert their\n * own signed-in surface afterwards. Flows with renamed actions or custom\n * steps drive the widget directly via `flowAction` / `flowField`.\n */\n\nexport interface FlowActionOptions {\n /**\n * Accessible-name fallback for templates that do not emit the documented\n * `data-testid` hooks: adds role-based button/link candidates.\n */\n name?: RegExp;\n}\n\nexport interface FlowFieldOptions {\n /** Label fallback for templates that do not emit the documented hooks. */\n label?: RegExp;\n}\n\n/**\n * One optional registration field, filled only when the flow renders it.\n * The value's type picks the control: a boolean drives a checkbox\n * (`zl-checkbox`), a string first tries a select (`zl-select`) and falls\n * back to filling a text-like input.\n */\nexport interface ProfileEntry {\n /** Normalised field hook token, e.g. `givenName`. */\n field: string;\n value: string | boolean;\n /** Label fallback for text-like inputs on templates without hooks. */\n label?: RegExp;\n}\n\nexport interface LoginCredentials {\n email: string;\n password: string;\n}\n\nexport interface RegistrationDetails {\n email: string;\n /** Extra fields some flows require at registration, filled if rendered. */\n profile?: ProfileEntry[];\n}\n\nexport interface PasswordRegistrationDetails extends RegistrationDetails {\n password: string;\n}\n\n/**\n * A union locator resolves in DOM order across the whole page, so every\n * candidate built from a broad selector — accessible names, labels, the\n * generic `data-action` attribute — is scoped to the `<zitadel-login>`\n * host; otherwise a same-named control in the app's own chrome (header\n * nav, footer forms) could win the union. The host element exists no\n * matter what the tenant's template renders, so these fallbacks keep\n * working for custom templates that emit no automation hooks — the case\n * they exist for. The `zitadel-*` testid hooks and the `zl-button` atom\n * are namespaced and stay page-global.\n */\nfunction widgetRoot(page: Page): Locator {\n return page.locator(\"zitadel-login\");\n}\n\n/**\n * Escape a value for use inside a double-quoted CSS attribute selector,\n * per the CSSOM \"serialize a string\" rules: NUL becomes U+FFFD, control\n * characters become hex code-point escapes, quote and backslash are\n * backslash-escaped. C1 controls (U+0080–U+009F) are escaped too — CSSOM\n * itself leaves them literal, but the escaped form is equivalent and\n * survives stricter-than-spec selector parsers. Anything the flow schema\n * accepts as an action name yields a parseable selector.\n */\nfunction cssAttributeValue(value: string): string {\n let out = \"\";\n for (const ch of value) {\n const code = ch.codePointAt(0) ?? 0;\n if (code === 0) {\n out += \"�\";\n } else if (code <= 0x1f || (code >= 0x7f && code <= 0x9f)) {\n out += `\\\\${code.toString(16)} `;\n } else if (ch === '\"' || ch === \"\\\\\") {\n out += `\\\\${ch}`;\n } else {\n out += ch;\n }\n }\n return out;\n}\n\n/**\n * Locator for a flow action control by its declared action name. Matches\n * every hook shape the default template emits — host testid, native\n * shadow button/link testids, and the raw `action`/`data-action`\n * attributes (the recover link carries only `data-action`).\n */\nexport function flowAction(page: Page, action: string, options: FlowActionOptions = {}): Locator {\n // Action names are free-form in the flow schema; escape them before\n // interpolating into attribute selectors so an exotic name cannot break\n // the whole union's parsing.\n const attributeSafe = cssAttributeValue(action);\n let candidates = page\n .getByTestId(`zitadel-action-${action}`)\n .or(page.getByTestId(`zitadel-action-${action}-button`))\n .or(page.getByTestId(`zitadel-action-${action}-link`))\n .or(page.locator(`zl-button[action=\"${attributeSafe}\"]`))\n .or(widgetRoot(page).locator(`[data-action=\"${attributeSafe}\"]`));\n if (options.name) {\n candidates = candidates\n .or(widgetRoot(page).getByRole(\"button\", { name: options.name }))\n .or(widgetRoot(page).getByRole(\"link\", { name: options.name }));\n }\n return candidates.first();\n}\n\n/**\n * Locator for a flow field's input by its normalised hook token\n * (`email`, `password`, a user-schema property name).\n */\nexport function flowField(page: Page, field: string, options: FlowFieldOptions = {}): Locator {\n let candidates = page\n .getByTestId(`zitadel-input-${field}`)\n .or(page.getByTestId(`zitadel-field-${field}`).locator(\"input\"));\n if (options.label) {\n candidates = candidates.or(widgetRoot(page).getByLabel(options.label));\n }\n return candidates.first();\n}\n\n/** Click a flow action (auto-waits like any locator click). */\nexport async function clickFlowAction(\n page: Page,\n action: string,\n options?: FlowActionOptions,\n): Promise<void> {\n await flowAction(page, action, options).click();\n}\n\n/** Fill a flow field (auto-waits like any locator fill). */\nexport async function fillFlowField(\n page: Page,\n field: string,\n value: string,\n options?: FlowFieldOptions,\n): Promise<void> {\n await flowField(page, field, options).fill(value);\n}\n\n/**\n * Sign in with email and password from the flow's entry step. Handles both\n * the default split shape (identifier → password) and flows that render\n * the password field on the entry step.\n */\nexport async function loginWithPassword(\n page: Page,\n { email, password }: LoginCredentials,\n): Promise<void> {\n await emailField(page).fill(email);\n const password_ = passwordField(page);\n if (!(await password_.isVisible().catch(() => false))) {\n await flowAction(page, \"submit\").click();\n }\n await password_.fill(password);\n await flowAction(page, \"submit\").click();\n}\n\n/**\n * Sign in with a passkey. With `email`, fills the identifier and takes the\n * step's passkey action; without, taps the entry step's passkey action\n * directly (discoverable-credential one-tap, e.g. the passkey-first\n * preset). Pair with `enableVirtualPasskey` / the `passkey` fixture in\n * headless runs — the ceremony completes automatically once the widget\n * issues the WebAuthn challenge.\n */\nexport async function loginWithPasskey(page: Page, options: { email?: string } = {}): Promise<void> {\n if (options.email !== undefined) {\n await emailField(page).fill(options.email);\n }\n await flowAction(page, \"passkey\").click();\n}\n\n/**\n * Register a new user with a password: enter the (unknown) identifier,\n * advance into the registration step, continue on the password path, and\n * submit the password. Ends when the final submit is clicked — assert your\n * app's signed-in surface afterwards. Flows that route through steps the\n * default flow does not (e.g. a passkey upsell) need caller-side handling\n * after this returns.\n */\nexport async function registerWithPassword(\n page: Page,\n { email, password, profile }: PasswordRegistrationDetails,\n): Promise<void> {\n await advanceToRegistration(page, email, profile);\n // Continue with password unless this flow renders the password field on\n // the registration step itself.\n const password_ = passwordField(page);\n if (!(await password_.isVisible().catch(() => false))) {\n await flowAction(page, \"submit\").click();\n }\n await password_.fill(password);\n await flowAction(page, \"submit\").click();\n}\n\n/**\n * Register a new user with a passkey: enter the (unknown) identifier,\n * advance into the registration step, and take its `passkey_register`\n * action. Requires an authenticator (see `loginWithPasskey`). The default\n * flow completes registration from the ceremony directly.\n */\nexport async function registerWithPasskey(\n page: Page,\n { email, profile }: RegistrationDetails,\n): Promise<void> {\n await advanceToRegistration(page, email, profile);\n await flowAction(page, \"passkey_register\").click();\n}\n\nfunction emailField(page: Page): Locator {\n return flowField(page, \"email\", { label: /email/i });\n}\n\nfunction passwordField(page: Page): Locator {\n return flowField(page, \"password\", { label: /password/i });\n}\n\n/**\n * From the entry step: submit the unknown identifier (the default flow's\n * `user_not_found` transition routes to registration), or take an explicit\n * `register` navigate action when the entry step is a combined\n * email+password step — there, submitting would attempt a password sign-in\n * instead. Then wait for the registration step and fill what it renders.\n */\nasync function advanceToRegistration(\n page: Page,\n email: string,\n profile: ProfileEntry[] | undefined,\n): Promise<void> {\n await emailField(page).fill(email);\n if (await passwordField(page).isVisible().catch(() => false)) {\n await flowAction(page, \"register\").click();\n } else {\n await flowAction(page, \"submit\").click();\n }\n await expectRegistrationStep(page);\n // The engine echoes the attempted identifier into the registration step's\n // email field; refill defensively for flows that render it empty.\n await fillIfVisible(emailField(page), email);\n for (const entry of profile ?? []) {\n await fillProfileEntry(page, entry);\n }\n}\n\n/**\n * Fill one registration field with the verb its control needs: booleans\n * check the `zl-checkbox` native input, strings prefer the `zl-select`\n * native select (option matched by value, falling back to label) and\n * otherwise fill a text-like input. The select/checkbox natives carry the\n * name-first testids the atoms document (`zitadel-select-*`,\n * `zitadel-checkbox-*`); templates without those hooks drive such fields\n * via their own locators.\n */\nasync function fillProfileEntry(page: Page, entry: ProfileEntry): Promise<void> {\n if (typeof entry.value === \"boolean\") {\n const checkbox = page.getByTestId(`zitadel-checkbox-${entry.field}`).first();\n if (await checkbox.isVisible().catch(() => false)) {\n await checkbox.setChecked(entry.value);\n }\n return;\n }\n const select = page.getByTestId(`zitadel-select-${entry.field}`).first();\n if (await select.isVisible().catch(() => false)) {\n await select.selectOption(entry.value);\n return;\n }\n await fillIfVisible(flowField(page, entry.field, { label: entry.label }), entry.value);\n}\n\n/**\n * Barrier between the entry submit and probing the registration step's\n * fields: without it, optional-field probes race the re-render and read\n * the outgoing step. The default flow's registration step declares\n * `passkey_register` — a structural, locale-independent signal; the\n * heading regex covers password-only flows on the default English\n * template.\n */\nasync function expectRegistrationStep(page: Page): Promise<void> {\n await flowAction(page, \"passkey_register\")\n .or(widgetRoot(page).getByRole(\"heading\", { name: /create|register|sign up|no-account/i }))\n .first()\n .waitFor({ state: \"visible\", timeout: 30_000 });\n}\n\nasync function fillIfVisible(field: Locator, value: string): Promise<void> {\n if (await field.isVisible().catch(() => false)) {\n await field.fill(value);\n }\n}\n","import { existsSync } from \"node:fs\";\nimport { extname, isAbsolute, join } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\n\nimport type { PlaywrightTestConfig } from \"@playwright/test\";\n\nimport type { AppEnvTemplate } from \"./app-env\";\nimport {\n APP_RUNNER_CONFIG_ENV,\n HANDSHAKE_ENV,\n SUPERVISOR_CONFIG_ENV,\n type AppRunnerConfig,\n type SupervisorConfig,\n} from \"./orchestration\";\n\ntype WebServerEntry = Extract<\n NonNullable<PlaywrightTestConfig[\"webServer\"]>,\n readonly unknown[]\n>[number];\n\nexport interface WithZitadelOptions {\n /**\n * The Playwright config's directory (`import.meta.dirname`). Anchors the\n * default handshake location and the working directory of the generated\n * webServer entries.\n */\n configDir: string;\n /**\n * Fixed TCP port for the instance. Required (unlike `startLocalZitadel`,\n * which defaults to a free port) because Playwright's readiness URL must be\n * known while the config is evaluated, before anything boots.\n */\n port: number;\n /**\n * Origin the browser will use for the app under test. Registered as the\n * project's preview origin (the backend's origin check rejects forwarded\n * requests from unregistered origins) and the base of `app.readyPath`.\n */\n appOrigin: string;\n /** Boot/bootstrap options forwarded to the instance supervisor. */\n zitadel?: {\n /** Absolute path to the server binary. */\n serverBinary?: string;\n /** Appended to the missing-binary error, e.g. \"run `moon run server:build` first.\" */\n serverBinaryHint?: string;\n projectName?: string;\n preset?: SupervisorConfig[\"preset\"];\n useCase?: SupervisorConfig[\"useCase\"];\n /** Absolute state directory; defaults to a fresh temp dir removed on stop. */\n dir?: string;\n /** Keep the owned temp dir after stop (debugging). */\n keep?: boolean;\n /** webServer readiness timeout for the boot; cold boot dominates it. */\n bootTimeoutMs?: number;\n };\n /**\n * The app dev server to run against the instance.\n *\n * Omit it when the **instance itself serves the app** — the Zitadel binary\n * embeds the console and hosted login shells at `/ui/console/` and\n * `/ui/login/`, so there is no second server to boot and no env to hand it.\n * Only the supervisor entry is generated, and `appOrigin` must then be the\n * instance's own local origin — `http://localhost:<port>` (or another\n * loopback alias); nothing else is served in this mode. This is the only\n * configuration that exercises the production path — under a dev server,\n * the app's proxy rewrites API requests that the binary would serve\n * directly.\n */\n app?: {\n /** Spawn argv (no shell), e.g. [\"corepack\", \"pnpm\", \"--filter\", \"my-app\", \"dev\"]. */\n command: string[];\n /** Working directory for the app command. */\n cwd: string;\n /** Path on `appOrigin` Playwright polls for readiness, e.g. \"/login\". */\n readyPath: string;\n /**\n * Env vars the app needs, as a template mapping env names to\n * InstanceHandle fields — see `nextAppEnv` for the `@zitadel/sdk-next`\n * shape. A template (not a callback) because it crosses into the app\n * runner process.\n */\n env: AppEnvTemplate;\n readyTimeoutMs?: number;\n /** How long SIGTERM gets before the app is killed on teardown. */\n gracefulShutdownMs?: number;\n };\n /** Absolute path; defaults to `<configDir>/.zitadel-testing/handshake.json`. */\n handshakePath?: string;\n}\n\n/**\n * Generate the Playwright `webServer` entries that boot an ephemeral seeded\n * Zitadel and run the app against it, replacing the per-suite wrapper\n * scripts. Spread the result into `defineConfig`:\n *\n * ```ts\n * export default defineConfig({\n * ...withZitadel({ configDir: import.meta.dirname, port: 8092, ... }),\n * testDir: \"./src-real\",\n * });\n * ```\n *\n * Omit `app` when the instance serves the app itself (the binary's embedded\n * `/ui/console/` and `/ui/login/` surfaces): only the boot entry is\n * generated, and `appOrigin` must be the instance's own origin.\n *\n * Also points ZITADEL_TESTING_HANDSHAKE at the handshake file so the\n * `@zitadel/testing/playwright` fixtures resolve the instance — Playwright\n * workers re-evaluate the config, which re-applies this for every process\n * that needs it. The returned value is plain data; append your own entries\n * to `webServer` if the suite needs additional servers.\n */\nexport function withZitadel(\n options: WithZitadelOptions,\n /** Test seam: alternative executable resolution. */\n resolveEntry: (name: \"supervisor\" | \"app-runner\") => string = entryPoint,\n): { webServer: WebServerEntry[] } {\n const { configDir, port, appOrigin, app } = options;\n if (!isAbsolute(configDir)) {\n throw new Error(`withZitadel: configDir must be absolute, got \"${configDir}\"`);\n }\n if (!Number.isInteger(port) || port <= 0) {\n throw new Error(`withZitadel: port must be a positive integer, got ${port}`);\n }\n const origin = URL.canParse(appOrigin) ? new URL(appOrigin) : undefined;\n if (\n !origin ||\n (origin.protocol !== \"http:\" && origin.protocol !== \"https:\") ||\n origin.pathname !== \"/\" ||\n origin.search !== \"\" ||\n origin.hash !== \"\"\n ) {\n throw new Error(\n `withZitadel: appOrigin must be an origin like \"http://localhost:3002\", got \"${appOrigin}\"`,\n );\n }\n if (app === undefined) {\n // Nothing else will bind appOrigin in this mode: the instance is the app\n // server, and it listens on plain HTTP at localhost:<port>. Anything\n // else — another port, a real hostname, https — is an origin nobody\n // serves, so Playwright's readiness wait would hang (or, worse, pass\n // against an unrelated stale server). Loopback aliases are the only\n // freedom; the scheme and port are the instance's.\n const loopbackHosts = new Set([\"localhost\", \"127.0.0.1\", \"[::1]\"]);\n if (\n origin.protocol !== \"http:\" ||\n !loopbackHosts.has(origin.hostname) ||\n (origin.port || \"80\") !== String(port)\n ) {\n throw new Error(\n `withZitadel: with no \\`app\\`, the instance itself serves the app, so appOrigin ` +\n `must be its local origin (http://localhost:${port}); got \"${appOrigin}\".`,\n );\n }\n } else {\n if (!app.readyPath.startsWith(\"/\")) {\n throw new Error(`withZitadel: app.readyPath must start with \"/\", got \"${app.readyPath}\"`);\n }\n if (app.command.length === 0) {\n throw new Error(\"withZitadel: app.command must not be empty\");\n }\n if (!isAbsolute(app.cwd)) {\n throw new Error(`withZitadel: app.cwd must be absolute, got \"${app.cwd}\"`);\n }\n }\n // Path options are consumed by the executables, whose cwd is configDir —\n // a relative path would silently resolve against that, not the project.\n for (const [label, value] of [\n [\"zitadel.serverBinary\", options.zitadel?.serverBinary],\n [\"zitadel.dir\", options.zitadel?.dir],\n [\"handshakePath\", options.handshakePath],\n ] as const) {\n if (value !== undefined && !isAbsolute(value)) {\n throw new Error(`withZitadel: ${label} must be an absolute path, got \"${value}\"`);\n }\n }\n\n const handshakePath =\n options.handshakePath ?? join(configDir, \".zitadel-testing\", \"handshake.json\");\n // Workers inherit the runner's env; the fixtures resolve the instance from it.\n process.env[HANDSHAKE_ENV] = handshakePath;\n\n const supervisorConfig: SupervisorConfig = {\n port,\n appOrigins: [appOrigin],\n serverBinary: options.zitadel?.serverBinary,\n serverBinaryHint: options.zitadel?.serverBinaryHint,\n dir: options.zitadel?.dir,\n keep: options.zitadel?.keep,\n projectName: options.zitadel?.projectName,\n preset: options.zitadel?.preset,\n useCase: options.zitadel?.useCase,\n };\n const supervisorEntry: WebServerEntry = {\n command: `node ${JSON.stringify(resolveEntry(\"supervisor\"))}`,\n url: `http://localhost:${port}/healthz`,\n reuseExistingServer: false,\n cwd: configDir,\n stdout: \"pipe\",\n stderr: \"pipe\",\n // Cold boot (fresh data dir: migrations + health wait) dominates.\n timeout: options.zitadel?.bootTimeoutMs ?? 120_000,\n env: {\n [HANDSHAKE_ENV]: handshakePath,\n [SUPERVISOR_CONFIG_ENV]: JSON.stringify(supervisorConfig),\n },\n // SIGTERM first so the supervisor can stop the instance; the default\n // hard kill would orphan the server process group.\n gracefulShutdown: { signal: \"SIGTERM\", timeout: 30_000 },\n };\n\n if (app === undefined) {\n return { webServer: [supervisorEntry] };\n }\n\n const appRunnerConfig: AppRunnerConfig = {\n command: app.command,\n cwd: app.cwd,\n env: app.env,\n handshakeTimeoutMs: app.readyTimeoutMs ?? 180_000,\n };\n\n return {\n webServer: [\n supervisorEntry,\n {\n command: `node ${JSON.stringify(resolveEntry(\"app-runner\"))}`,\n url: new URL(app.readyPath, appOrigin).toString(),\n reuseExistingServer: false,\n cwd: configDir,\n stdout: \"pipe\",\n stderr: \"pipe\",\n timeout: app.readyTimeoutMs ?? 180_000,\n env: {\n [HANDSHAKE_ENV]: handshakePath,\n [APP_RUNNER_CONFIG_ENV]: JSON.stringify(appRunnerConfig),\n },\n gracefulShutdown: {\n signal: \"SIGTERM\",\n timeout: app.gracefulShutdownMs ?? 15_000,\n },\n },\n ],\n };\n}\n\n/**\n * Resolve a sibling dist entry in the same module format this file was loaded\n * as (dist/supervisor.mjs next to dist/playwright.mjs, .cjs next to .cjs), so\n * the spawned process needs no package-manager bin plumbing.\n */\nfunction entryPoint(name: \"supervisor\" | \"app-runner\"): string {\n const self = fileURLToPath(import.meta.url);\n const ext = extname(self);\n if (ext !== \".mjs\" && ext !== \".cjs\") {\n throw new Error(\n `withZitadel: expected to run from the built package (got ${self}); ` +\n \"build @zitadel/testing first (in-repo: `moon run testing:build`).\",\n );\n }\n const path = fileURLToPath(new URL(`./${name}${ext}`, import.meta.url));\n if (!existsSync(path)) {\n throw new Error(\n `withZitadel: missing ${path}; rebuild @zitadel/testing (in-repo: \\`moon run testing:build\\`).`,\n );\n }\n return path;\n}\n","import { test as base, type Page } from \"@playwright/test\";\n\nimport { waitForHandshake } from \"./handshake\";\nimport { connectZitadel } from \"./index\";\nimport { enableVirtualPasskey, type VirtualPasskey } from \"./passkey\";\nimport type {\n ConnectedZitadel,\n Identity,\n MintedSession,\n SeededUser,\n SeedSessionInput,\n SeedUserInput,\n SeedUsersTemplate,\n} from \"./types\";\n\nexport interface AuthenticatedPage {\n /** A page in its own context, already carrying the session cookie. */\n page: Page;\n user: SeededUser;\n session: MintedSession;\n}\n\nexport interface ZitadelTestFixtures {\n /** Per-test seeding; each call mints unique data on the shared instance. */\n seed: {\n user(input?: SeedUserInput): Promise<SeededUser>;\n users(count: number, template?: SeedUsersTemplate): Promise<SeededUser[]>;\n /** Unused email+password for registration flows — creates nothing. */\n identity(): Identity;\n /** Seeded user + headless real-flow login; password flows only. */\n session(input?: SeedSessionInput): Promise<MintedSession>;\n };\n /**\n * Start the test authenticated: a fresh user, a real session minted through\n * the flow API, and the cookie injected into a dedicated browser context —\n * the default `page` stays signed out for login-flow tests. Requires\n * `use.baseURL` (every withZitadel consumer sets it).\n */\n authenticatedPage: AuthenticatedPage;\n /**\n * Virtual passkey authenticator attached to the default `page`, disposed on\n * teardown. On-demand: tests that don't request it pay nothing. Chromium\n * only — see `enableVirtualPasskey` for the constraints.\n */\n passkey: VirtualPasskey;\n}\n\nexport interface ZitadelWorkerFixtures {\n /** Connection to the suite's instance, resolved once per worker. */\n zitadel: ConnectedZitadel;\n}\n\nexport const test = base.extend<ZitadelTestFixtures, ZitadelWorkerFixtures>({\n zitadel: [\n // Playwright derives fixture dependencies from the destructuring pattern,\n // so the empty pattern is required here.\n // oxlint-disable-next-line no-empty-pattern\n async ({}, use) => {\n const handshakePath = process.env.ZITADEL_TESTING_HANDSHAKE;\n if (!handshakePath) {\n throw new Error(\n \"ZITADEL_TESTING_HANDSHAKE is not set. Point it at the handshake file \" +\n \"written by the script that boots the instance (see @zitadel/testing docs).\",\n );\n }\n // Wait, don't read-once: the supervisor's Playwright readiness URL is\n // the instance's /healthz, which answers as soon as the *server* is up\n // — the handshake lands only after *bootstrap* (project, schema,\n // flows) completes a moment later. Suites with an `app` entry never\n // see the gap (the app runner waits for the handshake before the app\n // reports ready), but in app-less mode the first worker can get here\n // first. Bootstrap after health is seconds at most, so the default\n // wait is generous; a bootstrap failure surfaces as this timeout.\n await use(connectZitadel(await waitForHandshake(handshakePath)));\n },\n // `auto`: every worker waits for the bootstrapped instance before its\n // first test, including tests that use no fixture. Without it, a\n // `page`-only test in an app-less suite can navigate during the\n // bootstrap window and observe a project-less deployment — truthful,\n // rendered as the setup hint, and not what any suite means to test.\n // For app-ful suites this is a one-time handshake file read per worker.\n { scope: \"worker\", auto: true },\n ],\n seed: async ({ zitadel, baseURL }, use) => {\n await use({\n user: (input) => zitadel.seedUser(input),\n users: (count, template) => zitadel.seedUsers(count, template),\n identity: () => zitadel.identity(),\n // The suite's baseURL is the app origin the project allowlists.\n session: (input) => zitadel.seedSession({ origin: baseURL, ...input }),\n });\n },\n passkey: async ({ page }, use) => {\n const passkey = await enableVirtualPasskey(page);\n await use(passkey);\n await passkey.dispose();\n },\n authenticatedPage: async ({ browser, zitadel, baseURL }, use) => {\n if (!baseURL) {\n throw new Error(\n \"authenticatedPage requires `use.baseURL` so the session cookie can be \" +\n \"scoped to the app under test.\",\n );\n }\n const session = await zitadel.seedSession({ origin: baseURL });\n const context = await browser.newContext({ baseURL });\n // `addCookies` takes either url or domain/path; url derives the rest.\n const { path: _path, ...cookie } = session.cookie;\n await context.addCookies([{ ...cookie, url: baseURL }]);\n const page = await context.newPage();\n await use({ page, user: session.user, session });\n await context.close();\n },\n});\n\nexport { expect } from \"@playwright/test\";\nexport { applyAppEnvTemplate, nextAppEnv } from \"./app-env\";\nexport type { AppEnvTemplate } from \"./app-env\";\nexport {\n clickFlowAction,\n fillFlowField,\n flowAction,\n flowField,\n loginWithPassword,\n loginWithPasskey,\n registerWithPassword,\n registerWithPasskey,\n} from \"./flows\";\nexport type {\n FlowActionOptions,\n FlowFieldOptions,\n LoginCredentials,\n PasswordRegistrationDetails,\n ProfileEntry,\n RegistrationDetails,\n} from \"./flows\";\nexport { enableVirtualPasskey } from \"./passkey\";\nexport type { VirtualPasskey } from \"./passkey\";\nexport { withZitadel } from \"./playwright-config\";\nexport type { WithZitadelOptions } from \"./playwright-config\";\nexport type {\n ConnectedZitadel,\n Identity,\n InstanceHandle,\n MintedSession,\n SeededUser,\n SeedSessionInput,\n SeedUserInput,\n SeedUsersTemplate,\n} from \"./types\";\n"],"mappings":"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"}
|