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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

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: tighten scoped vitest config assertions · openclaw/...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -85,6 +85,24 @@ function matchingExcludePatterns(patterns: string[], file: string): string[] {

8585

return patterns.filter((pattern) => path.matchesGlob(file, pattern));

8686

}

878788+

function findAlias(alias: unknown, find: string): { find: string; replacement?: string } {

89+

if (!Array.isArray(alias)) {

90+

throw new Error("expected Vitest alias array");

91+

}

92+

const match = alias.find((entry) => {

93+

return (

94+

typeof entry === "object" &&

95+

entry !== null &&

96+

"find" in entry &&

97+

(entry as { find?: unknown }).find === find

98+

);

99+

});

100+

if (!match || typeof match !== "object" || !("find" in match)) {

101+

throw new Error(`missing alias ${find}`);

102+

}

103+

return match as { find: string; replacement?: string };

104+

}

105+88106

function requireTestConfig<T extends { test?: unknown }>(config: T): NonNullable<T["test"]> {

89107

if (!config.test) {

90108

throw new Error("expected scoped vitest test config");

@@ -103,25 +121,17 @@ function expectThreadedNonIsolatedRunner(config: {

103121104122

describe("resolveVitestIsolation", () => {

105123

it("aliases private QA plugin SDK subpaths for source tests only", () => {

106-

expect(sharedVitestConfig.resolve.alias).toEqual(

107-

expect.arrayContaining(

108-

PRIVATE_PLUGIN_SDK_SUBPATHS.map((subpath) =>

109-

expect.objectContaining({

110-

find: `openclaw/plugin-sdk/${subpath}`,

111-

replacement: path.join(process.cwd(), "src", "plugin-sdk", `${subpath}.ts`),

112-

}),

113-

),

114-

),

115-

);

116-

expect(sharedVitestConfig.resolve.alias).not.toEqual(

117-

expect.arrayContaining(

118-

PRIVATE_PLUGIN_SDK_SUBPATHS.map((subpath) =>

119-

expect.objectContaining({

120-

find: `@openclaw/plugin-sdk/${subpath}`,

121-

}),

122-

),

123-

),

124-

);

124+

for (const subpath of PRIVATE_PLUGIN_SDK_SUBPATHS) {

125+

expect(findAlias(sharedVitestConfig.resolve.alias, `openclaw/plugin-sdk/${subpath}`)).toEqual(

126+

{

127+

find: `openclaw/plugin-sdk/${subpath}`,

128+

replacement: path.join(process.cwd(), "src", "plugin-sdk", `${subpath}.ts`),

129+

},

130+

);

131+

expect(() =>

132+

findAlias(sharedVitestConfig.resolve.alias, `@openclaw/plugin-sdk/${subpath}`),

133+

).toThrow(`missing alias @openclaw/plugin-sdk/${subpath}`);

134+

}

125135

});

126136127137

it("defaults shared scoped configs to the non-isolated runner", () => {

@@ -197,7 +207,8 @@ describe("createScopedVitestConfig", () => {

197207

const testConfig = requireTestConfig(config);

198208199209

expect(testConfig.include).toEqual(["**/*.test.ts"]);

200-

expect(testConfig.exclude).toEqual(expect.arrayContaining(["channel/**", "dist/**"]));

210+

expect(testConfig.exclude).toContain("channel/**");

211+

expect(testConfig.exclude).toContain("dist/**");

201212

});

202213203214

it("narrows scoped includes to matching CLI file filters", () => {

@@ -361,7 +372,7 @@ describe("scoped vitest configs", () => {

361372

it("splits auto-reply into narrower scoped buckets", () => {

362373

const coreTestConfig = requireTestConfig(defaultAutoReplyCoreConfig);

363374

expect(coreTestConfig.include).toEqual(["*.test.ts"]);

364-

expect(coreTestConfig.exclude).toEqual(expect.arrayContaining(["reply*.test.ts"]));

375+

expect(coreTestConfig.exclude).toContain("reply*.test.ts");

365376

expect(requireTestConfig(defaultAutoReplyTopLevelConfig).include).toEqual(["reply*.test.ts"]);

366377

expect(requireTestConfig(defaultAutoReplyReplyConfig).include).toEqual(["reply/**/*.test.ts"]);

367378

});

@@ -477,10 +488,38 @@ describe("scoped vitest configs", () => {

477488

it("normalizes extension provider include patterns relative to the scoped dir", () => {

478489

const providersTestConfig = requireTestConfig(defaultExtensionProvidersConfig);

479490

expect(providersTestConfig.dir).toBe(path.join(process.cwd(), "extensions"));

480-

expect(providersTestConfig.include).toEqual(

481-

expect.arrayContaining(["xai/**/*.test.ts", "google/**/*.test.ts"]),

482-

);

483-

expect(providersTestConfig.include).not.toContain("openai/**/*.test.ts");

491+

expect(providersTestConfig.include).toEqual([

492+

"amazon-bedrock/**/*.test.ts",

493+

"amazon-bedrock-mantle/**/*.test.ts",

494+

"anthropic/**/*.test.ts",

495+

"anthropic-vertex/**/*.test.ts",

496+

"byteplus/**/*.test.ts",

497+

"chutes/**/*.test.ts",

498+

"comfy/**/*.test.ts",

499+

"deepseek/**/*.test.ts",

500+

"github-copilot/**/*.test.ts",

501+

"google/**/*.test.ts",

502+

"groq/**/*.test.ts",

503+

"huggingface/**/*.test.ts",

504+

"kimi-coding/**/*.test.ts",

505+

"lmstudio/**/*.test.ts",

506+

"microsoft/**/*.test.ts",

507+

"microsoft-foundry/**/*.test.ts",

508+

"minimax/**/*.test.ts",

509+

"mistral/**/*.test.ts",

510+

"qwen/**/*.test.ts",

511+

"moonshot/**/*.test.ts",

512+

"nvidia/**/*.test.ts",

513+

"ollama/**/*.test.ts",

514+

"openrouter/**/*.test.ts",

515+

"qianfan/**/*.test.ts",

516+

"stepfun/**/*.test.ts",

517+

"together/**/*.test.ts",

518+

"venice/**/*.test.ts",

519+

"volcengine/**/*.test.ts",

520+

"xai/**/*.test.ts",

521+

"zai/**/*.test.ts",

522+

]);

484523

const openAiTestConfig = requireTestConfig(defaultExtensionProviderOpenAiConfig);

485524

expect(openAiTestConfig.dir).toBe(path.join(process.cwd(), "extensions"));

486525

expect(openAiTestConfig.include).toEqual(["openai/**/*.test.ts"]);

@@ -489,7 +528,15 @@ describe("scoped vitest configs", () => {

489528

it("normalizes extension messaging include patterns relative to the scoped dir", () => {

490529

const testConfig = requireTestConfig(defaultExtensionMessagingConfig);

491530

expect(testConfig.dir).toBe(path.join(process.cwd(), "extensions"));

492-

expect(testConfig.include).toEqual(expect.arrayContaining(["googlechat/**/*.test.ts"]));

531+

expect(testConfig.include).toEqual([

532+

"googlechat/**/*.test.ts",

533+

"nextcloud-talk/**/*.test.ts",

534+

"nostr/**/*.test.ts",

535+

"qqbot/**/*.test.ts",

536+

"synology-chat/**/*.test.ts",

537+

"tlon/**/*.test.ts",

538+

"twitch/**/*.test.ts",

539+

]);

493540

});

494541495542

it("normalizes matrix extension include patterns relative to the scoped dir", () => {

@@ -525,9 +572,7 @@ describe("scoped vitest configs", () => {

525572

it("normalizes zalo extension include patterns relative to the scoped dir", () => {

526573

const testConfig = requireTestConfig(defaultExtensionZaloConfig);

527574

expect(testConfig.dir).toBe(path.join(process.cwd(), "extensions"));

528-

expect(testConfig.include).toEqual(

529-

expect.arrayContaining(["zalo/**/*.test.ts", "zalouser/**/*.test.ts"]),

530-

);

575+

expect(testConfig.include).toEqual(["zalo/**/*.test.ts", "zalouser/**/*.test.ts"]);

531576

});

532577533578

it("normalizes voice-call extension include patterns relative to the scoped dir", () => {

@@ -539,9 +584,11 @@ describe("scoped vitest configs", () => {

539584

it("normalizes memory extension include patterns relative to the scoped dir", () => {

540585

const testConfig = requireTestConfig(defaultExtensionMemoryConfig);

541586

expect(testConfig.dir).toBe(path.join(process.cwd(), "extensions"));

542-

expect(testConfig.include).toEqual(

543-

expect.arrayContaining(["memory-core/**/*.test.ts", "memory-lancedb/**/*.test.ts"]),

544-

);

587+

expect(testConfig.include).toEqual([

588+

"memory-core/**/*.test.ts",

589+

"memory-lancedb/**/*.test.ts",

590+

"memory-wiki/**/*.test.ts",

591+

]);

545592

});

546593547594

it("keeps telegram plugin tests out of the shared extensions lane", () => {

@@ -781,9 +828,7 @@ describe("scoped vitest configs", () => {

781828782829

it("keeps tooling tests in their own lane", () => {

783830

const testConfig = requireTestConfig(defaultToolingConfig);

784-

expect(testConfig.include).toEqual(

785-

expect.arrayContaining(["test/**/*.test.ts", "src/scripts/**/*.test.ts"]),

786-

);

831+

expect(testConfig.include).toEqual(["test/**/*.test.ts", "src/scripts/**/*.test.ts"]);

787832

expect(testConfig.include).not.toContain("src/config/doc-baseline.integration.test.ts");

788833

});

789834