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

推荐订阅源

Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
罗磊的独立博客
雷峰网
雷峰网
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
B
Blog RSS Feed
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
D
Docker
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
小众软件
小众软件
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
I
InfoQ
S
SegmentFault 最新的问题

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
refactor(plugins): split loader runtime helpers (#74545) ...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -0,0 +1,107 @@

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+

clearBundledRuntimeDependencyJitiAliases,

7+

registerBundledRuntimeDependencyJitiAliases,

8+

resolveBundledRuntimeDependencyJitiAliasMap,

9+

} from "./bundled-runtime-deps-jiti-aliases.js";

10+11+

const tempDirs: string[] = [];

12+13+

function makeTempRoot(): string {

14+

const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-runtime-aliases-"));

15+

tempDirs.push(tempDir);

16+

return tempDir;

17+

}

18+19+

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

20+

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

21+

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

22+

}

23+24+

function writeFile(filePath: string): void {

25+

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

26+

fs.writeFileSync(filePath, "export default null;\n", "utf8");

27+

}

28+29+

function packageRoot(rootDir: string, packageName: string): string {

30+

return path.join(rootDir, "node_modules", ...packageName.split("/"));

31+

}

32+33+

afterEach(() => {

34+

clearBundledRuntimeDependencyJitiAliases();

35+

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

36+

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

37+

}

38+

});

39+40+

describe("bundled runtime dependency Jiti aliases", () => {

41+

it("registers root, subpath, wildcard, and scoped package aliases", () => {

42+

const rootDir = makeTempRoot();

43+

writeJson(path.join(rootDir, "package.json"), {

44+

dependencies: {

45+

plain: "1.0.0",

46+

wild: "1.0.0",

47+

"@scope/pkg": "1.0.0",

48+

},

49+

});

50+51+

const plainRoot = packageRoot(rootDir, "plain");

52+

writeJson(path.join(plainRoot, "package.json"), {

53+

exports: {

54+

".": { import: "./esm/index.js", default: "./cjs/index.js" },

55+

"./feature": "./features/feature.js",

56+

},

57+

});

58+

writeFile(path.join(plainRoot, "esm/index.js"));

59+

writeFile(path.join(plainRoot, "features/feature.js"));

60+61+

const wildRoot = packageRoot(rootDir, "wild");

62+

writeJson(path.join(wildRoot, "package.json"), {

63+

exports: {

64+

"./sub/*": "./dist/*.js",

65+

},

66+

});

67+

writeFile(path.join(wildRoot, "dist/a.js"));

68+

writeFile(path.join(wildRoot, "dist/nested/b.js"));

69+70+

const scopedRoot = packageRoot(rootDir, "@scope/pkg");

71+

writeJson(path.join(scopedRoot, "package.json"), {

72+

module: "./index.mjs",

73+

});

74+

writeFile(path.join(scopedRoot, "index.mjs"));

75+76+

registerBundledRuntimeDependencyJitiAliases(rootDir);

77+78+

expect(resolveBundledRuntimeDependencyJitiAliasMap()).toEqual({

79+

"wild/sub/nested/b": path.join(wildRoot, "dist/nested/b.js"),

80+

"plain/feature": path.join(plainRoot, "features/feature.js"),

81+

"@scope/pkg": path.join(scopedRoot, "index.mjs"),

82+

"wild/sub/a": path.join(wildRoot, "dist/a.js"),

83+

plain: path.join(plainRoot, "esm/index.js"),

84+

});

85+

});

86+87+

it("ignores missing, private, and escaping export targets", () => {

88+

const rootDir = makeTempRoot();

89+

writeJson(path.join(rootDir, "package.json"), {

90+

dependencies: {

91+

unsafe: "1.0.0",

92+

},

93+

});

94+

const unsafeRoot = packageRoot(rootDir, "unsafe");

95+

writeJson(path.join(unsafeRoot, "package.json"), {

96+

exports: {

97+

".": "../outside.js",

98+

"./private": "#internal",

99+

"./missing": "./missing.js",

100+

},

101+

});

102+103+

registerBundledRuntimeDependencyJitiAliases(rootDir);

104+105+

expect(resolveBundledRuntimeDependencyJitiAliasMap()).toBeUndefined();

106+

});

107+

});