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

推荐订阅源

J
Java Code Geeks
The GitHub Blog
The GitHub Blog
美团技术团队
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
F
Fortinet All Blogs
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
A
About on SuperTechFans
有赞技术团队
有赞技术团队
腾讯CDC
Martin Fowler
Martin Fowler
小众软件
小众软件
IT之家
IT之家
GbyAI
GbyAI
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: lazy-load global cleanup helpers · openclaw/opencla...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import { afterAll, afterEach, beforeAll } from "vitest";

1+

import { afterAll, afterEach, beforeAll, vi } from "vitest";

22

import type {

33

ChannelId,

44

ChannelOutboundAdapter,

@@ -12,12 +12,17 @@ import { installSharedTestSetup } from "./setup.shared.js";

1212

installSharedTestSetup();

13131414

const WORKER_RUNTIME_STATE = Symbol.for("openclaw.testSetupRuntimeState");

15-

const WORKER_RUNTIME_HELPERS = Symbol.for("openclaw.testSetupRuntimeHelpers");

15+

const WORKER_PLUGIN_RUNTIME_HELPERS = Symbol.for("openclaw.testSetupPluginRuntimeHelpers");

16+

const WORKER_CLEANUP_HELPERS = Symbol.for("openclaw.testSetupCleanupHelpers");

1617

type WorkerRuntimeState = {

1718

defaultPluginRegistry: PluginRegistry | null;

1819

materializedDefaultPluginRegistry: PluginRegistry | null;

1920

};

20-

type WorkerRuntimeHelpers = {

21+

type WorkerPluginRuntimeHelpers = {

22+

resetPluginRuntimeStateForTest: typeof import("../src/plugins/runtime.js").resetPluginRuntimeStateForTest;

23+

setActivePluginRegistry: typeof import("../src/plugins/runtime.js").setActivePluginRegistry;

24+

};

25+

type WorkerCleanupHelpers = {

2126

clearPluginDiscoveryCache: typeof import("../src/plugins/discovery.js").clearPluginDiscoveryCache;

2227

clearPluginManifestRegistryCache: typeof import("../src/plugins/manifest-registry-state.js").clearPluginManifestRegistryCache;

2328

clearSessionStoreCaches: typeof import("../src/config/sessions/store-cache.js").clearSessionStoreCaches;

@@ -27,9 +32,7 @@ type WorkerRuntimeHelpers = {

2732

resetContextWindowCacheForTest: typeof import("../src/agents/context-runtime-state.js").resetContextWindowCacheForTest;

2833

resetFileLockStateForTest: typeof import("../src/infra/file-lock.js").resetFileLockStateForTest;

2934

resetModelsJsonReadyCacheForTest: typeof import("../src/agents/models-config-state.js").resetModelsJsonReadyCacheForTest;

30-

resetPluginRuntimeStateForTest: typeof import("../src/plugins/runtime.js").resetPluginRuntimeStateForTest;

3135

resetSessionWriteLockStateForTest: typeof import("../src/agents/session-write-lock.js").resetSessionWriteLockStateForTest;

32-

setActivePluginRegistry: typeof import("../src/plugins/runtime.js").setActivePluginRegistry;

3336

};

34373538

type ReplyToModeResolver = NonNullable<

@@ -49,20 +52,44 @@ const workerRuntimeState = (() => {

4952

return globalState[WORKER_RUNTIME_STATE];

5053

})();

515452-

function loadWorkerRuntimeHelpers(): Promise<WorkerRuntimeHelpers> {

55+

function loadWorkerPluginRuntimeHelpers(): Promise<WorkerPluginRuntimeHelpers> {

5356

const globalState = globalThis as typeof globalThis & {

54-

[WORKER_RUNTIME_HELPERS]?: Promise<WorkerRuntimeHelpers>;

57+

[WORKER_PLUGIN_RUNTIME_HELPERS]?: Promise<WorkerPluginRuntimeHelpers>;

5558

};

56-

globalState[WORKER_RUNTIME_HELPERS] ??= Promise.all([

57-

import("../src/agents/context-runtime-state.js"),

58-

import("../src/agents/models-config-state.js"),

59-

import("../src/agents/session-write-lock.js"),

60-

import("../src/config/sessions/store-cache.js"),

61-

import("../src/config/sessions/store-lock-state.js"),

62-

import("../src/infra/file-lock.js"),

63-

import("../src/plugins/discovery.js"),

64-

import("../src/plugins/manifest-registry-state.js"),

65-

import("../src/plugins/runtime.js"),

59+

globalState[WORKER_PLUGIN_RUNTIME_HELPERS] ??= import("../src/plugins/runtime.js").then(

60+

(pluginRuntime) => ({

61+

resetPluginRuntimeStateForTest: pluginRuntime.resetPluginRuntimeStateForTest,

62+

setActivePluginRegistry: pluginRuntime.setActivePluginRegistry,

63+

}),

64+

);

65+

return globalState[WORKER_PLUGIN_RUNTIME_HELPERS];

66+

}

67+68+

function loadWorkerCleanupHelpers(): Promise<WorkerCleanupHelpers> {

69+

const globalState = globalThis as typeof globalThis & {

70+

[WORKER_CLEANUP_HELPERS]?: Promise<WorkerCleanupHelpers>;

71+

};

72+

globalState[WORKER_CLEANUP_HELPERS] ??= Promise.all([

73+

vi.importActual<typeof import("../src/agents/context-runtime-state.js")>(

74+

"../src/agents/context-runtime-state.js",

75+

),

76+

vi.importActual<typeof import("../src/agents/models-config-state.js")>(

77+

"../src/agents/models-config-state.js",

78+

),

79+

vi.importActual<typeof import("../src/agents/session-write-lock.js")>(

80+

"../src/agents/session-write-lock.js",

81+

),

82+

vi.importActual<typeof import("../src/config/sessions/store-cache.js")>(

83+

"../src/config/sessions/store-cache.js",

84+

),

85+

vi.importActual<typeof import("../src/config/sessions/store-lock-state.js")>(

86+

"../src/config/sessions/store-lock-state.js",

87+

),

88+

vi.importActual<typeof import("../src/infra/file-lock.js")>("../src/infra/file-lock.js"),

89+

vi.importActual<typeof import("../src/plugins/discovery.js")>("../src/plugins/discovery.js"),

90+

vi.importActual<typeof import("../src/plugins/manifest-registry-state.js")>(

91+

"../src/plugins/manifest-registry-state.js",

92+

),

6693

]).then(

6794

([

6895

contextRuntimeState,

@@ -73,7 +100,6 @@ function loadWorkerRuntimeHelpers(): Promise<WorkerRuntimeHelpers> {

73100

fileLock,

74101

discovery,

75102

manifestRegistryState,

76-

pluginRuntime,

77103

]) => ({

78104

clearPluginDiscoveryCache: discovery.clearPluginDiscoveryCache,

79105

clearPluginManifestRegistryCache: manifestRegistryState.clearPluginManifestRegistryCache,

@@ -84,12 +110,10 @@ function loadWorkerRuntimeHelpers(): Promise<WorkerRuntimeHelpers> {

84110

resetContextWindowCacheForTest: contextRuntimeState.resetContextWindowCacheForTest,

85111

resetFileLockStateForTest: fileLock.resetFileLockStateForTest,

86112

resetModelsJsonReadyCacheForTest: modelsConfigState.resetModelsJsonReadyCacheForTest,

87-

resetPluginRuntimeStateForTest: pluginRuntime.resetPluginRuntimeStateForTest,

88113

resetSessionWriteLockStateForTest: sessionWriteLock.resetSessionWriteLockStateForTest,

89-

setActivePluginRegistry: pluginRuntime.setActivePluginRegistry,

90114

}),

91115

);

92-

return globalState[WORKER_RUNTIME_HELPERS];

116+

return globalState[WORKER_CLEANUP_HELPERS];

93117

}

9411895119

const pickSendFn = (id: ChannelId, deps?: OutboundSendDeps) => {

@@ -359,7 +383,7 @@ function resolveDefaultPluginRegistryProxy(): PluginRegistry {

359383360384

async function installDefaultPluginRegistry(): Promise<void> {

361385

const { resetPluginRuntimeStateForTest, setActivePluginRegistry } =

362-

await loadWorkerRuntimeHelpers();

386+

await loadWorkerPluginRuntimeHelpers();

363387

workerRuntimeState.materializedDefaultPluginRegistry = null;

364388

resetPluginRuntimeStateForTest();

365389

setActivePluginRegistry(resolveDefaultPluginRegistryProxy());

@@ -386,7 +410,7 @@ afterEach(async () => {

386410

resetFileLockStateForTest,

387411

resetModelsJsonReadyCacheForTest,

388412

resetSessionWriteLockStateForTest,

389-

} = await loadWorkerRuntimeHelpers();

413+

} = await loadWorkerCleanupHelpers();

390414

await drainSessionStoreLockQueuesForTest();

391415

clearSessionStoreCaches();

392416

await drainFileLockStateForTest();

@@ -407,7 +431,7 @@ afterAll(async () => {

407431

clearSessionStoreCaches,

408432

drainFileLockStateForTest,

409433

drainSessionWriteLockStateForTest,

410-

} = await loadWorkerRuntimeHelpers();

434+

} = await loadWorkerCleanupHelpers();

411435

clearSessionStoreCaches();

412436

await drainFileLockStateForTest();

413437

await drainSessionWriteLockStateForTest();