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

推荐订阅源

I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
罗磊的独立博客
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
The GitHub Blog
The GitHub Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏

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: tighten channel plugin id assertions · openclaw/ope...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main

@@ -1169,7 +1169,7 @@ describe("resolveGatewayStartupPluginIds", () => {

11691169

DEMO_CHANNEL_ANYTHING: "1",

11701170

} as NodeJS.ProcessEnv,

11711171

}),

1172-

).toEqual([]);

1172+

).toStrictEqual([]);

11731173

});

1174117411751175

it("keeps explicitly trusted deferred channel owners eligible at startup", () => {

@@ -1264,7 +1264,7 @@ describe("resolveGatewayStartupPluginIds", () => {

12641264

OPENCLAW_STATE_DIR: "/tmp/openclaw-with-persisted-demo-channel",

12651265

} as NodeJS.ProcessEnv,

12661266

}),

1267-

).toEqual([]);

1267+

).toStrictEqual([]);

12681268

});

1269126912701270

it("loads channel, deferred, and startup plugin ids from one manifest registry", () => {

@@ -1287,7 +1287,7 @@ describe("resolveGatewayStartupPluginIds", () => {

1287128712881288

expect(plan.channelPluginIds).toContain("demo-channel");

12891289

expect(plan.pluginIds).toContain("demo-channel");

1290-

expect(plan.configuredDeferredChannelPluginIds).toEqual([]);

1290+

expect(plan.configuredDeferredChannelPluginIds).toStrictEqual([]);

12911291

expect(loadPluginRegistrySnapshot).toHaveBeenCalledOnce();

12921292

expect(loadPluginManifestRegistryForInstalledIndex).toHaveBeenCalledOnce();

12931293

});

@@ -1311,7 +1311,7 @@ describe("resolveGatewayStartupPluginIds", () => {

13111311

workspaceDir: "/tmp",

13121312

env: {},

13131313

}),

1314-

).toEqual([]);

1314+

).toStrictEqual([]);

13151315

});

1316131613171317

it("includes the explicitly selected memory slot plugin in startup scope", () => {

@@ -1604,7 +1604,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

16041604

workspaceDir: "/tmp",

16051605

env: process.env,

16061606

}),

1607-

).toEqual([]);

1607+

).toStrictEqual([]);

16081608

});

1609160916101610

it("keeps explicitly configured bundled channel owners under restrictive allowlists", () => {

@@ -1640,7 +1640,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

16401640

workspaceDir: "/tmp",

16411641

env: process.env,

16421642

}),

1643-

).toEqual([]);

1643+

).toStrictEqual([]);

16441644

});

1645164516461646

it("blocks bundled activation owners when plugins are globally disabled", () => {

@@ -1657,7 +1657,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

16571657

workspaceDir: "/tmp",

16581658

env: process.env,

16591659

}),

1660-

).toEqual([]);

1660+

).toStrictEqual([]);

16611661

});

1662166216631663

it("filters untrusted workspace activation owners from configured-channel runtime planning", () => {

@@ -1669,7 +1669,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

16691669

workspaceDir: "/tmp",

16701670

env: process.env,

16711671

}),

1672-

).toEqual([]);

1672+

).toStrictEqual([]);

16731673

});

1674167416751675

it("filters untrusted global activation owners from configured-channel runtime planning", () => {

@@ -1681,7 +1681,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

16811681

workspaceDir: "/tmp",

16821682

env: process.env,

16831683

}),

1684-

).toEqual([]);

1684+

).toStrictEqual([]);

16851685

});

1686168616871687

it("keeps explicitly enabled global activation owners eligible for configured-channel runtime planning", () => {

@@ -1710,7 +1710,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

17101710

workspaceDir: "/tmp",

17111711

env: process.env,

17121712

}),

1713-

).toEqual([]);

1713+

).toStrictEqual([]);

17141714

});

1715171517161716

it("includes trusted external channel owners configured only by manifest env vars", () => {

@@ -1747,7 +1747,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

17471747

workspaceDir: "/tmp",

17481748

env: process.env,

17491749

}),

1750-

).toEqual([]);

1750+

).toStrictEqual([]);

17511751

});

17521752

});

17531753

@@ -1779,7 +1779,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

17791779

} as NodeJS.ProcessEnv,

17801780

includePersistedAuthState: false,

17811781

}),

1782-

).toEqual([]);

1782+

).toStrictEqual([]);

1783178317841784

expect(

17851785

hasConfiguredChannelsForReadOnlyScope({

@@ -1903,23 +1903,23 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

19031903

},

19041904

} as OpenClawConfig;

190519051906-

expect(listExplicitConfiguredChannelIdsForConfig(config)).toEqual([]);

1906+

expect(listExplicitConfiguredChannelIdsForConfig(config)).toStrictEqual([]);

19071907

expect(

19081908

resolveConfiguredChannelPresencePolicy({

19091909

config,

19101910

workspaceDir: "/tmp",

19111911

env: {},

19121912

includePersistedAuthState: false,

19131913

}),

1914-

).toEqual([]);

1914+

).toStrictEqual([]);

19151915

expect(

19161916

listConfiguredChannelIdsForReadOnlyScope({

19171917

config,

19181918

workspaceDir: "/tmp",

19191919

env: {},

19201920

includePersistedAuthState: false,

19211921

}),

1922-

).toEqual([]);

1922+

).toStrictEqual([]);

19231923

});

1924192419251925

it("treats disabled channel config as a hard read-only env suppressor", () => {

@@ -1953,7 +1953,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

19531953

} as NodeJS.ProcessEnv,

19541954

includePersistedAuthState: false,

19551955

}),

1956-

).toEqual([]);

1956+

).toStrictEqual([]);

19571957

expect(

19581958

listConfiguredChannelIdsForReadOnlyScope({

19591959

config,

@@ -1963,7 +1963,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

19631963

} as NodeJS.ProcessEnv,

19641964

includePersistedAuthState: false,

19651965

}),

1966-

).toEqual([]);

1966+

).toStrictEqual([]);

19671967

});

1968196819691969

it("treats disabled channel config as a hard persisted-auth suppressor", () => {

@@ -1991,7 +1991,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

19911991

workspaceDir: "/tmp",

19921992

env: {},

19931993

}),

1994-

).toEqual([]);

1994+

).toStrictEqual([]);

19951995

});

1996199619971997

it("treats disabled channel config as a hard manifest-env suppressor", () => {

@@ -2013,7 +2013,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

20132013

} as NodeJS.ProcessEnv,

20142014

includePersistedAuthState: false,

20152015

}),

2016-

).toEqual([]);

2016+

).toStrictEqual([]);

20172017

});

2018201820192019

it("lets explicit bundled channel config bypass restrictive allowlists", () => {

@@ -2098,7 +2098,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

20982098

env: {},

20992099

includePersistedAuthState: false,

21002100

}),

2101-

).toEqual([]);

2101+

).toStrictEqual([]);

2102210221032103

expect(

21042104

listConfiguredChannelIdsForReadOnlyScope({

@@ -2116,7 +2116,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

21162116

env: {},

21172117

includePersistedAuthState: false,

21182118

}),

2119-

).toEqual([]);

2119+

).toStrictEqual([]);

21202120

});

2121212121222122

it("lists explicit configured channels without ambient env triggers", () => {

@@ -2165,7 +2165,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

21652165

DEMO_CHANNEL_TOKEN: "ambient",

21662166

} as NodeJS.ProcessEnv,

21672167

}),

2168-

).toEqual([]);

2168+

).toStrictEqual([]);

21692169

});

2170217021712171

it("uses effective read-only channel policy for announce channels", () => {

@@ -2256,7 +2256,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

22562256

} as NodeJS.ProcessEnv,

22572257

includePersistedAuthState: false,

22582258

}),

2259-

).toEqual([]);

2259+

).toStrictEqual([]);

2260226022612261

expect(

22622262

hasConfiguredChannelsForReadOnlyScope({

@@ -2286,7 +2286,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

22862286

} as NodeJS.ProcessEnv,

22872287

includePersistedAuthState: false,

22882288

}),

2289-

).toEqual([]);

2289+

).toStrictEqual([]);

22902290

});

2291229122922292

it("accepts lowercase or mixed-case manifest env vars as read-only configured channel triggers", () => {