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

推荐订阅源

博客园_首页
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
B
Blog
The GitHub Blog
The GitHub Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
月光博客
月光博客
人人都是产品经理
人人都是产品经理
IT之家
IT之家
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
C
Check Point 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
Persist hosted catalog snapshots in state (#95964) · open...
giodl73-repo · 2026-06-28 · via Recent Commits to openclaw:main
1-

import { readFileSync } from "node:fs";

1+

import { mkdtempSync, readFileSync, rmSync } from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

24

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

35

import officialExternalPluginCatalog from "../../scripts/lib/official-external-plugin-catalog.json" with { type: "json" };

6+

import { closeOpenClawStateDatabaseForTest } from "../state/openclaw-state-db.js";

7+

import { createSqliteHostedOfficialExternalPluginCatalogSnapshotStore } from "./official-external-plugin-catalog-snapshot-store.js";

48

import {

59

type OfficialExternalPluginCatalogEntry,

610

DEFAULT_OFFICIAL_EXTERNAL_PLUGIN_CATALOG_FEED_URL,

@@ -245,6 +249,7 @@ describe("official external plugin catalog", () => {

245249

fetchImpl,

246250

ifNoneMatch: '"old"',

247251

ifModifiedSince: "Mon, 22 Jun 2026 00:00:00 GMT",

252+

snapshotStore: null,

248253

});

249254250255

expect(result.source).toBe("hosted");

@@ -315,6 +320,7 @@ describe("official external plugin catalog", () => {

315320316321

it("falls back to the bundled catalog when hosted feed validation fails", async () => {

317322

const result = await loadHostedOfficialExternalPluginCatalogEntries({

323+

snapshotStore: null,

318324

fetchImpl: vi.fn(

319325

async () =>

320326

new Response(JSON.stringify({ schemaVersion: 1, id: " ", entries: [] }), {

@@ -333,6 +339,7 @@ describe("official external plugin catalog", () => {

333339334340

it("falls back to the bundled catalog on HTTP 304 until a snapshot cache exists", async () => {

335341

const result = await loadHostedOfficialExternalPluginCatalogEntries({

342+

snapshotStore: null,

336343

fetchImpl: vi.fn(

337344

async () =>

338345

new Response(null, {

@@ -395,6 +402,108 @@ describe("official external plugin catalog", () => {

395402

expect(snapshot?.metadata.checksum).toMatch(/^sha256:[0-9a-f]{64}$/);

396403

});

397404405+

it("persists hosted feed snapshots in OpenClaw state for HTTP 304 reuse", async () => {

406+

const stateDir = mkdtempSync(path.join(os.tmpdir(), "openclaw-hosted-catalog-"));

407+

try {

408+

const body = JSON.stringify({

409+

schemaVersion: 1,

410+

id: "openclaw-official-external-plugins",

411+

generatedAt: "2026-06-22T00:00:00.000Z",

412+

sequence: 7,

413+

entries: [

414+

{

415+

name: "@openclaw/sqlite-snapshot-proof",

416+

kind: "plugin",

417+

openclaw: { plugin: { id: "sqlite-snapshot-proof" } },

418+

},

419+

],

420+

});

421+422+

const seeded = await loadHostedOfficialExternalPluginCatalogEntries({

423+

stateDir,

424+

now: () => new Date("2026-06-22T02:03:04.000Z"),

425+

fetchImpl: vi.fn(

426+

async () =>

427+

new Response(body, {

428+

status: 200,

429+

headers: {

430+

etag: '"sqlite"',

431+

"last-modified": "Mon, 22 Jun 2026 02:00:00 GMT",

432+

},

433+

}),

434+

),

435+

});

436+

if (seeded.source !== "hosted") {

437+

throw new Error("expected seeded hosted feed");

438+

}

439+

closeOpenClawStateDatabaseForTest();

440+441+

const result = await loadHostedOfficialExternalPluginCatalogEntries({

442+

stateDir,

443+

fetchImpl: vi.fn(async () => new Response(null, { status: 304 })),

444+

});

445+446+

expect(result.source).toBe("hosted-snapshot");

447+

expect(result.entries.map((entry) => entry.name)).toEqual([

448+

"@openclaw/sqlite-snapshot-proof",

449+

]);

450+

if (result.source === "hosted-snapshot") {

451+

expect(result.snapshot.savedAt).toBe("2026-06-22T02:03:04.000Z");

452+

expect(result.metadata.checksum).toBe(seeded.metadata.checksum);

453+

}

454+

} finally {

455+

closeOpenClawStateDatabaseForTest();

456+

rmSync(stateDir, { recursive: true, force: true });

457+

}

458+

});

459+460+

it("reads and updates hosted catalog snapshots in the SQLite store", async () => {

461+

const stateDir = mkdtempSync(path.join(os.tmpdir(), "openclaw-hosted-store-"));

462+

try {

463+

const store = createSqliteHostedOfficialExternalPluginCatalogSnapshotStore({ stateDir });

464+

const url = "https://register.openclaw.ai/official-external-plugin-catalog.json";

465+466+

const firstBody = JSON.stringify({ entries: [] });

467+

const secondBody = JSON.stringify({ entries: [{}] });

468+469+

await expect(store.read(url)).resolves.toBeNull();

470+

await store.write({

471+

body: firstBody,

472+

metadata: {

473+

url,

474+

status: 200,

475+

etag: '"first"',

476+

checksum: "sha256:first",

477+

},

478+

savedAt: "2026-06-22T02:03:04.000Z",

479+

});

480+

await store.write({

481+

body: secondBody,

482+

metadata: {

483+

url,

484+

status: 200,

485+

lastModified: "Mon, 22 Jun 2026 03:00:00 GMT",

486+

checksum: "sha256:second",

487+

},

488+

savedAt: "2026-06-22T03:04:05.000Z",

489+

});

490+491+

await expect(store.read(url)).resolves.toMatchObject({

492+

body: secondBody,

493+

metadata: {

494+

url,

495+

status: 200,

496+

lastModified: "Mon, 22 Jun 2026 03:00:00 GMT",

497+

checksum: "sha256:second",

498+

},

499+

savedAt: "2026-06-22T03:04:05.000Z",

500+

});

501+

} finally {

502+

closeOpenClawStateDatabaseForTest();

503+

rmSync(stateDir, { recursive: true, force: true });

504+

}

505+

});

506+398507

it("uses the last known good snapshot when the hosted feed returns HTTP 304", async () => {

399508

const body = JSON.stringify({

400509

schemaVersion: 1,

@@ -655,6 +764,7 @@ describe("official external plugin catalog", () => {

655764656765

it("falls back to the bundled catalog on checksum mismatch and oversized bodies", async () => {

657766

const mismatch = await loadHostedOfficialExternalPluginCatalogEntries({

767+

snapshotStore: null,

658768

expectedSha256: "sha256:not-current",

659769

fetchImpl: vi.fn(

660770

async () =>

@@ -677,6 +787,7 @@ describe("official external plugin catalog", () => {

677787

}

678788679789

const oversized = await loadHostedOfficialExternalPluginCatalogEntries({

790+

snapshotStore: null,

680791

maxBytes: 4,

681792

fetchImpl: vi.fn(async () => new Response("12345", { status: 200 })),

682793

});