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

推荐订阅源

The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
WordPress大学
WordPress大学
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
P
Proofpoint News Feed
D
DataBreaches.Net

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
refactor: share native hook relay test helpers · openclaw...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -2,6 +2,12 @@ import { afterEach, describe, expect, it, vi } from "vitest";

22

import { testing, registerNativeHookRelay } from "../../agents/harness/native-hook-relay.js";

33

import { nativeHookRelayHandlers } from "./native-hook-relay.js";

445+

const POST_TOOL_USE_PAYLOAD = {

6+

hook_event_name: "PostToolUse",

7+

tool_name: "Bash",

8+

tool_response: { output: "ok" },

9+

};

10+511

afterEach(() => {

612

testing.clearNativeHookRelaysForTests();

713

});

@@ -14,55 +20,28 @@ describe("native hook relay gateway method", () => {

1420

runId: "run-1",

1521

allowedEvents: ["post_tool_use"],

1622

});

17-

const respond = viRespond();

182319-

await nativeHookRelayHandlers["nativeHook.invoke"]({

20-

req: { type: "req", id: "1", method: "nativeHook.invoke" },

21-

params: {

22-

provider: "codex",

23-

relayId: relay.relayId,

24-

generation: relay.generation,

25-

event: "post_tool_use",

26-

rawPayload: {

27-

hook_event_name: "PostToolUse",

28-

tool_name: "Bash",

29-

tool_response: { output: "ok" },

30-

},

31-

},

32-

client: null,

33-

isWebchatConnect: () => false,

34-

respond,

35-

context: {} as never,

24+

const respond = await invokeNativeHook({

25+

provider: "codex",

26+

relayId: relay.relayId,

27+

generation: relay.generation,

28+

event: "post_tool_use",

29+

rawPayload: POST_TOOL_USE_PAYLOAD,

3630

});

37313832

expect(respond).toHaveBeenCalledWith(true, { stdout: "", stderr: "", exitCode: 0 });

3933

expect(testing.getNativeHookRelayInvocationsForTests()).toHaveLength(1);

4034

});

41354236

it("rejects unknown relay ids", async () => {

43-

const respond = viRespond();

44-45-

await nativeHookRelayHandlers["nativeHook.invoke"]({

46-

req: { type: "req", id: "1", method: "nativeHook.invoke" },

47-

params: {

48-

provider: "codex",

49-

relayId: "missing",

50-

event: "pre_tool_use",

51-

rawPayload: {},

52-

},

53-

client: null,

54-

isWebchatConnect: () => false,

55-

respond,

56-

context: {} as never,

37+

const respond = await invokeNativeHook({

38+

provider: "codex",

39+

relayId: "missing",

40+

event: "pre_tool_use",

41+

rawPayload: {},

5742

});

584359-

const call = respond.mock.calls.at(0) as

60-

| [boolean, unknown, { code?: string; message?: string }]

61-

| undefined;

62-

expect(call?.[0]).toBe(false);

63-

expect(call?.[1]).toBeUndefined();

64-

expect(call?.[2]?.code).toBe("INVALID_REQUEST");

65-

expect(call?.[2]?.message).toContain("not found");

44+

expectInvalidRequest(respond, "not found");

6645

});

67466847

it("rejects stale relay generations", async () => {

@@ -80,38 +59,43 @@ describe("native hook relay gateway method", () => {

8059

runId: "run-2",

8160

allowedEvents: ["post_tool_use"],

8261

});

83-

const respond = viRespond();

846285-

await nativeHookRelayHandlers["nativeHook.invoke"]({

86-

req: { type: "req", id: "1", method: "nativeHook.invoke" },

87-

params: {

88-

provider: "codex",

89-

relayId: first.relayId,

90-

generation: first.generation,

91-

event: "post_tool_use",

92-

rawPayload: {

93-

hook_event_name: "PostToolUse",

94-

tool_name: "Bash",

95-

tool_response: { output: "ok" },

96-

},

97-

},

98-

client: null,

99-

isWebchatConnect: () => false,

100-

respond,

101-

context: {} as never,

63+

const respond = await invokeNativeHook({

64+

provider: "codex",

65+

relayId: first.relayId,

66+

generation: first.generation,

67+

event: "post_tool_use",

68+

rawPayload: POST_TOOL_USE_PAYLOAD,

10269

});

10370104-

const call = respond.mock.calls.at(0) as

105-

| [boolean, unknown, { code?: string; message?: string }]

106-

| undefined;

107-

expect(call?.[0]).toBe(false);

108-

expect(call?.[1]).toBeUndefined();

109-

expect(call?.[2]?.code).toBe("INVALID_REQUEST");

110-

expect(call?.[2]?.message).toContain("native hook relay bridge stale registration");

71+

expectInvalidRequest(respond, "native hook relay bridge stale registration");

11172

expect(testing.getNativeHookRelayInvocationsForTests()).toStrictEqual([]);

11273

});

11374

});

1147576+

async function invokeNativeHook(params: Record<string, unknown>) {

77+

const respond = viRespond();

78+

await nativeHookRelayHandlers["nativeHook.invoke"]({

79+

req: { type: "req", id: "1", method: "nativeHook.invoke" },

80+

params,

81+

client: null,

82+

isWebchatConnect: () => false,

83+

respond,

84+

context: {} as never,

85+

});

86+

return respond;

87+

}

88+89+

function expectInvalidRequest(respond: ReturnType<typeof viRespond>, message: string) {

90+

const call = respond.mock.calls.at(0) as

91+

| [boolean, unknown, { code?: string; message?: string }]

92+

| undefined;

93+

expect(call?.[0]).toBe(false);

94+

expect(call?.[1]).toBeUndefined();

95+

expect(call?.[2]?.code).toBe("INVALID_REQUEST");

96+

expect(call?.[2]?.message).toContain(message);

97+

}

98+11599

function viRespond() {

116100

return vi.fn();

117101

}