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

推荐订阅源

WordPress大学
WordPress大学
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
博客园 - Franky
阮一峰的网络日志
阮一峰的网络日志
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
V
V2EX
MyScale Blog
MyScale 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(cron): preview no-deliver message targets · openclaw/...
Alix-007 · 2026-05-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

11

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

2-

import { resolveCronDeliveryPlan } from "./delivery-plan.js";

2+

import { hasExplicitCronDeliveryTarget, resolveCronDeliveryPlan } from "./delivery-plan.js";

33

import { makeCronJob } from "./delivery.test-helpers.js";

44
55

describe("resolveCronDeliveryPlan", () => {

@@ -28,4 +28,18 @@ describe("resolveCronDeliveryPlan", () => {

2828

requested: false,

2929

});

3030

});

31+
32+

it("treats numeric zero thread id as an explicit target", () => {

33+

const plan = resolveCronDeliveryPlan(

34+

makeCronJob({

35+

delivery: {

36+

mode: "none",

37+

threadId: 0,

38+

},

39+

}),

40+

);

41+
42+

expect(plan.threadId).toBe(0);

43+

expect(hasExplicitCronDeliveryTarget(plan)).toBe(true);

44+

});

3145

});

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,12 @@ export type CronDeliveryPlan = {

1919

requested: boolean;

2020

};

2121
22+

export function hasExplicitCronDeliveryTarget(plan: CronDeliveryPlan): boolean {

23+

return Boolean(

24+

(plan.channel && plan.channel !== "last") || plan.to || plan.threadId != null || plan.accountId,

25+

);

26+

}

27+
2228

function normalizeChannel(value: unknown): CronMessageChannel | undefined {

2329

const trimmed = normalizeOptionalLowercaseString(value);

2430

if (!trimmed) {

Original file line numberDiff line numberDiff line change

@@ -66,4 +66,78 @@ describe("resolveCronDeliveryPreview", () => {

6666

expect(preview).toEqual({ label: "not requested", detail: "not requested" });

6767

expect(mocks.resolveDeliveryTarget).not.toHaveBeenCalled();

6868

});

69+
70+

it("previews explicit message-tool targets on no-delivery jobs", async () => {

71+

const job = makeCronJob({

72+

agentId: "avery",

73+

delivery: {

74+

mode: "none",

75+

channel: "topicchat",

76+

to: "room#42",

77+

threadId: 42,

78+

accountId: "ops",

79+

},

80+

sessionTarget: "isolated",

81+

});

82+
83+

const preview = await resolveCronDeliveryPreview({

84+

cfg: {} as never,

85+

job,

86+

});

87+
88+

expect(mocks.resolveDeliveryTarget).toHaveBeenCalledWith(

89+

{},

90+

"avery",

91+

{

92+

channel: "topicchat",

93+

to: "room#42",

94+

threadId: 42,

95+

accountId: "ops",

96+

sessionKey: undefined,

97+

},

98+

{ dryRun: true },

99+

);

100+

expect(preview).toEqual({

101+

label: "none -> telegram:direct-123",

102+

detail: "explicit",

103+

});

104+

});

105+
106+

it("does not describe unresolved no-delivery message-tool targets as fail-closed", async () => {

107+

mocks.resolveDeliveryTarget.mockResolvedValueOnce({

108+

ok: false,

109+

mode: "implicit",

110+

error: new Error("no route"),

111+

});

112+

const job = makeCronJob({

113+

agentId: "avery",

114+

delivery: {

115+

mode: "none",

116+

threadId: 0,

117+

},

118+

sessionTarget: "isolated",

119+

});

120+
121+

const preview = await resolveCronDeliveryPreview({

122+

cfg: {} as never,

123+

job,

124+

});

125+
126+

expect(mocks.resolveDeliveryTarget).toHaveBeenCalledWith(

127+

{},

128+

"avery",

129+

{

130+

channel: "last",

131+

to: undefined,

132+

threadId: 0,

133+

accountId: undefined,

134+

sessionKey: undefined,

135+

},

136+

{ dryRun: true },

137+

);

138+

expect(preview).toEqual({

139+

label: "none -> last",

140+

detail: "message tool target unresolved: no route",

141+

});

142+

});

69143

});

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import { resolveDefaultAgentId } from "../agents/agent-scope-config.js";

22

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

3-

import { resolveCronDeliveryPlan } from "./delivery-plan.js";

3+

import { hasExplicitCronDeliveryTarget, resolveCronDeliveryPlan } from "./delivery-plan.js";

44

import { resolveDeliveryTarget } from "./isolated-agent/delivery-target.js";

55

import { resolveCronDeliverySessionKey } from "./session-target.js";

66

import type { CronDeliveryPreview, CronJob } from "./types.js";

@@ -40,7 +40,7 @@ export async function resolveCronDeliveryPreview(params: {

4040

job: CronJob;

4141

}): Promise<CronDeliveryPreview> {

4242

const plan = resolveCronDeliveryPlan(params.job);

43-

if (plan.mode === "none") {

43+

if (plan.mode === "none" && !hasExplicitCronDeliveryTarget(plan)) {

4444

return { label: "not requested", detail: "not requested" };

4545

}

4646

if (plan.mode === "webhook") {

@@ -67,12 +67,15 @@ export async function resolveCronDeliveryPreview(params: {

6767

if (!resolved.ok) {

6868

return {

6969

label: `${plan.mode} -> ${formatTarget(requestedChannel, plan.to ?? null)}`,

70-

detail: formatDeliveryDetail({

71-

requestedChannel,

72-

resolved: false,

73-

sessionKey: deliverySessionKey,

74-

error: resolved.error.message,

75-

}),

70+

detail:

71+

plan.mode === "none"

72+

? `message tool target unresolved: ${resolved.error.message}`

73+

: formatDeliveryDetail({

74+

requestedChannel,

75+

resolved: false,

76+

sessionKey: deliverySessionKey,

77+

error: resolved.error.message,

78+

}),

7679

};

7780

}

7881

return {

Original file line numberDiff line numberDiff line change

@@ -232,7 +232,8 @@ vi.mock("../../config/sessions/store.runtime.js", () => ({

232232

updateSessionStore: updateSessionStoreMock,

233233

}));

234234
235-

vi.mock("../delivery-plan.js", () => ({

235+

vi.mock("../delivery-plan.js", async () => ({

236+

...(await vi.importActual<typeof import("../delivery-plan.js")>("../delivery-plan.js")),

236237

resolveCronDeliveryPlan: resolveCronDeliveryPlanMock,

237238

}));

238239
Original file line numberDiff line numberDiff line change

@@ -27,7 +27,11 @@ import { isCommandLaneTaskTimeoutError } from "../../process/command-queue.js";

2727

import { CommandLane } from "../../process/lanes.js";

2828

import { createLazyImportLoader } from "../../shared/lazy-promise.js";

2929

import { normalizeOptionalString } from "../../shared/string-coerce.js";

30-

import { resolveCronDeliveryPlan, type CronDeliveryPlan } from "../delivery-plan.js";

30+

import {

31+

hasExplicitCronDeliveryTarget,

32+

resolveCronDeliveryPlan,

33+

type CronDeliveryPlan,

34+

} from "../delivery-plan.js";

3135

import {

3236

createCronRunDiagnosticsFromAgentResult,

3337

createCronRunDiagnosticsFromError,

@@ -344,12 +348,6 @@ function canPromptForMessageTool(params: {

344348

);

345349

}

346350
347-

function hasExplicitCronDeliveryTarget(plan: CronDeliveryPlan): boolean {

348-

return Boolean(

349-

(plan.channel && plan.channel !== "last") || plan.to || plan.threadId || plan.accountId,

350-

);

351-

}

352-
353351

async function resolveCronDeliveryContext(params: {

354352

cfg: OpenClawConfig;

355353

job: CronJob;