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

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator 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: keep cron last delivery sentinel runtime-only (#6882...
tianhaocui · 2026-04-19 · via Recent Commits to openclaw:main

@@ -163,6 +163,48 @@ describe("cron controller", () => {

163163

});

164164

});

165165166+

it('omits delivery.channel when the form still uses the "last" sentinel', async () => {

167+

const request = vi.fn(async (method: string, _payload?: unknown) => {

168+

if (method === "cron.add") {

169+

return { id: "job-last-add" };

170+

}

171+

if (method === "cron.list") {

172+

return { jobs: [] };

173+

}

174+

if (method === "cron.status") {

175+

return { enabled: true, jobs: 0, nextWakeAtMs: null };

176+

}

177+

return {};

178+

});

179+180+

const state = createState({

181+

client: { request } as unknown as CronState["client"],

182+

cronForm: {

183+

...DEFAULT_CRON_FORM,

184+

name: "implicit channel",

185+

scheduleKind: "cron",

186+

cronExpr: "0 * * * *",

187+

sessionTarget: "isolated",

188+

wakeMode: "next-heartbeat",

189+

payloadKind: "agentTurn",

190+

payloadText: "run this",

191+

deliveryMode: "announce",

192+

deliveryChannel: "last",

193+

},

194+

});

195+196+

await addCronJob(state);

197+198+

const addCall = request.mock.calls.find(([method]) => method === "cron.add");

199+

expect(addCall).toBeDefined();

200+

expect(addCall?.[1]).toMatchObject({

201+

delivery: { mode: "announce" },

202+

});

203+

expect(

204+

(addCall?.[1] as { delivery?: { channel?: string } } | undefined)?.delivery?.channel,

205+

).toBeUndefined();

206+

});

207+166208

it("forwards lightContext in cron payload", async () => {

167209

const request = vi.fn(async (method: string, _payload?: unknown) => {

168210

if (method === "cron.add") {

@@ -485,6 +527,97 @@ describe("cron controller", () => {

485527

expect(state.cronForm.deliveryAccountId).toBe("bot-2");

486528

});

487529530+

it('keeps implicit announce delivery implicit when editing a job that shows "last" in the form', async () => {

531+

const request = vi.fn(async (method: string, _payload?: unknown) => {

532+

if (method === "cron.update") {

533+

return { id: "job-implicit-delivery" };

534+

}

535+

if (method === "cron.list") {

536+

return { jobs: [{ id: "job-implicit-delivery" }] };

537+

}

538+

if (method === "cron.status") {

539+

return { enabled: true, jobs: 1, nextWakeAtMs: null };

540+

}

541+

return {};

542+

});

543+

const job = {

544+

id: "job-implicit-delivery",

545+

name: "Implicit delivery",

546+

enabled: true,

547+

createdAtMs: 0,

548+

updatedAtMs: 0,

549+

schedule: { kind: "cron" as const, expr: "0 * * * *" },

550+

sessionTarget: "isolated" as const,

551+

wakeMode: "next-heartbeat" as const,

552+

payload: { kind: "agentTurn" as const, message: "run" },

553+

delivery: { mode: "announce" as const, to: "123" },

554+

state: {},

555+

};

556+

const state = createState({

557+

client: { request } as unknown as CronState["client"],

558+

cronJobs: [job],

559+

});

560+561+

startCronEdit(state, job);

562+

await addCronJob(state);

563+564+

const updateCall = request.mock.calls.find(([method]) => method === "cron.update");

565+

expect(updateCall).toBeDefined();

566+

expect(updateCall?.[1]).toMatchObject({

567+

id: "job-implicit-delivery",

568+

patch: {

569+

delivery: { mode: "announce", to: "123" },

570+

},

571+

});

572+

expect(

573+

(updateCall?.[1] as { patch?: { delivery?: { channel?: string } } } | undefined)?.patch

574+

?.delivery?.channel,

575+

).toBeUndefined();

576+

});

577+578+

it('sends delivery.channel="last" when editing clears an explicit channel back to implicit-last', async () => {

579+

const request = vi.fn(async (method: string, _payload?: unknown) => {

580+

if (method === "cron.update") {

581+

return { id: "job-clear-delivery-channel" };

582+

}

583+

if (method === "cron.list") {

584+

return { jobs: [{ id: "job-clear-delivery-channel" }] };

585+

}

586+

if (method === "cron.status") {

587+

return { enabled: true, jobs: 1, nextWakeAtMs: null };

588+

}

589+

return {};

590+

});

591+

const job = {

592+

id: "job-clear-delivery-channel",

593+

name: "Clear delivery channel",

594+

enabled: true,

595+

createdAtMs: 0,

596+

updatedAtMs: 0,

597+

schedule: { kind: "cron" as const, expr: "0 * * * *" },

598+

sessionTarget: "isolated" as const,

599+

wakeMode: "next-heartbeat" as const,

600+

payload: { kind: "agentTurn" as const, message: "run" },

601+

delivery: { mode: "announce" as const, channel: "telegram", to: "123" },

602+

state: {},

603+

};

604+

const state = createState({

605+

client: { request } as unknown as CronState["client"],

606+

cronJobs: [job],

607+

});

608+609+

startCronEdit(state, job);

610+

state.cronForm.deliveryChannel = "last";

611+

await addCronJob(state);

612+613+

const updateCall = request.mock.calls.find(([method]) => method === "cron.update");

614+

expect(updateCall).toBeDefined();

615+

expect(

616+

(updateCall?.[1] as { patch?: { delivery?: { channel?: string } } } | undefined)?.patch

617+

?.delivery?.channel,

618+

).toBe("last");

619+

});

620+488621

it("includes model/thinking/stagger/bestEffort in cron.update patch", async () => {

489622

const request = vi.fn(async (method: string, _payload?: unknown) => {

490623

if (method === "cron.update") {

@@ -684,6 +817,103 @@ describe("cron controller", () => {

684817

});

685818

});

686819820+

it('keeps implicit failure alert delivery implicit when editing a job that shows "last" in the form', async () => {

821+

const request = vi.fn(async (method: string, _payload?: unknown) => {

822+

if (method === "cron.update") {

823+

return { id: "job-alert-implicit-channel" };

824+

}

825+

if (method === "cron.list") {

826+

return { jobs: [{ id: "job-alert-implicit-channel" }] };

827+

}

828+

if (method === "cron.status") {

829+

return { enabled: true, jobs: 1, nextWakeAtMs: null };

830+

}

831+

return {};

832+

});

833+

const job = {

834+

id: "job-alert-implicit-channel",

835+

name: "Implicit failure alert",

836+

enabled: true,

837+

createdAtMs: 0,

838+

updatedAtMs: 0,

839+

schedule: { kind: "cron" as const, expr: "0 * * * *" },

840+

sessionTarget: "isolated" as const,

841+

wakeMode: "next-heartbeat" as const,

842+

payload: { kind: "agentTurn" as const, message: "run" },

843+

delivery: { mode: "announce" as const, channel: "telegram", to: "123" },

844+

failureAlert: { after: 2, to: "123" },

845+

state: {},

846+

};

847+

const state = createState({

848+

client: { request } as unknown as CronState["client"],

849+

cronJobs: [job],

850+

});

851+852+

startCronEdit(state, job);

853+

await addCronJob(state);

854+855+

const updateCall = request.mock.calls.find(([method]) => method === "cron.update");

856+

expect(updateCall).toBeDefined();

857+

expect(updateCall?.[1]).toMatchObject({

858+

id: "job-alert-implicit-channel",

859+

patch: {

860+

failureAlert: {

861+

after: 2,

862+

to: "123",

863+

mode: "announce",

864+

},

865+

},

866+

});

867+

expect(

868+

(updateCall?.[1] as { patch?: { failureAlert?: { channel?: string } } } | undefined)?.patch

869+

?.failureAlert?.channel,

870+

).toBeUndefined();

871+

});

872+873+

it('sends failureAlert.channel="last" when editing clears an explicit failure channel back to implicit-last', async () => {

874+

const request = vi.fn(async (method: string, _payload?: unknown) => {

875+

if (method === "cron.update") {

876+

return { id: "job-clear-failure-channel" };

877+

}

878+

if (method === "cron.list") {

879+

return { jobs: [{ id: "job-clear-failure-channel" }] };

880+

}

881+

if (method === "cron.status") {

882+

return { enabled: true, jobs: 1, nextWakeAtMs: null };

883+

}

884+

return {};

885+

});

886+

const job = {

887+

id: "job-clear-failure-channel",

888+

name: "Clear failure channel",

889+

enabled: true,

890+

createdAtMs: 0,

891+

updatedAtMs: 0,

892+

schedule: { kind: "cron" as const, expr: "0 * * * *" },

893+

sessionTarget: "isolated" as const,

894+

wakeMode: "next-heartbeat" as const,

895+

payload: { kind: "agentTurn" as const, message: "run" },

896+

delivery: { mode: "announce" as const, channel: "telegram", to: "123" },

897+

failureAlert: { after: 2, channel: "telegram", to: "123" },

898+

state: {},

899+

};

900+

const state = createState({

901+

client: { request } as unknown as CronState["client"],

902+

cronJobs: [job],

903+

});

904+905+

startCronEdit(state, job);

906+

state.cronForm.failureAlertChannel = "last";

907+

await addCronJob(state);

908+909+

const updateCall = request.mock.calls.find(([method]) => method === "cron.update");

910+

expect(updateCall).toBeDefined();

911+

expect(

912+

(updateCall?.[1] as { patch?: { failureAlert?: { channel?: string } } } | undefined)?.patch

913+

?.failureAlert?.channel,

914+

).toBe("last");

915+

});

916+687917

it("omits failureAlert.cooldownMs when custom cooldown is left blank", async () => {

688918

const request = vi.fn(async (method: string, _payload?: unknown) => {

689919

if (method === "cron.update") {