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

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

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: guard cron skill filter calls · openclaw/openclaw@3...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -26,6 +26,33 @@ const runCronIsolatedAgentTurn = await loadRunCronIsolatedAgentTurn();

2626

const makeSkillJob = makeIsolatedAgentTurnJob;

2727

const makeSkillParams = makeIsolatedAgentTurnParams;

282829+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

30+

if (typeof value !== "object" || value === null || Array.isArray(value)) {

31+

throw new Error(`expected ${label} to be an object`);

32+

}

33+

return value as Record<string, unknown>;

34+

}

35+36+

function getMockCallArg(

37+

mock: { mock: { calls: readonly unknown[][] } },

38+

callIndex: number,

39+

argIndex: number,

40+

label: string,

41+

): unknown {

42+

const call = mock.mock.calls[callIndex];

43+

if (!call) {

44+

throw new Error(`expected ${label} call ${callIndex}`);

45+

}

46+

return call[argIndex];

47+

}

48+49+

function getFirstMockArg(

50+

mock: { mock: { calls: readonly unknown[][] } },

51+

label: string,

52+

): Record<string, unknown> {

53+

return requireRecord(getMockCallArg(mock, 0, 0, label), `${label} params`);

54+

}

55+2956

// ---------- tests ----------

30573158

describe("runCronIsolatedAgentTurn — skill filter", () => {

@@ -39,8 +66,10 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

39664067

function expectDefaultModelCall(params: { primary: string; fallbacks: string[] }) {

4168

expect(runWithModelFallbackMock).toHaveBeenCalledOnce();

42-

const callCfg = runWithModelFallbackMock.mock.calls[0][0].cfg;

43-

const model = callCfg?.agents?.defaults?.model as { primary?: string; fallbacks?: string[] };

69+

const callCfg = getFirstMockArg(runWithModelFallbackMock, "model fallback").cfg as

70+

| { agents?: { defaults?: { model?: { primary?: string; fallbacks?: string[] } } } }

71+

| undefined;

72+

const model = callCfg?.agents?.defaults?.model;

4473

expect(model?.primary).toBe(params.primary);

4574

expect(model?.fallbacks).toEqual(params.fallbacks);

4675

}

@@ -62,10 +91,10 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

6291

agentId: "scout",

6392

});

6493

expect(buildWorkspaceSkillSnapshotMock).toHaveBeenCalledOnce();

65-

expect(buildWorkspaceSkillSnapshotMock.mock.calls[0][1]).toHaveProperty("skillFilter", [

66-

"meme-factory",

67-

"weather",

68-

]);

94+

expect(getMockCallArg(buildWorkspaceSkillSnapshotMock, 0, 1, "skill snapshot")).toHaveProperty(

95+

"skillFilter",

96+

["meme-factory", "weather"],

97+

);

6998

});

709971100

it("omits skillFilter when agent has no skills config", async () => {

@@ -77,7 +106,12 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

77106

});

78107

expect(buildWorkspaceSkillSnapshotMock).toHaveBeenCalledOnce();

79108

// When no skills config, skillFilter should be undefined (no filtering applied)

80-

expect(buildWorkspaceSkillSnapshotMock.mock.calls[0][1].skillFilter).toBeUndefined();

109+

expect(

110+

requireRecord(

111+

getMockCallArg(buildWorkspaceSkillSnapshotMock, 0, 1, "skill snapshot"),

112+

"skill snapshot options",

113+

).skillFilter,

114+

).toBeUndefined();

81115

});

8211683117

it("passes empty skillFilter when agent explicitly disables all skills", async () => {

@@ -89,7 +123,10 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

89123

});

90124

expect(buildWorkspaceSkillSnapshotMock).toHaveBeenCalledOnce();

91125

// Explicit empty skills list should forward [] to filter out all skills

92-

expect(buildWorkspaceSkillSnapshotMock.mock.calls[0][1]).toHaveProperty("skillFilter", []);

126+

expect(getMockCallArg(buildWorkspaceSkillSnapshotMock, 0, 1, "skill snapshot")).toHaveProperty(

127+

"skillFilter",

128+

[],

129+

);

93130

});

9413195132

it("refreshes cached snapshot when skillFilter changes without version bump", async () => {

@@ -116,15 +153,16 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

116153

agentId: "weather-bot",

117154

});

118155

expect(buildWorkspaceSkillSnapshotMock).toHaveBeenCalledOnce();

119-

expect(buildWorkspaceSkillSnapshotMock.mock.calls[0][1]).toHaveProperty("skillFilter", [

120-

"weather",

121-

]);

156+

expect(getMockCallArg(buildWorkspaceSkillSnapshotMock, 0, 1, "skill snapshot")).toHaveProperty(

157+

"skillFilter",

158+

["weather"],

159+

);

122160

});

123161124162

it("forces a fresh session for isolated cron runs", async () => {

125163

await runSkillFilterCase();

126164

expect(resolveCronSessionMock).toHaveBeenCalledOnce();

127-

expect(resolveCronSessionMock.mock.calls[0]?.[0]?.forceNew).toBe(true);

165+

expect(getFirstMockArg(resolveCronSessionMock, "cron session").forceNew).toBe(true);

128166

});

129167130168

it("reuses cached snapshot when version and normalized skillFilter are unchanged", async () => {

@@ -204,7 +242,7 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

204242

expect(result.status).toBe("ok");

205243

expect(logWarnMock).not.toHaveBeenCalled();

206244

expect(runWithModelFallbackMock).toHaveBeenCalledOnce();

207-

const runParams = runWithModelFallbackMock.mock.calls[0][0];

245+

const runParams = getFirstMockArg(runWithModelFallbackMock, "model fallback");

208246

expect(runParams.provider).toBe("anthropic");

209247

expect(runParams.model).toBe("claude-sonnet-4-6");

210248

});

@@ -329,7 +367,7 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

329367330368

expect(runCliAgentMock).toHaveBeenCalledOnce();

331369

// Fresh session: cliSessionId must be undefined, not the stored value.

332-

expect(runCliAgentMock.mock.calls[0][0]).toHaveProperty("cliSessionId", undefined);

370+

expect(getFirstMockArg(runCliAgentMock, "CLI run")).toHaveProperty("cliSessionId", undefined);

333371

});

334372335373

it("reuses stored cliSessionId on continuation runs (isNewSession=false)", async () => {

@@ -360,7 +398,7 @@ describe("runCronIsolatedAgentTurn — skill filter", () => {

360398361399

expect(runCliAgentMock).toHaveBeenCalledOnce();

362400

// Continuation: cliSessionId should be passed through for session resume.

363-

expect(runCliAgentMock.mock.calls[0][0]).toHaveProperty(

401+

expect(getFirstMockArg(runCliAgentMock, "CLI run")).toHaveProperty(

364402

"cliSessionId",

365403

"existing-cli-session-def",

366404

);