Files
OpenMesh/surfaces/gui/e2e-live/approval.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

33 lines
1.7 KiB
TypeScript

import { test, expect } from "@playwright/test";
import { readFileSync } from "fs";
import { newestFile, scratchBaseIfReady, sendTask, startCoworkSession } from "./helpers";
// LIVE #1 — the approval gate. In the default "Ask for approval" mode a tool call must block on an
// in-transcript approval card; approving it lets execution proceed. (fib.md skips this via Full
// access.) Excluded from CI — run with `npm run e2e:live`.
test("live: a write blocks on an approval card, then completes once approved", async ({ page }) => {
const scratchBase = await scratchBaseIfReady();
test.skip(!scratchBase, "live backend not ready — start openworker-server and configure a model");
// Unique filename per run so the "doesn't exist before approval" check can't see a prior run's file.
const name = `hello-${Date.now()}.txt`;
await startCoworkSession(page);
// Leave the default "Ask for approval" mode — the write should gate.
await sendTask(page, `Create a file named ${name} containing exactly the text: hello world`);
// The tool call blocks on an approval card, and the file does not exist yet.
await expect(page.getByText("Permission required")).toBeVisible({ timeout: 120_000 });
expect(newestFile(scratchBase!, name), "file must not exist before approval").toBeNull();
// Approve it.
await page.getByRole("button", { name: "Allow once" }).click();
// Now it runs to completion and the artifact lands on disk.
await expect(page.getByText(/Artifacts \(\d+\)/)).toBeVisible({ timeout: 120_000 });
const file = newestFile(scratchBase!, name);
expect(file, `no ${name} found under ${scratchBase}`).toBeTruthy();
expect(readFileSync(file!, "utf8").toLowerCase()).toContain("hello world");
});