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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
L
LangChain Blog
Y
Y Combinator Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
V
Visual Studio Blog
小众软件
小众软件
月光博客
月光博客
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
美团技术团队
量子位

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
docs: document common agent tool tests · openclaw/opencla...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// agents_list tests cover subagent discovery, runtime metadata, and legacy

2+

// runtime override handling.

13

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

24

import type { OpenClawConfig } from "../../config/types.openclaw.js";

35

import { createAgentsListTool } from "./agents-list-tool.js";

@@ -76,6 +78,8 @@ describe("agents_list tool", () => {

7678

});

7779
7880

it("does not advertise stale allowlist-only targets as spawnable agents", async () => {

81+

// Allowlist entries are permissions, not agent definitions; stale ids should

82+

// not be presented as runnable subagents.

7983

loadConfigMock.mockReturnValue({

8084

agents: {

8185

list: [

@@ -160,6 +164,8 @@ describe("agents_list tool", () => {

160164

});

161165
162166

it("ignores legacy env-forced plugin runtime selections", async () => {

167+

// Runtime selection now comes from config/model routing, not a process-wide

168+

// legacy env override.

163169

vi.stubEnv("OPENCLAW_AGENT_RUNTIME", "codex");

164170

loadConfigMock.mockReturnValue({

165171

agents: {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Common tool helper tests cover shared parsing and media result shapes used by

2+

// multiple agent tools.

13

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

24

import { imageResult, parseAvailableTags } from "./common.js";

35

@@ -31,6 +33,8 @@ describe("parseAvailableTags", () => {

3133

});

3234

describe("imageResult", () => {

3335

test("stores media delivery in details.media instead of MEDIA text", async () => {

36+

// Binary media should travel through typed content/details, not a textual

37+

// MEDIA sentinel that providers can display or reinterpret.

3438

const result = await imageResult({

3539

label: "test:image",

3640

path: "/tmp/test.png",

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Embedded gateway stub tests cover in-process gateway methods used by agent

2+

// tools when no external gateway transport is available.

13

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

24

import { createEmbeddedCallGateway } from "./embedded-gateway-stub.js";

35

@@ -101,6 +103,8 @@ describe("embedded gateway stub", () => {

101103

});

102104
103105

it("projects embedded chat history through the shared display projector", async () => {

106+

// Embedded history must use the same projection path as gateway history so

107+

// byte/message limits and display filtering stay aligned.

104108

const rawMessages = [

105109

{ role: "user", content: "hello" },

106110

{ role: "assistant", content: "hi" },

@@ -148,6 +152,8 @@ describe("embedded gateway stub", () => {

148152

});

149153
150154

it("infers embedded global chat history scope from agent-prefixed aliases", async () => {

155+

// Agent-prefixed global aliases carry the target agent id even when the

156+

// caller does not pass agentId separately.

151157

const callGateway = createEmbeddedCallGateway();

152158

await callGateway<{ messages: unknown[] }>({

153159

method: "chat.history",

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Node utility tests cover node selection defaults and gateway fallback between

2+

// current and legacy node list methods.

13

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

24
35

const gatewayMocks = vi.hoisted(() => ({

@@ -43,6 +45,8 @@ describe("resolveNodeIdFromList defaults", () => {

4345

});

4446
4547

it("uses stable nodeId ordering when connectedAtMs is unavailable", () => {

48+

// Deterministic tie-breaking keeps repeated tool calls from bouncing

49+

// between connected nodes.

4650

const nodes: NodeListNode[] = [

4751

node({ nodeId: "z-node", platform: "ios", connectedAtMs: undefined }),

4852

node({ nodeId: "a-node", platform: "android", connectedAtMs: undefined }),

@@ -54,6 +58,8 @@ describe("resolveNodeIdFromList defaults", () => {

5458
5559

describe("listNodes", () => {

5660

it("falls back to node.pair.list only when node.list is unavailable", async () => {

61+

// Old gateways only expose node.pair.list; newer authorization failures

62+

// must still surface instead of being hidden by fallback.

5763

gatewayMocks.callGatewayTool

5864

.mockRejectedValueOnce(new Error("unknown method: node.list"))

5965

.mockResolvedValueOnce({