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

推荐订阅源

爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
博客园_首页
博客园 - 【当耐特】
量子位
S
SegmentFault 最新的问题
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
Y
Y Combinator Blog
博客园 - 聂微东
The Cloudflare Blog
小众软件
小众软件
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
H
Help Net Security
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享

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
perf: slim sandbox registry tests · openclaw/openclaw@d38...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

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

11

import fs from "node:fs/promises";

22

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

334-

const { TEST_STATE_DIR, SANDBOX_REGISTRY_PATH, SANDBOX_BROWSER_REGISTRY_PATH } = vi.hoisted(() => {

5-

const path = require("node:path");

6-

const { mkdtempSync } = require("node:fs");

7-

const { tmpdir } = require("node:os");

8-

const baseDir = mkdtempSync(path.join(tmpdir(), "openclaw-sandbox-registry-"));

9-10-

return {

11-

TEST_STATE_DIR: baseDir,

12-

SANDBOX_REGISTRY_PATH: path.join(baseDir, "containers.json"),

13-

SANDBOX_BROWSER_REGISTRY_PATH: path.join(baseDir, "browsers.json"),

14-

};

15-

});

16-17-

vi.mock("./constants.js", () => ({

18-

SANDBOX_STATE_DIR: TEST_STATE_DIR,

19-

SANDBOX_REGISTRY_PATH,

20-

SANDBOX_BROWSER_REGISTRY_PATH,

21-

}));

22-23-

type SandboxBrowserRegistryEntry = import("./registry.js").SandboxBrowserRegistryEntry;

24-

type SandboxRegistryEntry = import("./registry.js").SandboxRegistryEntry;

25-264

type WriteDelayConfig = {

275

targetFile: "containers.json" | "browsers.json";

286

containerName: string;

@@ -31,58 +9,67 @@ type WriteDelayConfig = {

319

waitForRelease: Promise<void>;

3210

};

331134-

let activeWriteGate: WriteDelayConfig | null = null;

35-

let readBrowserRegistry: typeof import("./registry.js").readBrowserRegistry;

36-

let readRegistry: typeof import("./registry.js").readRegistry;

37-

let removeBrowserRegistryEntry: typeof import("./registry.js").removeBrowserRegistryEntry;

38-

let removeRegistryEntry: typeof import("./registry.js").removeRegistryEntry;

39-

let updateBrowserRegistry: typeof import("./registry.js").updateBrowserRegistry;

40-

let updateRegistry: typeof import("./registry.js").updateRegistry;

41-42-

async function loadFreshRegistryModuleForTest() {

43-

vi.resetModules();

44-

vi.doMock("./constants.js", () => ({

45-

SANDBOX_STATE_DIR: TEST_STATE_DIR,

46-

SANDBOX_REGISTRY_PATH,

47-

SANDBOX_BROWSER_REGISTRY_PATH,

48-

}));

49-

vi.doMock("../../infra/json-files.js", async () => {

50-

const actual = await vi.importActual<typeof import("../../infra/json-files.js")>(

51-

"../../infra/json-files.js",

52-

);

12+

const { TEST_STATE_DIR, SANDBOX_REGISTRY_PATH, SANDBOX_BROWSER_REGISTRY_PATH, writeGateState } =

13+

vi.hoisted(() => {

14+

const path = require("node:path");

15+

const { mkdtempSync } = require("node:fs");

16+

const { tmpdir } = require("node:os");

17+

const baseDir = mkdtempSync(path.join(tmpdir(), "openclaw-sandbox-registry-"));

18+5319

return {

54-

...actual,

55-

writeJsonAtomic: async (

56-

filePath: string,

57-

value: unknown,

58-

options?: Parameters<typeof actual.writeJsonAtomic>[2],

59-

) => {

60-

const payload = JSON.stringify(value);

61-

const gate = activeWriteGate;

62-

if (

63-

gate &&

64-

filePath.includes(gate.targetFile) &&

65-

payloadMentionsContainer(payload, gate.containerName)

66-

) {

67-

if (!gate.started) {

68-

gate.started = true;

69-

gate.markStarted();

70-

}

71-

await gate.waitForRelease;

72-

}

73-

await actual.writeJsonAtomic(filePath, value, options);

74-

},

20+

TEST_STATE_DIR: baseDir,

21+

SANDBOX_REGISTRY_PATH: path.join(baseDir, "containers.json"),

22+

SANDBOX_BROWSER_REGISTRY_PATH: path.join(baseDir, "browsers.json"),

23+

writeGateState: { active: null as WriteDelayConfig | null },

7524

};

7625

});

77-

({

78-

readBrowserRegistry,

79-

readRegistry,

80-

removeBrowserRegistryEntry,

81-

removeRegistryEntry,

82-

updateBrowserRegistry,

83-

updateRegistry,

84-

} = await import("./registry.js"));

85-

}

26+27+

vi.mock("./constants.js", () => ({

28+

SANDBOX_STATE_DIR: TEST_STATE_DIR,

29+

SANDBOX_REGISTRY_PATH,

30+

SANDBOX_BROWSER_REGISTRY_PATH,

31+

}));

32+33+

vi.mock("../../infra/json-files.js", async () => {

34+

const actual = await vi.importActual<typeof import("../../infra/json-files.js")>(

35+

"../../infra/json-files.js",

36+

);

37+

return {

38+

...actual,

39+

writeJsonAtomic: async (

40+

filePath: string,

41+

value: unknown,

42+

options?: Parameters<typeof actual.writeJsonAtomic>[2],

43+

) => {

44+

const payload = JSON.stringify(value);

45+

const gate = writeGateState.active;

46+

if (

47+

gate &&

48+

filePath.includes(gate.targetFile) &&

49+

payloadMentionsContainer(payload, gate.containerName)

50+

) {

51+

if (!gate.started) {

52+

gate.started = true;

53+

gate.markStarted();

54+

}

55+

await gate.waitForRelease;

56+

}

57+

await actual.writeJsonAtomic(filePath, value, options);

58+

},

59+

};

60+

});

61+62+

import {

63+

readBrowserRegistry,

64+

readRegistry,

65+

removeBrowserRegistryEntry,

66+

removeRegistryEntry,

67+

updateBrowserRegistry,

68+

updateRegistry,

69+

} from "./registry.js";

70+71+

type SandboxBrowserRegistryEntry = import("./registry.js").SandboxBrowserRegistryEntry;

72+

type SandboxRegistryEntry = import("./registry.js").SandboxRegistryEntry;

86738774

function payloadMentionsContainer(payload: string, containerName: string): boolean {

8875

return (

@@ -111,7 +98,7 @@ function installWriteGate(

11198

const waitForRelease = new Promise<void>((resolve) => {

11299

resolveRelease = resolve;

113100

});

114-

activeWriteGate = {

101+

writeGateState.active = {

115102

targetFile,

116103

containerName,

117104

started: false,

@@ -122,18 +109,16 @@ function installWriteGate(

122109

waitForStart,

123110

release: () => {

124111

resolveRelease();

125-

activeWriteGate = null;

112+

writeGateState.active = null;

126113

},

127114

};

128115

}

129116130-

beforeEach(async () => {

131-

activeWriteGate = null;

132-

await loadFreshRegistryModuleForTest();

117+

beforeEach(() => {

118+

writeGateState.active = null;

133119

});

134120135121

afterEach(async () => {

136-

vi.restoreAllMocks();

137122

await fs.rm(SANDBOX_REGISTRY_PATH, { force: true });

138123

await fs.rm(SANDBOX_BROWSER_REGISTRY_PATH, { force: true });

139124

await fs.rm(`${SANDBOX_REGISTRY_PATH}.lock`, { force: true });