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

推荐订阅源

Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
量子位
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 【当耐特】
爱范儿
爱范儿
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
IT之家
IT之家
博客园_首页
博客园 - 聂微东
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗

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(sdk): list helpers work without filters · openclaw/op...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -676,6 +676,69 @@ describe("OpenClaw SDK", () => {

676676

]);

677677

});

678678679+

it("sends empty params for no-arg Gateway list helpers", async () => {

680+

const transport = new FakeTransport({

681+

"agents.list": { agents: [] },

682+

"sessions.list": { sessions: [] },

683+

"tasks.list": { tasks: [] },

684+

"models.list": { models: [] },

685+

"tools.catalog": { tools: [] },

686+

"exec.approval.list": { approvals: [] },

687+

"environments.list": { environments: [] },

688+

});

689+

const oc = new OpenClaw({ transport });

690+691+

await expect(oc.agents.list()).resolves.toEqual({ agents: [] });

692+

await expect(oc.sessions.list()).resolves.toEqual({ sessions: [] });

693+

await expect(oc.tasks.list()).resolves.toEqual({ tasks: [] });

694+

await expect(oc.models.list()).resolves.toEqual({ models: [] });

695+

await expect(oc.tools.list()).resolves.toEqual({ tools: [] });

696+

await expect(oc.approvals.list()).resolves.toEqual({ approvals: [] });

697+

await expect(oc.environments.list()).resolves.toEqual({ environments: [] });

698+699+

expect(transport.calls).toEqual([

700+

{ method: "agents.list", params: {}, options: undefined },

701+

{ method: "sessions.list", params: {}, options: undefined },

702+

{ method: "tasks.list", params: {}, options: undefined },

703+

{ method: "models.list", params: {}, options: undefined },

704+

{ method: "tools.catalog", params: {}, options: undefined },

705+

{ method: "exec.approval.list", params: {}, options: undefined },

706+

{ method: "environments.list", params: {}, options: undefined },

707+

]);

708+

});

709+710+

it("preserves explicit null params for Gateway list validation", async () => {

711+

type ListMethod = (this: unknown, params: unknown) => Promise<unknown>;

712+

const transport = new FakeTransport({

713+

"agents.list": { agents: [] },

714+

"sessions.list": { sessions: [] },

715+

"tasks.list": { tasks: [] },

716+

"models.list": { models: [] },

717+

"tools.catalog": { tools: [] },

718+

"exec.approval.list": { approvals: [] },

719+

"environments.list": { environments: [] },

720+

});

721+

const oc = new OpenClaw({ transport });

722+723+

await (oc.agents.list as unknown as ListMethod).call(oc.agents, null);

724+

await (oc.sessions.list as unknown as ListMethod).call(oc.sessions, null);

725+

await (oc.tasks.list as unknown as ListMethod).call(oc.tasks, null);

726+

await oc.models.list(null);

727+

await oc.tools.list(null);

728+

await oc.approvals.list(null);

729+

await oc.environments.list(null);

730+731+

expect(transport.calls).toEqual([

732+

{ method: "agents.list", params: null, options: undefined },

733+

{ method: "sessions.list", params: null, options: undefined },

734+

{ method: "tasks.list", params: null, options: undefined },

735+

{ method: "models.list", params: null, options: undefined },

736+

{ method: "tools.catalog", params: null, options: undefined },

737+

{ method: "exec.approval.list", params: null, options: undefined },

738+

{ method: "environments.list", params: null, options: undefined },

739+

]);

740+

});

741+679742

it("keeps close terminal when it races a pending connect", async () => {

680743

const transport = new DelayedConnectTransport({

681744

"agents.list": { agents: [] },

@@ -713,7 +776,7 @@ describe("OpenClaw SDK", () => {

713776

{

714777

method: "exec.approval.list",

715778

options: undefined,

716-

params: undefined,

779+

params: {},

717780

},

718781

{

719782

method: "exec.approval.resolve",