mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
captureException now checks isRequestOptedIn before forwarding errors to Sentry, closing a gap where server errors leaked to an external service even when no user had consented. The PII scrubbing regex is also fixed: he[ic]f? failed to match .heic due to word-boundary behavior and is replaced with hei[cf]? which correctly covers .heic, .heif, and .hei. Adds 88 new analytics tests across unit, integration, and e2e layers proving PostHog/Sentry are never invoked when analytics is disabled or users have not consented, plus full 7-day reminder lifecycle coverage.
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { expect, test as setup } from "@playwright/test";
|
|
|
|
const authFile = path.join(process.cwd(), "test-results", ".auth", "analytics-local-user.json");
|
|
|
|
setup("authenticate and accept analytics consent", async ({ page }) => {
|
|
const dir = path.dirname(authFile);
|
|
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
|
|
await page.goto("/login");
|
|
await page.getByLabel("Username").fill("admin");
|
|
await page.getByLabel("Password").fill("admin");
|
|
await page.getByRole("button", { name: /login/i }).click();
|
|
|
|
// With ANALYTICS_ENABLED=true, the AuthGuard will redirect to /analytics-consent
|
|
// for a fresh user. Accept consent so authenticated tests can proceed.
|
|
try {
|
|
const acceptBtn = page.getByRole("button", { name: /sure, sounds good/i });
|
|
await acceptBtn.waitFor({ state: "visible", timeout: 10_000 });
|
|
await acceptBtn.click();
|
|
await page.waitForURL("/", { timeout: 30_000 });
|
|
} catch {
|
|
// Already on home page (consent previously accepted)
|
|
await page.waitForURL("/", { timeout: 15_000 });
|
|
}
|
|
|
|
await expect(page).toHaveURL("/");
|
|
await page.context().storageState({ path: authFile });
|
|
});
|