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

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

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: keep vitest cases under one second · openclaw/openc...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -5,7 +5,7 @@ import {

55

enqueueSystemEvent,

66

resetSystemEventsForTest,

77

} from "openclaw/plugin-sdk/system-event-runtime";

8-

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

8+

import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";

99

import {

1010

testing,

1111

reconcileShortTermDreamingCronJob,

@@ -838,6 +838,95 @@ describe("short-term dreaming cron reconciliation", () => {

838838

});

839839840840

describe("gateway startup reconciliation", () => {

841+

let liveConfigRunPayloadCase: {

842+

result: unknown;

843+

runtimeConfigCalled: boolean;

844+

warnCalls: unknown[][];

845+

};

846+847+

beforeAll(async () => {

848+

clearInternalHooks();

849+

const logger = createLogger();

850+

const harness = createCronHarness();

851+

const onMock = vi.fn();

852+

const workspaceDir = await createTempWorkspace("memory-dreaming-live-config-workspace-");

853+

const runtimeCurrentConfig = vi.fn(

854+

() =>

855+

({

856+

agents: {

857+

list: [{ id: "main", default: true, workspace: workspaceDir }],

858+

},

859+

plugins: {

860+

entries: {

861+

"memory-core": {

862+

config: {

863+

dreaming: {

864+

enabled: true,

865+

frequency: "15 4 * * *",

866+

timezone: "UTC",

867+

limit: 0,

868+

},

869+

},

870+

},

871+

},

872+

},

873+

}) as OpenClawConfig,

874+

);

875+

const api: DreamingPluginApiTestDouble = {

876+

config: {

877+

plugins: {

878+

entries: {

879+

"memory-core": {

880+

config: {

881+

dreaming: {

882+

enabled: true,

883+

frequency: "15 4 * * *",

884+

timezone: "UTC",

885+

limit: 5,

886+

},

887+

},

888+

},

889+

},

890+

},

891+

} as OpenClawConfig,

892+

pluginConfig: {},

893+

logger,

894+

runtime: {

895+

config: {

896+

current: runtimeCurrentConfig,

897+

},

898+

},

899+

on: onMock,

900+

};

901+902+

try {

903+

registerShortTermPromotionDreamingForTest(api);

904+

await triggerGatewayStart(onMock, {

905+

config: api.config,

906+

getCron: () => harness.cron,

907+

});

908+909+

const sessionKey = "agent:main:main";

910+

enqueueSystemEvent(constants.DREAMING_SYSTEM_EVENT_TEXT, {

911+

sessionKey,

912+

contextKey: "cron:memory-dreaming",

913+

});

914+915+

const beforeAgentReply = getBeforeAgentReplyHandler(onMock);

916+

liveConfigRunPayloadCase = {

917+

result: await beforeAgentReply(

918+

{ cleanedBody: constants.DREAMING_SYSTEM_EVENT_TEXT },

919+

{ trigger: "heartbeat", sessionKey },

920+

),

921+

runtimeConfigCalled: runtimeCurrentConfig.mock.calls.length > 0,

922+

warnCalls: [...logger.warn.mock.calls],

923+

};

924+

} finally {

925+

await triggerGatewayStop(onMock).catch(() => undefined);

926+

clearInternalHooks();

927+

}

928+

});

929+841930

it("uses the startup cfg when reconciling the managed dreaming cron job", async () => {

842931

clearInternalHooks();

843932

const logger = createLogger();

@@ -1497,6 +1586,7 @@ describe("gateway startup reconciliation", () => {

1497158614981587

expectLogContains(logger.warn, "cron service unavailable");

14991588

} finally {

1589+

await triggerGatewayStop(onMock);

15001590

clearInternalHooks();

15011591

}

15021592

});

@@ -1540,12 +1630,13 @@ describe("gateway startup reconciliation", () => {

15401630

// (e.g. the cron service genuinely failed to initialize). The warning must fire.

15411631

const beforeAgentReply = getBeforeAgentReplyHandler(onMock);

15421632

await beforeAgentReply(

1543-

{ cleanedBody: constants.DREAMING_SYSTEM_EVENT_TEXT },

1633+

{ cleanedBody: "" },

15441634

{ trigger: "cron", workspaceDir: ".", sessionKey: "agent:main:cron:job-managed" },

15451635

);

1546163615471637

expectLogContains(logger.warn, "cron service unavailable");

15481638

} finally {

1639+

await triggerGatewayStop(onMock);

15491640

clearInternalHooks();

15501641

}

15511642

});

@@ -1864,90 +1955,14 @@ describe("gateway startup reconciliation", () => {

18641955

});

1865195618661957

it("uses live runtime config for the heartbeat dreaming run payload", async () => {

1867-

clearInternalHooks();

1868-

const logger = createLogger();

1869-

const harness = createCronHarness();

1870-

const onMock = vi.fn();

1871-

const workspaceDir = await createTempWorkspace("memory-dreaming-live-config-workspace-");

1872-

const runtimeCurrentConfig = vi.fn(

1873-

() =>

1874-

({

1875-

agents: {

1876-

list: [{ id: "main", default: true, workspace: workspaceDir }],

1877-

},

1878-

plugins: {

1879-

entries: {

1880-

"memory-core": {

1881-

config: {

1882-

dreaming: {

1883-

enabled: true,

1884-

frequency: "15 4 * * *",

1885-

timezone: "UTC",

1886-

limit: 0,

1887-

},

1888-

},

1889-

},

1890-

},

1891-

},

1892-

}) as OpenClawConfig,

1893-

);

1894-

const api: DreamingPluginApiTestDouble = {

1895-

config: {

1896-

plugins: {

1897-

entries: {

1898-

"memory-core": {

1899-

config: {

1900-

dreaming: {

1901-

enabled: true,

1902-

frequency: "15 4 * * *",

1903-

timezone: "UTC",

1904-

limit: 5,

1905-

},

1906-

},

1907-

},

1908-

},

1909-

},

1910-

} as OpenClawConfig,

1911-

pluginConfig: {},

1912-

logger,

1913-

runtime: {

1914-

config: {

1915-

current: runtimeCurrentConfig,

1916-

},

1917-

},

1918-

on: onMock,

1919-

};

1920-1921-

try {

1922-

registerShortTermPromotionDreamingForTest(api);

1923-

await triggerGatewayStart(onMock, {

1924-

config: api.config,

1925-

getCron: () => harness.cron,

1926-

});

1927-1928-

const sessionKey = "agent:main:main";

1929-

enqueueSystemEvent(constants.DREAMING_SYSTEM_EVENT_TEXT, {

1930-

sessionKey,

1931-

contextKey: "cron:memory-dreaming",

1932-

});

1933-1934-

const beforeAgentReply = getBeforeAgentReplyHandler(onMock);

1935-

const result = await beforeAgentReply(

1936-

{ cleanedBody: constants.DREAMING_SYSTEM_EVENT_TEXT },

1937-

{ trigger: "heartbeat", sessionKey },

1938-

);

1939-1940-

expect(result).toEqual({

1941-

handled: true,

1942-

reason: "memory-core: short-term dreaming processed",

1943-

});

1944-

expect(runtimeCurrentConfig).toHaveBeenCalled();

1945-

expect(logger.warn).not.toHaveBeenCalledWith(

1946-

"memory-core: dreaming promotion skipped because no memory workspace is available.",

1947-

);

1948-

} finally {

1949-

clearInternalHooks();

1950-

}

1958+

expect(liveConfigRunPayloadCase.result).toEqual({

1959+

handled: true,

1960+

reason: "memory-core: short-term dreaming processed",

1961+

});

1962+

expect(liveConfigRunPayloadCase.runtimeConfigCalled).toBe(true);

1963+

expect(liveConfigRunPayloadCase.warnCalls).not.toContainEqual([

1964+

"memory-core: dreaming promotion skipped because no memory workspace is available.",

1965+

]);

19511966

});

1952196719531968

it("does not fall back to startup plugin config when live memory-core config is removed", async () => {