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

推荐订阅源

B
Blog RSS Feed
博客园 - 叶小钗
F
Fortinet All Blogs
GbyAI
GbyAI
Martin Fowler
Martin Fowler
博客园 - 聂微东
I
InfoQ
B
Blog
IT之家
IT之家
美团技术团队
L
LangChain Blog
小众软件
小众软件
C
Check Point Blog
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
Last Week in AI
Last Week in AI
A
About on SuperTechFans
博客园 - Franky
P
Proofpoint News Feed
罗磊的独立博客
月光博客
月光博客
V
Visual Studio Blog
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
test: cover staged bundled facade deps · openclaw/opencla...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

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

11

import fs from "node:fs";

22

import path from "node:path";

3+

import { fileURLToPath, pathToFileURL } from "node:url";

34

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

45

import {

56

clearBundledRuntimeDependencyNodePaths,

@@ -8,6 +9,7 @@ import {

89

import { shouldExpectNativeJitiForJavaScriptTestRuntime } from "../test-utils/jiti-runtime.js";

910

import {

1011

listImportedBundledPluginFacadeIds,

12+

loadBundledPluginPublicSurfaceModule,

1113

loadBundledPluginPublicSurfaceModuleSync,

1214

resetFacadeLoaderStateForTest,

1315

setFacadeLoaderJitiFactoryForTest,

@@ -24,6 +26,7 @@ const originalBundledPluginsDir = process.env.OPENCLAW_BUNDLED_PLUGINS_DIR;

2426

const originalDisableBundledPlugins = process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS;

2527

const originalPluginStageDir = process.env.OPENCLAW_PLUGIN_STAGE_DIR;

2628

const FACADE_LOADER_GLOBAL = "__openclawTestLoadBundledPluginPublicSurfaceModuleSync";

29+

const STAGED_RUNTIME_DEP_NAME = "openclaw-facade-loader-runtime-dep";

2730

type FacadeLoaderJitiFactory = NonNullable<Parameters<typeof setFacadeLoaderJitiFactoryForTest>[0]>;

28312932

function forceNodeRuntimeVersionsForTest(): () => void {

@@ -82,74 +85,84 @@ function createCircularPluginDir(prefix: string): string {

8285

return rootDir;

8386

}

848785-

function createPackagedBundledPluginDirWithStagedRuntimeDep(prefix: string): {

88+

function writeJsonFile(filePath: string, value: unknown): void {

89+

fs.mkdirSync(path.dirname(filePath), { recursive: true });

90+

fs.writeFileSync(filePath, `${JSON.stringify(value, null, 2)}\n`, "utf8");

91+

}

92+93+

function createPackagedBundledPluginDirWithStagedRuntimeDep(params: {

94+

marker: string;

95+

prefix: string;

96+

}): {

8697

bundledPluginsDir: string;

98+

env: NodeJS.ProcessEnv;

99+

installRoot: string;

100+

modulePath: string;

87101

packageRoot: string;

88102

pluginRoot: string;

89103

stageRoot: string;

90104

} {

91-

const packageRoot = createTempDirSync(prefix);

105+

const packageRoot = createTempDirSync(params.prefix);

92106

const pluginRoot = path.join(packageRoot, "dist", "extensions", "demo");

93107

const stageRoot = path.join(packageRoot, "stage");

108+

const env = {

109+

...process.env,

110+

OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(packageRoot, "dist", "extensions"),

111+

OPENCLAW_PLUGIN_STAGE_DIR: stageRoot,

112+

};

94113

fs.mkdirSync(pluginRoot, { recursive: true });

114+115+

writeJsonFile(path.join(packageRoot, "package.json"), {

116+

name: "openclaw",

117+

version: "0.0.0",

118+

type: "module",

119+

});

120+

writeJsonFile(path.join(pluginRoot, "package.json"), {

121+

name: "@openclaw/plugin-demo",

122+

version: "0.0.0",

123+

type: "module",

124+

dependencies: {

125+

[STAGED_RUNTIME_DEP_NAME]: "1.0.0",

126+

},

127+

});

128+

const modulePath = path.join(pluginRoot, "api.js");

95129

fs.writeFileSync(

96-

path.join(packageRoot, "package.json"),

97-

JSON.stringify({ name: "openclaw", version: "0.0.0", type: "module" }, null, 2),

98-

"utf8",

99-

);

100-

fs.writeFileSync(

101-

path.join(pluginRoot, "package.json"),

102-

JSON.stringify(

103-

{

104-

name: "@openclaw/plugin-demo",

105-

version: "0.0.0",

106-

type: "module",

107-

dependencies: {

108-

"facade-runtime-dep": "1.0.0",

109-

},

110-

},

111-

null,

112-

2,

113-

),

114-

"utf8",

115-

);

116-

fs.writeFileSync(

117-

path.join(pluginRoot, "api.js"),

130+

modulePath,

118131

[

119-

'import { marker as depMarker } from "facade-runtime-dep";',

132+

`import { marker as depMarker } from ${JSON.stringify(STAGED_RUNTIME_DEP_NAME)};`,

120133

"export const marker = `facade:${depMarker}`;",

134+

"export const moduleUrl = import.meta.url;",

121135

"",

122136

].join("\n"),

123137

"utf8",

124138

);

125139126140

const installRoot = resolveBundledRuntimeDependencyInstallRoot(pluginRoot, {

127-

env: {

128-

...process.env,

129-

OPENCLAW_PLUGIN_STAGE_DIR: stageRoot,

130-

},

141+

env,

142+

});

143+

const depRoot = path.join(installRoot, "node_modules", STAGED_RUNTIME_DEP_NAME);

144+

writeJsonFile(path.join(depRoot, "package.json"), {

145+

name: STAGED_RUNTIME_DEP_NAME,

146+

version: "1.0.0",

147+

type: "module",

148+

exports: "./index.js",

131149

});

132-

const depRoot = path.join(installRoot, "node_modules", "facade-runtime-dep");

133-

fs.mkdirSync(depRoot, { recursive: true });

134150

fs.writeFileSync(

135-

path.join(depRoot, "package.json"),

136-

JSON.stringify(

137-

{ name: "facade-runtime-dep", version: "1.0.0", type: "module", exports: "./index.js" },

138-

null,

139-

2,

140-

),

151+

path.join(depRoot, "index.js"),

152+

`export const marker = ${JSON.stringify(params.marker)};\n`,

141153

"utf8",

142154

);

143-

fs.writeFileSync(path.join(depRoot, "index.js"), 'export const marker = "staged";\n', "utf8");

144155145156

return {

146157

bundledPluginsDir: path.join(packageRoot, "dist", "extensions"),

158+

env,

159+

installRoot,

160+

modulePath,

147161

packageRoot,

148162

pluginRoot,

149163

stageRoot,

150164

};

151165

}

152-153166

afterEach(() => {

154167

vi.restoreAllMocks();

155168

resetFacadeLoaderStateForTest();

@@ -278,20 +291,52 @@ describe("plugin-sdk facade loader", () => {

278291

}

279292

});

280293281-

it("loads built bundled public surfaces through staged runtime deps", () => {

282-

const fixture = createPackagedBundledPluginDirWithStagedRuntimeDep(

283-

"openclaw-facade-loader-runtime-deps-",

284-

);

294+

it("loads built bundled sync public surfaces through staged runtime deps", async () => {

295+

const fixture = createPackagedBundledPluginDirWithStagedRuntimeDep({

296+

marker: "staged",

297+

prefix: "openclaw-facade-loader-runtime-deps-",

298+

});

285299

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = fixture.bundledPluginsDir;

286300

process.env.OPENCLAW_PLUGIN_STAGE_DIR = fixture.stageRoot;

287301288-

const loaded = loadBundledPluginPublicSurfaceModuleSync<{ marker: string }>({

302+

await expect(import(pathToFileURL(fixture.modulePath).href)).rejects.toMatchObject({

303+

code: "ERR_MODULE_NOT_FOUND",

304+

});

305+306+

const loaded = loadBundledPluginPublicSurfaceModuleSync<{

307+

marker: string;

308+

moduleUrl: string;

309+

}>({

289310

dirName: "demo",

290311

artifactBasename: "api.js",

291312

});

292313293314

expect(loaded.marker).toBe("facade:staged");

294315

expect(fs.existsSync(path.join(fixture.pluginRoot, "node_modules"))).toBe(false);

316+

expect(fs.realpathSync(fileURLToPath(loaded.moduleUrl))).toBe(

317+

fs.realpathSync(path.join(fixture.installRoot, "dist", "extensions", "demo", "api.js")),

318+

);

319+

});

320+321+

it("loads built bundled async public surfaces through staged runtime deps", async () => {

322+

const fixture = createPackagedBundledPluginDirWithStagedRuntimeDep({

323+

marker: "async-staged",

324+

prefix: "openclaw-facade-loader-built-async-",

325+

});

326+327+

const loaded = await loadBundledPluginPublicSurfaceModule<{

328+

marker: string;

329+

moduleUrl: string;

330+

}>({

331+

dirName: "demo",

332+

artifactBasename: "api.js",

333+

env: fixture.env,

334+

});

335+336+

expect(loaded.marker).toBe("facade:async-staged");

337+

expect(fs.realpathSync(fileURLToPath(loaded.moduleUrl))).toBe(

338+

fs.realpathSync(path.join(fixture.installRoot, "dist", "extensions", "demo", "api.js")),

339+

);

295340

});

296341297342

it("breaks circular facade re-entry during module evaluation", () => {