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

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow 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
fix(release): keep mock release lanes offline · openclaw/...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -120,7 +120,7 @@ describe("web auto-reply", () => {

120120

body: true,

121121

arrayBuffer: async () =>

122122

buffer.buffer.slice(buffer.byteOffset, buffer.byteOffset + buffer.byteLength),

123-

headers: { get: () => mime },

123+

headers: new Headers({ "content-type": mime }),

124124

status: 200,

125125

} as unknown as Response);

126126

}

@@ -191,7 +191,7 @@ describe("web auto-reply", () => {

191191

body: true,

192192

arrayBuffer: async () =>

193193

image.buffer.slice(image.byteOffset, image.byteOffset + image.byteLength),

194-

headers: { get: () => mime },

194+

headers: new Headers({ "content-type": mime }),

195195

status: 200,

196196

} as unknown as Response;

197197

});

@@ -308,7 +308,7 @@ describe("web auto-reply", () => {

308308

body: true,

309309

arrayBuffer: async () =>

310310

smallPng.buffer.slice(smallPng.byteOffset, smallPng.byteOffset + smallPng.byteLength),

311-

headers: { get: () => "image/png" },

311+

headers: new Headers({ "content-type": "image/png" }),

312312

status: 200,

313313

} as unknown as Response);

314314

@@ -335,7 +335,7 @@ describe("web auto-reply", () => {

335335

status: 404,

336336

body: null,

337337

arrayBuffer: async () => new ArrayBuffer(0),

338-

headers: { get: () => "text/plain" },

338+

headers: new Headers({ "content-type": "text/plain" }),

339339

} as unknown as Response);

340340
341341

await dispatch("msg1");

@@ -364,7 +364,7 @@ describe("web auto-reply", () => {

364364

ok: true,

365365

body: true,

366366

arrayBuffer: async () => png.buffer.slice(png.byteOffset, png.byteOffset + png.byteLength),

367-

headers: { get: () => "image/png" },

367+

headers: new Headers({ "content-type": "image/png" }),

368368

status: 200,

369369

} as unknown as Response);

370370
Original file line numberDiff line numberDiff line change

@@ -12,12 +12,14 @@ export function applyMockOpenAiModelConfig(cfg, params) {

1212

baseUrl: `http://127.0.0.1:${params.mockPort}/v1`,

1313

apiKey: { source: "env", provider: "default", id: "OPENAI_API_KEY" },

1414

api: "openai-responses",

15+

agentRuntime: { id: "openclaw" },

1516

request: { ...cfg.models?.providers?.openai?.request, allowPrivateNetwork: true },

1617

models: [

1718

{

1819

id: modelId,

1920

name: modelId,

2021

api: "openai-responses",

22+

agentRuntime: { id: "openclaw" },

2123

reasoning: false,

2224

input: ["text", "image"],

2325

cost,

@@ -42,9 +44,32 @@ export function applyMockOpenAiModelConfig(cfg, params) {

4244

: {}),

4345

models: {

4446

...cfg.agents?.defaults?.models,

45-

[modelRef]: { params: { transport: "sse", openaiWsWarmup: false } },

47+

[modelRef]: {

48+

agentRuntime: { id: "openclaw" },

49+

params: { transport: "sse", openaiWsWarmup: false },

50+

},

4651

},

4752

},

53+

...(Array.isArray(cfg.agents?.list)

54+

? {

55+

list: cfg.agents.list.map((agent) => ({

56+

...agent,

57+

model: { ...agent.model, primary: modelRef },

58+

models: {

59+

...agent.models,

60+

[modelRef]: {

61+

...agent.models?.[modelRef],

62+

agentRuntime: { id: "openclaw" },

63+

params: {

64+

...agent.models?.[modelRef]?.params,

65+

transport: "sse",

66+

openaiWsWarmup: false,

67+

},

68+

},

69+

},

70+

})),

71+

}

72+

: {}),

4873

};

4974

cfg.plugins = {

5075

...cfg.plugins,

Original file line numberDiff line numberDiff line change

@@ -42,6 +42,49 @@ function configureMockModel() {

4242

fs.writeFileSync(configPath, `${JSON.stringify(cfg, null, 2)}\n`);

4343

}

4444
45+

function assertMockModelConfig() {

46+

const mockPort = Number(process.argv[3]);

47+

const expectedModelRef = "openai/gpt-5.5";

48+

const expectedBaseUrl = `http://127.0.0.1:${mockPort}/v1`;

49+

const configPath = path.join(process.env.HOME, ".openclaw", "openclaw.json");

50+

const cfg = readJson(configPath);

51+

const provider = cfg.models?.providers?.openai;

52+

const defaultModel = cfg.agents?.defaults?.model?.primary;

53+

const defaultRuntime = cfg.agents?.defaults?.models?.[expectedModelRef]?.agentRuntime?.id;

54+

const agent = Array.isArray(cfg.agents?.list)

55+

? (cfg.agents.list.find((entry) => entry?.id === "main") ?? cfg.agents.list[0])

56+

: undefined;

57+

const agentModel = agent?.model?.primary;

58+

const agentRuntime = agent?.models?.[expectedModelRef]?.agentRuntime?.id;

59+

if (provider?.baseUrl !== expectedBaseUrl) {

60+

throw new Error(

61+

`mock OpenAI baseUrl was not preserved; expected ${expectedBaseUrl}, got ${provider?.baseUrl}`,

62+

);

63+

}

64+

if (provider?.api !== "openai-responses") {

65+

throw new Error(`mock OpenAI api was not preserved; got ${provider?.api}`);

66+

}

67+

if (provider?.agentRuntime?.id !== "openclaw") {

68+

throw new Error(`mock OpenAI runtime was not preserved; got ${provider?.agentRuntime?.id}`);

69+

}

70+

if (defaultModel !== expectedModelRef) {

71+

throw new Error(

72+

`mock default model was not preserved; expected ${expectedModelRef}, got ${defaultModel}`,

73+

);

74+

}

75+

if (defaultRuntime !== "openclaw") {

76+

throw new Error(`mock default runtime was not preserved; got ${defaultRuntime}`);

77+

}

78+

if (agent && agentModel !== expectedModelRef) {

79+

throw new Error(

80+

`mock agent model was not preserved; expected ${expectedModelRef}, got ${agentModel}`,

81+

);

82+

}

83+

if (agent && agentRuntime !== "openclaw") {

84+

throw new Error(`mock agent runtime was not preserved; got ${agentRuntime}`);

85+

}

86+

}

87+
4588

function assertChannelConfig() {

4689

const channel = process.argv[3];

4790

const expectedTokens = process.argv.slice(4);

@@ -94,6 +137,7 @@ function assertAgentTurn() {

94137

const commands = {

95138

"assert-onboard-state": assertOnboardState,

96139

"configure-mock-model": configureMockModel,

140+

"assert-mock-model-config": assertMockModelConfig,

97141

"assert-channel-config": assertChannelConfig,

98142

"assert-status-surfaces": assertStatusSurfaces,

99143

"assert-agent-turn": assertAgentTurn,

Original file line numberDiff line numberDiff line change

@@ -123,7 +123,9 @@ dump_debug_logs() {

123123

/tmp/openclaw-agent.err \

124124

/tmp/openclaw-agent.json \

125125

/tmp/openclaw-mock-openai.log \

126-

"$MOCK_REQUEST_LOG"

126+

"$MOCK_REQUEST_LOG" \

127+

"$OPENCLAW_HOME/.openclaw/openclaw.json" \

128+

"$OPENCLAW_HOME/.openclaw/agents/main/agent/auth-profiles.json"

127129

}

128130

trap 'status=$?; dump_debug_logs "$status"; exit "$status"' ERR

129131

@@ -156,7 +158,6 @@ openclaw onboard --non-interactive --accept-risk \

156158

--json >/tmp/openclaw-onboard.json

157159
158160

node scripts/e2e/lib/npm-onboard-channel-agent/assertions.mjs assert-onboard-state "$HOME"

159-

node scripts/e2e/lib/npm-onboard-channel-agent/assertions.mjs configure-mock-model "$MOCK_PORT"

160161
161162

openclaw_e2e_assert_dep_absent "$DEP_SENTINEL" "$HOME/.openclaw"

162163

@@ -177,13 +178,23 @@ else

177178

openclaw_e2e_assert_dep_absent "$DEP_SENTINEL" "$HOME/.openclaw"

178179

fi

179180
181+

node scripts/e2e/lib/npm-onboard-channel-agent/assertions.mjs configure-mock-model "$MOCK_PORT"

182+

node scripts/e2e/lib/npm-onboard-channel-agent/assertions.mjs assert-mock-model-config "$MOCK_PORT"

183+
180184

echo "Running local agent turn against mocked OpenAI..."

185+

set +e

181186

openclaw agent --local \

182187

--agent main \

183188

--session-id npm-onboard-channel-agent \

184189

--message "Return the success marker from the test server." \

185190

--thinking off \

186191

--json >/tmp/openclaw-agent.combined 2>&1

192+

agent_status=$?

193+

set -e

194+

if [ "$agent_status" -ne 0 ]; then

195+

dump_debug_logs "$agent_status"

196+

exit "$agent_status"

197+

fi

187198
188199

node scripts/e2e/lib/npm-onboard-channel-agent/assertions.mjs assert-agent-turn "$SUCCESS_MARKER" "$MOCK_REQUEST_LOG"

189200