惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(qa): require channel scenario markers · openclaw/ope...
vincentkoc · 2026-06-03 · via Recent Commits to openclaw:main
11

import { describe, expect, it } from "vitest";

22

import { createQaBusState } from "./bus-state.js";

3+

import { readQaScenarioById } from "./scenario-catalog.js";

34

import { runScenarioFlow } from "./scenario-flow-runner.js";

456+

type QaFlowStep = {

7+

name: string;

8+

run: () => Promise<string | void>;

9+

};

10+11+

function formatTestTranscript(state: ReturnType<typeof createQaBusState>) {

12+

return state

13+

.getSnapshot()

14+

.messages.map((message) => `${message.direction}:${message.conversation.id}:${message.text}`)

15+

.join("\n");

16+

}

17+18+

async function runLoadedScenarioFlow(

19+

scenarioId: string,

20+

params: {

21+

onWaitForOutboundMessage?: (params: {

22+

waitCount: number;

23+

state: ReturnType<typeof createQaBusState>;

24+

}) => void;

25+

} = {},

26+

) {

27+

const scenario = readQaScenarioById(scenarioId);

28+

const flow = scenario.execution.flow;

29+

if (!flow) {

30+

throw new Error(`scenario has no flow: ${scenarioId}`);

31+

}

32+33+

const state = createQaBusState();

34+

let waitCount = 0;

35+

const api = {

36+

env: {},

37+

state,

38+

scenario,

39+

config: scenario.execution.config ?? {},

40+

randomUUID: () => "00000000-0000-4000-8000-000000000000",

41+

liveTurnTimeoutMs: (_env: unknown, timeoutMs: number) => timeoutMs,

42+

waitForGatewayHealthy: async () => undefined,

43+

waitForQaChannelReady: async () => undefined,

44+

waitForNoOutbound: async () => undefined,

45+

sleep: async () => undefined,

46+

reset: async () => {

47+

state.reset();

48+

},

49+

resetBus: async () => {

50+

state.reset();

51+

},

52+

runAgentPrompt: async () => undefined,

53+

formatTransportTranscript: formatTestTranscript,

54+

waitForOutboundMessage: async (

55+

stateLocal: ReturnType<typeof createQaBusState>,

56+

predicate: (candidate: unknown) => boolean,

57+

timeoutMs: number,

58+

options?: { sinceIndex?: number },

59+

) => {

60+

waitCount += 1;

61+

params.onWaitForOutboundMessage?.({ waitCount, state: stateLocal });

62+

const match = stateLocal

63+

.getSnapshot()

64+

.messages.slice(options?.sinceIndex ?? 0)

65+

.find((candidate) => predicate(candidate));

66+

if (match) {

67+

return match;

68+

}

69+

throw new Error(`timed out after ${timeoutMs}ms waiting for outbound marker`);

70+

},

71+

runScenario: async (_name: string, steps: QaFlowStep[]) => {

72+

const stepResults = [];

73+

for (const step of steps) {

74+

const details = await step.run();

75+

stepResults.push({

76+

name: step.name,

77+

status: "pass" as const,

78+

...(details !== undefined ? { details } : {}),

79+

});

80+

}

81+

return {

82+

name: scenario.title,

83+

status: "pass" as const,

84+

steps: stepResults,

85+

};

86+

},

87+

};

88+89+

return await runScenarioFlow({

90+

api,

91+

scenarioTitle: scenario.title,

92+

flow,

93+

});

94+

}

95+596

describe("scenario-flow-runner", () => {

697

it("supports qaImport inside flow expressions", async () => {

798

const result = await runScenarioFlow({

@@ -221,4 +312,78 @@ describe("scenario-flow-runner", () => {

221312

expect(result.status).toBe("pass");

222313

expect(result.steps[0]?.details).toBe("QA_CODEX_PLUGIN_TURN_OK");

223314

});

315+316+

it.each([

317+

{

318+

scenarioId: "channel-chat-baseline",

319+

to: "channel:qa-room",

320+

text: "generic shared-channel reply without the required marker",

321+

},

322+

{

323+

scenarioId: "dm-chat-baseline",

324+

to: "dm:alice",

325+

text: "generic DM reply without the required marker",

326+

},

327+

])("rejects unmarked outbound replies for $scenarioId", async ({ scenarioId, to, text }) => {

328+

await expect(

329+

runLoadedScenarioFlow(scenarioId, {

330+

onWaitForOutboundMessage: ({ state }) => {

331+

state.addOutboundMessage({

332+

accountId: "qa-channel",

333+

to,

334+

text,

335+

});

336+

},

337+

}),

338+

).rejects.toThrow("waiting for outbound marker");

339+

});

340+341+

it("rejects reconnect follow-up replies that replay the first marker", async () => {

342+

await expect(

343+

runLoadedScenarioFlow("qa-channel-reconnect-dedupe", {

344+

onWaitForOutboundMessage: ({ waitCount, state }) => {

345+

if (waitCount === 1) {

346+

state.addOutboundMessage({

347+

accountId: "qa-channel",

348+

to: "channel:qa-room",

349+

text: "RECONNECT-FIRST-OK",

350+

});

351+

return;

352+

}

353+

state.addOutboundMessage({

354+

accountId: "qa-channel",

355+

to: "channel:qa-room",

356+

text: "RECONNECT-FIRST-OK",

357+

});

358+

},

359+

}),

360+

).rejects.toThrow("waiting for outbound marker");

361+

});

362+363+

it("rejects reconnect follow-up turns with extra unmarked outbound replies", async () => {

364+

await expect(

365+

runLoadedScenarioFlow("qa-channel-reconnect-dedupe", {

366+

onWaitForOutboundMessage: ({ waitCount, state }) => {

367+

if (waitCount === 1) {

368+

state.addOutboundMessage({

369+

accountId: "qa-channel",

370+

to: "channel:qa-room",

371+

text: "RECONNECT-FIRST-OK",

372+

});

373+

return;

374+

}

375+

state.addOutboundMessage({

376+

accountId: "qa-channel",

377+

to: "channel:qa-room",

378+

text: "RECONNECT-SECOND-OK",

379+

});

380+

state.addOutboundMessage({

381+

accountId: "qa-channel",

382+

to: "channel:qa-room",

383+

text: "unmarked duplicate delivery",

384+

});

385+

},

386+

}),

387+

).rejects.toThrow("exactly one marked post-restart reply");

388+

});

224389

});