mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-13 14:35:33 +10:00
0ba44865c7
- dashboard-lifecycle: rename, duplicate, delete via card context menu - section-editing: add experience item, verify persistence across reloads - template-switch: switch template in gallery, verify persisted selection - sharing-password: password-protect public link, unlock as anonymous visitor - lock-resume: lock blocks update/delete, unlock restores them - settings-profile: profile name change persists
35 lines
1.4 KiB
TypeScript
35 lines
1.4 KiB
TypeScript
import { createSampleResumeFromDashboard, openSidebarSection } from "../fixtures/resume";
|
|
import { expect, test } from "../fixtures/test";
|
|
|
|
test("password-protects a public resume and unlocks it as a visitor", async ({ browser, authPage: page }, testInfo) => {
|
|
await createSampleResumeFromDashboard(page, testInfo);
|
|
await openSidebarSection(page, "Sharing");
|
|
|
|
await page.getByRole("switch", { name: /Allow Public Access/ }).click();
|
|
const sharingUrl = page.locator("#sharing-url");
|
|
await expect(sharingUrl).toHaveValue(/\/e2e_/);
|
|
const publicUrl = await sharingUrl.inputValue();
|
|
|
|
const password = "e2e-secret-42";
|
|
await page.getByRole("button", { name: "Set Password" }).click();
|
|
const prompt = page.getByRole("alertdialog");
|
|
await prompt.locator('input[type="password"]').fill(password);
|
|
await prompt.getByRole("button", { name: "Set Password" }).click();
|
|
await expect(page.getByRole("button", { name: "Remove Password" })).toBeVisible();
|
|
|
|
const anonymous = await browser.newPage();
|
|
try {
|
|
// Anonymous visitors hit the password gate first
|
|
await anonymous.goto(publicUrl);
|
|
await anonymous.waitForURL(/\/auth\/resume-password/);
|
|
|
|
await anonymous.getByLabel("Password", { exact: true }).fill(password);
|
|
await anonymous.getByRole("button", { name: "Unlock" }).click();
|
|
|
|
// The correct password reveals the actual resume
|
|
await expect(anonymous.getByRole("button", { name: "Download PDF" })).toBeVisible();
|
|
} finally {
|
|
await anonymous.close();
|
|
}
|
|
});
|