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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
博客园 - 司徒正美
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
D
Docker
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
I
InfoQ
雷峰网
雷峰网
The Cloudflare Blog
美团技术团队
Engineering at Meta
Engineering at Meta

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: scope dreaming env batch one · openclaw/openclaw@53...
shakkernerd · 2026-06-26 · via Recent Commits to openclaw:main

@@ -30,6 +30,8 @@ import { createMemoryCoreTestHarness } from "./test-helpers.js";

3030

const { createTempWorkspace } = createMemoryCoreTestHarness();

3131

const DREAMING_TEST_BASE_TIME = new Date("2026-04-05T10:00:00.000Z");

3232

const DREAMING_TEST_DAY = "2026-04-05";

33+

const originalDreamingTestFast = process.env.OPENCLAW_TEST_FAST;

34+

const originalDreamingStateDir = process.env.OPENCLAW_STATE_DIR;

3335

const EMPTY_SESSION_CONTENT_HASH =

3436

"75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070";

3537

const LIGHT_DREAMING_TEST_CONFIG: OpenClawConfig = {

@@ -59,6 +61,24 @@ const LIGHT_DREAMING_TEST_CONFIG: OpenClawConfig = {

5961

},

6062

};

616364+

function setDreamingTestEnv(stateDir: string): void {

65+

Reflect.set(process.env, "OPENCLAW_TEST_FAST", "1");

66+

Reflect.set(process.env, "OPENCLAW_STATE_DIR", stateDir);

67+

}

68+69+

function restoreDreamingTestEnv(): void {

70+

if (originalDreamingTestFast === undefined) {

71+

Reflect.deleteProperty(process.env, "OPENCLAW_TEST_FAST");

72+

} else {

73+

Reflect.set(process.env, "OPENCLAW_TEST_FAST", originalDreamingTestFast);

74+

}

75+

if (originalDreamingStateDir === undefined) {

76+

Reflect.deleteProperty(process.env, "OPENCLAW_STATE_DIR");

77+

} else {

78+

Reflect.set(process.env, "OPENCLAW_STATE_DIR", originalDreamingStateDir);

79+

}

80+

}

81+6282

function requireCandidateByKey<T extends { key: string }>(candidates: T[], key: string): T {

6383

const candidate = candidates.find((entry) => entry.key === key);

6484

if (!candidate) {

@@ -947,8 +967,7 @@ describe("memory-core dreaming phases", () => {

947967948968

it("checkpoints session transcript ingestion and skips unchanged transcripts", async () => {

949969

const workspaceDir = await createDreamingWorkspace();

950-

vi.stubEnv("OPENCLAW_TEST_FAST", "1");

951-

vi.stubEnv("OPENCLAW_STATE_DIR", path.join(workspaceDir, ".state"));

970+

setDreamingTestEnv(path.join(workspaceDir, ".state"));

952971

const sessionsDir = resolveSessionTranscriptsDirForAgent("main");

953972

await fs.mkdir(sessionsDir, { recursive: true });

954973

const transcriptPath = path.join(sessionsDir, "dreaming-main.jsonl");

@@ -1022,7 +1041,7 @@ describe("memory-core dreaming phases", () => {

10221041

([target]) => typeof target === "string" && target === transcriptPath,

10231042

).length;

10241043

readSpy.mockRestore();

1025-

vi.unstubAllEnvs();

1044+

restoreDreamingTestEnv();

10261045

}

1027104610281047

expect(transcriptReadCount).toBeLessThanOrEqual(1);

@@ -1051,8 +1070,7 @@ describe("memory-core dreaming phases", () => {

10511070

it("keeps primary session transcripts out of configured subagent workspaces", async () => {

10521071

const workspaceDir = await createDreamingWorkspace();

10531072

const subagentWorkspaceDir = await createDreamingWorkspace();

1054-

vi.stubEnv("OPENCLAW_TEST_FAST", "1");

1055-

vi.stubEnv("OPENCLAW_STATE_DIR", path.join(workspaceDir, ".state"));

1073+

setDreamingTestEnv(path.join(workspaceDir, ".state"));

1056107410571075

const mainSessionsDir = resolveSessionTranscriptsDirForAgent("main");

10581076

const subagentSessionsDir = resolveSessionTranscriptsDirForAgent("agi-ceo");

@@ -1122,7 +1140,7 @@ describe("memory-core dreaming phases", () => {

11221140

await triggerLightDreaming(beforeAgentReply, workspaceDir, 5);

11231141

});

11241142

} finally {

1125-

vi.unstubAllEnvs();

1143+

restoreDreamingTestEnv();

11261144

}

1127114511281146

const mainCorpus = await fs.readFile(

@@ -1141,8 +1159,7 @@ describe("memory-core dreaming phases", () => {

1141115911421160

it("redacts sensitive session content before writing session corpus", async () => {

11431161

const workspaceDir = await createDreamingWorkspace();

1144-

vi.stubEnv("OPENCLAW_TEST_FAST", "1");

1145-

vi.stubEnv("OPENCLAW_STATE_DIR", path.join(workspaceDir, ".state"));

1162+

setDreamingTestEnv(path.join(workspaceDir, ".state"));

11461163

const sessionsDir = resolveSessionTranscriptsDirForAgent("main");

11471164

await fs.mkdir(sessionsDir, { recursive: true });

11481165

const transcriptPath = path.join(sessionsDir, "dreaming-main.jsonl");

@@ -1198,7 +1215,7 @@ describe("memory-core dreaming phases", () => {

11981215

await triggerLightDreaming(beforeAgentReply, workspaceDir, 5);

11991216

});

12001217

} finally {

1201-

vi.unstubAllEnvs();

1218+

restoreDreamingTestEnv();

12021219

}

1203122012041221

const corpusPath = path.join(

@@ -1215,8 +1232,7 @@ describe("memory-core dreaming phases", () => {

1215123212161233

it("skips dreaming-generated narrative transcripts during session ingestion", async () => {

12171234

const workspaceDir = await createDreamingWorkspace();

1218-

vi.stubEnv("OPENCLAW_TEST_FAST", "1");

1219-

vi.stubEnv("OPENCLAW_STATE_DIR", path.join(workspaceDir, ".state"));

1235+

setDreamingTestEnv(path.join(workspaceDir, ".state"));

12201236

const sessionsDir = resolveSessionTranscriptsDirForAgent("main");

12211237

await fs.mkdir(sessionsDir, { recursive: true });

12221238

const transcriptPath = path.join(sessionsDir, "dreaming-narrative.jsonl");

@@ -1291,7 +1307,7 @@ describe("memory-core dreaming phases", () => {

12911307

{ trigger: "heartbeat", workspaceDir },

12921308

);

12931309

} finally {

1294-

vi.unstubAllEnvs();

1310+

restoreDreamingTestEnv();

12951311

}

1296131212971313

await expectPathMissing(

@@ -1308,8 +1324,7 @@ describe("memory-core dreaming phases", () => {

1308132413091325

it("skips dreaming transcripts when the session store identifies them before bootstrap lands", async () => {

13101326

const workspaceDir = await createDreamingWorkspace();

1311-

vi.stubEnv("OPENCLAW_TEST_FAST", "1");

1312-

vi.stubEnv("OPENCLAW_STATE_DIR", path.join(workspaceDir, ".state"));

1327+

setDreamingTestEnv(path.join(workspaceDir, ".state"));

13131328

const sessionsDir = resolveSessionTranscriptsDirForAgent("main");

13141329

await fs.mkdir(sessionsDir, { recursive: true });

13151330

const transcriptPath = path.join(sessionsDir, "dreaming-narrative.jsonl");

@@ -1387,7 +1402,7 @@ describe("memory-core dreaming phases", () => {

13871402

{ trigger: "heartbeat", workspaceDir },

13881403

);

13891404

} finally {

1390-

vi.unstubAllEnvs();

1405+

restoreDreamingTestEnv();

13911406

}

1392140713931408

await expectPathMissing(