Files
OpenMesh/surfaces/gui/e2e/project-bindings.spec.ts
zhaolei 6f402ffcee
Some checks failed
CI / pytest (push) Has been cancelled
CI / gui-unit (push) Has been cancelled
CI / gui-e2e (push) Has been cancelled
feat: OpenMesh 基础平台与 MD/PDF 转换技能
- 后端: coworker 智能体框架, WS API, 文件上传, 附件处理
- 前端: Open WebUI, 文件全量走 upload API (含 MD/TXT/JSON 等文本类)
- 技能: md-to-office (pandoc + wkhtmltopdf)
- 修复: 上传文件路径丢失, Agent 搜索浪费, 输出文件跑到 uploads/
- 打包: PyInstaller one-dir, 预打包 pandoc/wkhtmltopdf/chromium
2026-09-13 23:41:04 +08:00

68 lines
3.3 KiB
TypeScript

import { test, expect } from "./fixtures";
// UX-044: the composer "+" menu's session section — project-memory/board bindings.
// Guards: the two labeled sections, the radio submenu (derived label rules, MRU,
// bound tag), swap-binding round trip, board's "none" row, and naming the current
// project. Bindings are PROJECT memory only — global memory never appears here.
async function openAttach(page: import("@playwright/test").Page) {
await page.goto("/");
await page.getByText("Draft the launch note").first().click();
await page.getByRole("button", { name: "Attach" }).click();
}
test("attach menu: two sections, memory submenu with derived + named rows", async ({ page }) => {
await openAttach(page);
await expect(page.getByText("This message")).toBeVisible();
await expect(page.getByText("This session")).toBeVisible();
await expect(page.getByRole("button", { name: "Photo or image" })).toBeVisible();
await page.getByRole("button", { name: "Project memory" }).click();
const menu = page.getByTestId("project-menu-memory");
// Derived row: folder form, trimmed to the last 3 segments, tagged.
await expect(menu.getByText("…/ro4d/demo-universe/notes")).toBeVisible();
await expect(menu.getByText("this folder")).toBeVisible();
// Named rows (MRU), no filter under 6, the two actions.
await expect(menu.getByText("openworker")).toBeVisible();
await expect(menu.getByText("personal-ops")).toBeVisible();
await expect(menu.getByPlaceholder("Filter…")).toHaveCount(0);
await expect(menu.getByText("Name current memory…")).toBeVisible();
await expect(menu.getByText("View & edit…")).toBeVisible();
});
test("binding swap round-trips and closes the menu", async ({ page }) => {
await openAttach(page);
await page.getByRole("button", { name: "Project memory" }).click();
await page.getByTestId("project-menu-memory").getByText("openworker").click();
// Menu closed on success.
await expect(page.getByTestId("project-menu-memory")).toHaveCount(0);
// Reopen: the binding shows as bound.
await page.getByRole("button", { name: "Attach" }).click();
await page.getByRole("button", { name: "Project memory" }).click();
const menu = page.getByTestId("project-menu-memory");
await expect(menu.getByText("bound")).toBeVisible();
});
test("board submenu has a none row and its own names", async ({ page }) => {
await openAttach(page);
await page.getByRole("button", { name: "Board", exact: true }).click();
const menu = page.getByTestId("project-menu-board");
await expect(menu.getByText("none")).toBeVisible();
await expect(menu.getByText("aicreator-ops")).toBeVisible();
// Board naming exists; memory's View & edit does not.
await expect(menu.getByText("Name current board…")).toBeVisible();
await expect(menu.getByText("View & edit…")).toHaveCount(0);
});
test("naming the current project adds it to the named list", async ({ page }) => {
await openAttach(page);
await page.getByRole("button", { name: "Project memory" }).click();
await page.getByTestId("project-menu-memory").getByText("Name current memory…").click();
const input = page.getByPlaceholder("Name this memory…");
await input.fill("my-notes");
await input.press("Enter");
await expect(page.getByTestId("project-menu-memory").getByText("my-notes")).toBeVisible();
});