feat: pipeline templates, analytics opt-out, 83 conversion presets, positioning + e2e modernization

Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351).

Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
This commit is contained in:
SnapOtter
2026-06-28 18:57:53 +08:00
committed by GitHub
parent 88af8d46fb
commit 63a03d26f2
421 changed files with 17308 additions and 2540 deletions
+13 -10
View File
@@ -2,7 +2,8 @@ import { authFile } from "../../playwright.config";
import { expect, openSettings, test } from "./helpers";
test.describe("Settings Dialog", () => {
test("opens from sidebar", async ({ loggedInPage: page }) => {
test("opens from the avatar menu", async ({ loggedInPage: page }) => {
// 2.0 removed the desktop sidebar; openSettings drives the avatar dropdown.
await openSettings(page);
// Settings dialog should appear with sections
@@ -14,7 +15,7 @@ test.describe("Settings Dialog", () => {
// Should show username and version info
await expect(page.getByText(/admin/i).first()).toBeVisible();
await expect(page.getByText(/0\.1\.0|version/i).first()).toBeVisible();
await expect(page.getByText(/2\.0\.0|version/i).first()).toBeVisible();
});
test("General section has logout button", async ({ loggedInPage: page }) => {
@@ -27,8 +28,10 @@ test.describe("Settings Dialog", () => {
test("Security section has change password form", async ({ loggedInPage: page }) => {
await openSettings(page);
// Navigate to Security section
await page.getByText("Security").click();
// Navigate to Security section via the dialog nav button (the section
// heading reuses the same label, so scope to the button to avoid strict-mode
// ambiguity).
await page.getByRole("button", { name: "Security", exact: true }).click();
// Should show password change fields
await expect(page.getByText(/change password|current password/i).first()).toBeVisible();
@@ -37,8 +40,8 @@ test.describe("Settings Dialog", () => {
test("People section shows user list", async ({ loggedInPage: page }) => {
await openSettings(page);
// Navigate to People section
await page.getByText("People").click();
// Navigate to People section via the dialog nav button
await page.getByRole("button", { name: "People", exact: true }).click();
// Should show admin user
await expect(page.getByText("admin").first()).toBeVisible();
@@ -73,8 +76,8 @@ test.describe("Settings Dialog", () => {
test("About section shows app info", async ({ loggedInPage: page }) => {
await openSettings(page);
// Navigate to About section
await page.getByText("About").click();
// Navigate to About section via the dialog nav button
await page.getByRole("button", { name: "About", exact: true }).click();
// Should show app description
await expect(page.getByText(/snapotter|privacy|self-hosted/i).first()).toBeVisible();
@@ -83,8 +86,8 @@ test.describe("Settings Dialog", () => {
test("System Settings section has configuration", async ({ loggedInPage: page }) => {
await openSettings(page);
// Navigate to System Settings section
await page.getByText("System Settings").click();
// Navigate to System Settings section via the dialog nav button
await page.getByRole("button", { name: "System Settings", exact: true }).click();
// Should show system configuration options
await expect(page.getByText(/app name|upload limit|theme/i).first()).toBeVisible();