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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
F
Fortinet All Blogs
H
Help Net Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
MyScale Blog
MyScale Blog
B
Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园_首页
L
LangChain Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

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(cli): load memory plugin for doctor/status when regis...
neeravmakwan · 2026-05-03 · via Recent Commits to openclaw:main

@@ -4,6 +4,11 @@ const resolveRuntimePluginRegistryMock =

44

vi.fn<typeof import("./loader.js").resolveRuntimePluginRegistry>();

55

const getLoadedRuntimePluginRegistryMock =

66

vi.fn<typeof import("./active-runtime-registry.js").getLoadedRuntimePluginRegistry>();

7+

const ensureStandaloneRuntimePluginRegistryLoadedMock = vi.hoisted(() =>

8+

vi.fn<

9+

typeof import("./runtime/standalone-runtime-registry-loader.js").ensureStandaloneRuntimePluginRegistryLoaded

10+

>(),

11+

);

712

const applyPluginAutoEnableMock =

813

vi.fn<typeof import("../config/plugin-auto-enable.js").applyPluginAutoEnable>();

914

const getMemoryRuntimeMock = vi.fn<typeof import("./memory-state.js").getMemoryRuntime>();

@@ -30,6 +35,10 @@ vi.mock("./active-runtime-registry.js", () => ({

3035

getLoadedRuntimePluginRegistry: getLoadedRuntimePluginRegistryMock,

3136

}));

323738+

vi.mock("./runtime/standalone-runtime-registry-loader.js", () => ({

39+

ensureStandaloneRuntimePluginRegistryLoaded: ensureStandaloneRuntimePluginRegistryLoadedMock,

40+

}));

41+3342

vi.mock("./memory-state.js", () => ({

3443

getMemoryRuntime: () => getMemoryRuntimeMock(),

3544

}));

@@ -61,12 +70,25 @@ function createMemoryRuntimeFixture() {

6170

};

6271

}

637264-

function expectMemoryRuntimeLoaded(rawConfig: unknown, autoEnabledConfig: unknown) {

73+

function expectMemoryRuntimeLoaded(

74+

rawConfig: unknown,

75+

autoEnabledConfig: unknown,

76+

pluginIds: readonly string[] = ["memory-core"],

77+

) {

6578

void rawConfig;

6679

void autoEnabledConfig;

6780

expect(getLoadedRuntimePluginRegistryMock).toHaveBeenCalledWith(

6881

expect.objectContaining({

69-

requiredPluginIds: ["memory-core"],

82+

requiredPluginIds: pluginIds,

83+

}),

84+

);

85+

expect(ensureStandaloneRuntimePluginRegistryLoadedMock).toHaveBeenCalledWith(

86+

expect.objectContaining({

87+

requiredPluginIds: pluginIds,

88+

loadOptions: expect.objectContaining({

89+

onlyPluginIds: pluginIds,

90+

workspaceDir: "/resolved-workspace",

91+

}),

7092

}),

7193

);

7294

}

@@ -84,14 +106,18 @@ function setAutoEnabledMemoryRuntime() {

84106

changes: [],

85107

autoEnabledReasons: {},

86108

});

87-

getMemoryRuntimeMock.mockReturnValueOnce(undefined).mockReturnValue(runtime);

109+

getMemoryRuntimeMock

110+

.mockReturnValueOnce(undefined)

111+

.mockReturnValueOnce(undefined)

112+

.mockReturnValue(runtime);

88113

return { rawConfig, autoEnabledConfig, runtime };

89114

}

9011591116

function expectNoMemoryRuntimeBootstrap() {

92117

expect(applyPluginAutoEnableMock).not.toHaveBeenCalled();

93118

expect(resolveRuntimePluginRegistryMock).not.toHaveBeenCalled();

94119

expect(getLoadedRuntimePluginRegistryMock).not.toHaveBeenCalled();

120+

expect(ensureStandaloneRuntimePluginRegistryLoadedMock).not.toHaveBeenCalled();

95121

}

9612297123

async function expectAutoEnabledMemoryRuntimeCase(params: {

@@ -130,6 +156,7 @@ describe("memory runtime auto-enable loading", () => {

130156

} = await import("./memory-runtime.js"));

131157

resolveRuntimePluginRegistryMock.mockReset();

132158

getLoadedRuntimePluginRegistryMock.mockReset();

159+

ensureStandaloneRuntimePluginRegistryLoadedMock.mockReset();

133160

applyPluginAutoEnableMock.mockReset();

134161

getMemoryRuntimeMock.mockReset();

135162

resolveAgentWorkspaceDirMock.mockReset();

@@ -179,18 +206,17 @@ describe("memory runtime auto-enable loading", () => {

179206

changes: [],

180207

autoEnabledReasons: {},

181208

});

182-

getMemoryRuntimeMock.mockReturnValueOnce(undefined).mockReturnValue(runtime);

209+

getMemoryRuntimeMock

210+

.mockReturnValueOnce(undefined)

211+

.mockReturnValueOnce(undefined)

212+

.mockReturnValue(runtime);

183213184214

await getActiveMemorySearchManager({

185215

cfg: rawConfig as never,

186216

agentId: "main",

187217

});

188218189-

expect(getLoadedRuntimePluginRegistryMock).toHaveBeenCalledWith(

190-

expect.objectContaining({

191-

requiredPluginIds: ["memory-lancedb"],

192-

}),

193-

);

219+

expectMemoryRuntimeLoaded(rawConfig, rawConfig, ["memory-lancedb"]);

194220

});

195221196222

it("does not fall back to broad plugin loading when the memory slot is disabled", async () => {

@@ -218,6 +244,80 @@ describe("memory runtime auto-enable loading", () => {

218244

expect(applyPluginAutoEnableMock).not.toHaveBeenCalled();

219245

expect(resolveRuntimePluginRegistryMock).not.toHaveBeenCalled();

220246

expect(getLoadedRuntimePluginRegistryMock).not.toHaveBeenCalled();

247+

expect(ensureStandaloneRuntimePluginRegistryLoadedMock).not.toHaveBeenCalled();

248+

});

249+250+

it("does not standalone-load the memory plugin when plugins are globally disabled", async () => {

251+

const rawConfig = {

252+

plugins: {

253+

enabled: false,

254+

},

255+

};

256+

getMemoryRuntimeMock.mockReturnValue(undefined);

257+258+

await expect(

259+

getActiveMemorySearchManager({

260+

cfg: rawConfig as never,

261+

agentId: "main",

262+

}),

263+

).resolves.toEqual({ manager: null, error: "memory plugin unavailable" });

264+265+

expectNoMemoryRuntimeBootstrap();

266+

});

267+268+

it.each([

269+

{

270+

name: "denied",

271+

plugins: {

272+

deny: ["memory-core"],

273+

slots: {

274+

memory: "memory-core",

275+

},

276+

},

277+

},

278+

{

279+

name: "entry-disabled",

280+

plugins: {

281+

entries: {

282+

"memory-core": { enabled: false },

283+

},

284+

slots: {

285+

memory: "memory-core",

286+

},

287+

},

288+

},

289+

] as const)("does not standalone-load a $name memory slot plugin", async ({ plugins }) => {

290+

getMemoryRuntimeMock.mockReturnValue(undefined);

291+292+

await expect(

293+

getActiveMemorySearchManager({

294+

cfg: { plugins } as never,

295+

agentId: "main",

296+

}),

297+

).resolves.toEqual({ manager: null, error: "memory plugin unavailable" });

298+299+

expectNoMemoryRuntimeBootstrap();

300+

});

301+302+

it("does not standalone-load plugins when the memory runtime is already registered", () => {

303+

const rawConfig = {

304+

plugins: {

305+

slots: {

306+

memory: "memory-core",

307+

},

308+

},

309+

};

310+

const runtime = createMemoryRuntimeFixture();

311+

getLoadedRuntimePluginRegistryMock.mockReturnValue({} as never);

312+

getMemoryRuntimeMock.mockReturnValueOnce(undefined).mockReturnValue(runtime);

313+314+

resolveActiveMemoryBackendConfig({

315+

cfg: rawConfig as never,

316+

agentId: "main",

317+

});

318+319+

expect(getLoadedRuntimePluginRegistryMock).toHaveBeenCalled();

320+

expect(ensureStandaloneRuntimePluginRegistryLoadedMock).not.toHaveBeenCalled();

221321

});

222322223323

it.each([