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

推荐订阅源

B
Blog
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
F
Fortinet All Blogs
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Jina AI
Jina AI
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
美团技术团队
博客园 - 司徒正美
宝玉的分享
宝玉的分享
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research

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(plugins): preserve native loader errors · openclaw/op...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main

@@ -0,0 +1,89 @@

1+

import fs from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

4+

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

5+

import {

6+

isJavaScriptModulePath,

7+

tryNativeRequireJavaScriptModule,

8+

} from "./native-module-require.js";

9+10+

const tempDirs: string[] = [];

11+12+

function makeTempDir(): string {

13+

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-native-require-"));

14+

tempDirs.push(dir);

15+

return dir;

16+

}

17+18+

afterEach(() => {

19+

for (const dir of tempDirs.splice(0)) {

20+

fs.rmSync(dir, { recursive: true, force: true });

21+

}

22+

});

23+24+

describe("tryNativeRequireJavaScriptModule", () => {

25+

it("loads native CommonJS modules", () => {

26+

const dir = makeTempDir();

27+

const modulePath = path.join(dir, "plugin.cjs");

28+

fs.writeFileSync(modulePath, 'module.exports = { marker: "native" };\n', "utf8");

29+30+

const result = tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true });

31+32+

expect(result).toEqual({ ok: true, moduleExport: { marker: "native" } });

33+

});

34+35+

it("declines modules that need source-transform fallback", () => {

36+

const dir = makeTempDir();

37+

const modulePath = path.join(dir, "plugin.mjs");

38+

fs.writeFileSync(

39+

modulePath,

40+

'await Promise.resolve();\nexport const marker = "esm";\n',

41+

"utf8",

42+

);

43+44+

expect(tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true })).toEqual({

45+

ok: false,

46+

});

47+

});

48+49+

it("declines missing target modules so callers can try source fallback", () => {

50+

const modulePath = path.join(makeTempDir(), "missing.cjs");

51+52+

expect(tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true })).toEqual({

53+

ok: false,

54+

});

55+

});

56+57+

it("propagates missing dependency errors from existing modules", () => {

58+

const dir = makeTempDir();

59+

const modulePath = path.join(dir, "plugin.cjs");

60+

fs.writeFileSync(modulePath, 'require("./missing-dependency.cjs");\n', "utf8");

61+62+

expect(() => tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true })).toThrow(

63+

"missing-dependency.cjs",

64+

);

65+

});

66+67+

it("propagates real module evaluation errors instead of falling back", () => {

68+

const dir = makeTempDir();

69+

const modulePath = path.join(dir, "plugin.cjs");

70+

fs.writeFileSync(

71+

modulePath,

72+

'throw new Error("plugin exploded during native load");\n',

73+

"utf8",

74+

);

75+76+

expect(() => tryNativeRequireJavaScriptModule(modulePath, { allowWindows: true })).toThrow(

77+

"plugin exploded during native load",

78+

);

79+

});

80+

});

81+82+

describe("isJavaScriptModulePath", () => {

83+

it("only accepts JavaScript runtime extensions", () => {

84+

expect(isJavaScriptModulePath("/plugin/index.js")).toBe(true);

85+

expect(isJavaScriptModulePath("/plugin/index.mjs")).toBe(true);

86+

expect(isJavaScriptModulePath("/plugin/index.cjs")).toBe(true);

87+

expect(isJavaScriptModulePath("/plugin/index.ts")).toBe(false);

88+

});

89+

});