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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

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
perf(plugins): trust install records cache between reload...
steipete · 2026-05-28 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

4-

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

4+

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

55

import type { PluginInstallRecord } from "../config/types.plugins.js";

66

import type { PluginCandidate } from "./discovery.js";

77

import {

@@ -58,7 +58,16 @@ function expectRecordFields(record: unknown, expected: Record<string, unknown>)

5858

return actual;

5959

}

606061+

function createDeferred<T>() {

62+

let resolve: (value: T) => void = () => {};

63+

const promise = new Promise<T>((done) => {

64+

resolve = done;

65+

});

66+

return { promise, resolve };

67+

}

68+6169

afterEach(() => {

70+

vi.doUnmock("../infra/json-files.js");

6271

clearLoadInstalledPluginIndexInstallRecordsCache();

6372

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

6473

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

@@ -235,7 +244,7 @@ describe("plugin index install records store", () => {

235244

});

236245

});

237246238-

it("reloads cached records after an external index write", () => {

247+

it("keeps cached records until cache clear after an external index write", () => {

239248

const stateDir = makeStateDir();

240249

const candidate = createPluginCandidate(stateDir, "external");

241250

writePersistedInstalledPluginIndexInstallRecordsSync(

@@ -270,6 +279,15 @@ describe("plugin index install records store", () => {

270279

"utf8",

271280

);

272281282+

expect(loadInstalledPluginIndexInstallRecordsSync({ stateDir })).toEqual({

283+

external: {

284+

source: "npm",

285+

spec: "external@1.0.0",

286+

},

287+

});

288+289+

clearLoadInstalledPluginIndexInstallRecordsCache();

290+273291

expect(loadInstalledPluginIndexInstallRecordsSync({ stateDir })).toEqual({

274292

external: {

275293

source: "npm",

@@ -427,7 +445,7 @@ describe("plugin index install records store", () => {

427445

});

428446

});

429447430-

it("reloads recovered managed npm records after package manifest changes", () => {

448+

it("keeps recovered managed npm records cached until cache clear after package changes", () => {

431449

const stateDir = makeStateDir();

432450

const codexDir = writeManagedNpmPlugin({

433451

stateDir,

@@ -460,6 +478,17 @@ describe("plugin index install records store", () => {

460478

"utf8",

461479

);

462480481+

expectRecordFields(loadInstalledPluginIndexInstallRecordsSync({ stateDir }).codex, {

482+

source: "npm",

483+

spec: "@openclaw/codex@2026.5.18-beta.1",

484+

installPath: codexDir,

485+

version: "2026.5.18-beta.1",

486+

resolvedVersion: "2026.5.18-beta.1",

487+

resolvedSpec: "@openclaw/codex@2026.5.18-beta.1",

488+

});

489+490+

clearLoadInstalledPluginIndexInstallRecordsCache();

491+463492

expectRecordFields(loadInstalledPluginIndexInstallRecordsSync({ stateDir }).codex, {

464493

source: "npm",

465494

spec: "@openclaw/codex@2026.5.18-beta.1",

@@ -470,6 +499,90 @@ describe("plugin index install records store", () => {

470499

});

471500

});

472501502+

it("does not probe install record files again on hot cache hits", () => {

503+

const stateDir = makeStateDir();

504+

const candidate = createPluginCandidate(stateDir, "hot-cache");

505+

writePersistedInstalledPluginIndexInstallRecordsSync(

506+

{

507+

"hot-cache": {

508+

source: "npm",

509+

spec: "hot-cache@1.0.0",

510+

},

511+

},

512+

{ stateDir, candidates: [candidate] },

513+

);

514+

expect(loadInstalledPluginIndexInstallRecordsSync({ stateDir })).toEqual({

515+

"hot-cache": {

516+

source: "npm",

517+

spec: "hot-cache@1.0.0",

518+

},

519+

});

520+

const statSpy = vi.spyOn(fs, "statSync");

521+

const readSpy = vi.spyOn(fs, "readFileSync");

522+523+

expect(loadInstalledPluginIndexInstallRecordsSync({ stateDir })).toEqual({

524+

"hot-cache": {

525+

source: "npm",

526+

spec: "hot-cache@1.0.0",

527+

},

528+

});

529+530+

expect(statSpy).not.toHaveBeenCalled();

531+

expect(readSpy).not.toHaveBeenCalled();

532+

});

533+534+

it("does not cache stale async records when cache clears during load", async () => {

535+

const stateDir = makeStateDir();

536+

const firstRead = createDeferred<unknown>();

537+

const firstReadStarted = createDeferred<void>();

538+

let reads = 0;

539+

vi.doMock("../infra/json-files.js", async (importOriginal) => {

540+

const actual = await importOriginal<typeof import("../infra/json-files.js")>();

541+

return {

542+

...actual,

543+

tryReadJson: vi.fn(async () => {

544+

reads += 1;

545+

if (reads === 1) {

546+

firstReadStarted.resolve();

547+

return await firstRead.promise;

548+

}

549+

return {

550+

installRecords: {

551+

demo: {

552+

source: "npm",

553+

spec: "demo@fresh",

554+

},

555+

},

556+

};

557+

}),

558+

tryReadJsonSync: vi.fn(() => null),

559+

};

560+

});

561+

const reader = (await import(

562+

"./installed-plugin-index-record-reader.js?cache-race" as string

563+

)) as typeof import("./installed-plugin-index-record-reader.js");

564+

const load = reader.loadInstalledPluginIndexInstallRecords({ stateDir });

565+566+

await firstReadStarted.promise;

567+

reader.clearLoadInstalledPluginIndexInstallRecordsCache();

568+

firstRead.resolve({

569+

installRecords: {

570+

demo: {

571+

source: "npm",

572+

spec: "demo@stale",

573+

},

574+

},

575+

});

576+577+

await expect(load).resolves.toEqual({

578+

demo: {

579+

source: "npm",

580+

spec: "demo@fresh",

581+

},

582+

});

583+

expect(reads).toBe(2);

584+

});

585+473586

it("preserves git install resolution fields in persisted records", async () => {

474587

const stateDir = makeStateDir();

475588

const candidate = createPluginCandidate(stateDir, "git-demo");