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

推荐订阅源

Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
Y
Y Combinator Blog
D
DataBreaches.Net
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
H
Help Net Security
GbyAI
GbyAI
C
Check Point Blog
L
LangChain Blog
小众软件
小众软件
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
G
Google Developers Blog
月光博客
月光博客
V
V2EX
M
MIT News - Artificial intelligence
博客园 - 叶小钗

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: defer onboarding plugin install records · openclaw/o...
shakkernerd · 2026-04-26 · via Recent Commits to openclaw:main

@@ -1,6 +1,7 @@

11

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

22

import type { ChannelPluginCatalogEntry } from "../channels/plugins/catalog.js";

33

import type { ChannelPlugin } from "../channels/plugins/types.js";

4+

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

45

import { resetPluginRuntimeStateForTest, setActivePluginRegistry } from "../plugins/runtime.js";

56

import { DEFAULT_ACCOUNT_ID } from "../routing/session-key.js";

67

import { createChannelTestPluginBase, createTestRegistry } from "../test-utils/channel-plugins.js";

@@ -34,6 +35,10 @@ const registryRefreshMocks = vi.hoisted(() => ({

3435

refreshPluginRegistryAfterConfigMutation: vi.fn(async () => undefined),

3536

}));

363738+

const pluginInstallRecordCommitMocks = vi.hoisted(() => ({

39+

commitPluginInstallRecordsWithConfig: vi.fn(),

40+

}));

41+3742

vi.mock("../channels/plugins/catalog.js", () => ({

3843

listChannelPluginCatalogEntries: catalogMocks.listChannelPluginCatalogEntries,

3944

}));

@@ -56,6 +61,8 @@ vi.mock("./channel-setup/plugin-install.js", () => pluginInstallMocks);

56615762

vi.mock("../cli/plugins-registry-refresh.js", () => registryRefreshMocks);

586364+

vi.mock("../cli/plugins-install-record-commit.js", () => pluginInstallRecordCommitMocks);

65+5966

const runtime = createTestRuntime();

60676168

function listConfiguredAccountIds(

@@ -256,6 +263,12 @@ describe("channelsAddCommand", () => {

256263

.mockImplementation(async (params: { nextConfig: unknown }) => {

257264

await configMocks.writeConfigFile(params.nextConfig);

258265

});

266+

pluginInstallRecordCommitMocks.commitPluginInstallRecordsWithConfig.mockReset();

267+

pluginInstallRecordCommitMocks.commitPluginInstallRecordsWithConfig.mockImplementation(

268+

async (params: { nextConfig: unknown }) => {

269+

await configMocks.writeConfigFile(params.nextConfig);

270+

},

271+

);

259272

lifecycleMocks.onAccountConfigChanged.mockClear();

260273

runtime.log.mockClear();

261274

runtime.error.mockClear();

@@ -525,6 +538,60 @@ describe("channelsAddCommand", () => {

525538

expectExternalChatEnabledConfigWrite();

526539

});

527540541+

it("commits channel setup plugin install records with the guarded config write", async () => {

542+

configMocks.readConfigFileSnapshot.mockResolvedValue({

543+

...baseConfigSnapshot,

544+

hash: "config-1",

545+

});

546+

setActivePluginRegistry(createTestRegistry());

547+

const catalogEntry = createExternalChatCatalogEntry();

548+

catalogMocks.listChannelPluginCatalogEntries.mockReturnValue([catalogEntry]);

549+

registerExternalChatSetupPlugin("external-chat");

550+

const installRecords: Record<string, PluginInstallRecord> = {

551+

"@vendor/external-chat-plugin": {

552+

source: "npm",

553+

spec: "@vendor/external-chat@1.2.3",

554+

},

555+

};

556+

vi.mocked(ensureChannelSetupPluginInstalled).mockImplementation(async ({ cfg }) => ({

557+

cfg: {

558+

...cfg,

559+

plugins: {

560+

...cfg.plugins,

561+

installs: installRecords,

562+

},

563+

},

564+

installed: true,

565+

pluginId: "@vendor/external-chat-plugin",

566+

status: "installed",

567+

}));

568+569+

await channelsAddCommand(

570+

{

571+

channel: "external-chat",

572+

account: "default",

573+

token: "tenant-scoped",

574+

},

575+

runtime,

576+

{ hasFlags: true },

577+

);

578+579+

expect(

580+

pluginInstallRecordCommitMocks.commitPluginInstallRecordsWithConfig,

581+

).toHaveBeenCalledWith({

582+

nextInstallRecords: installRecords,

583+

nextConfig: expect.not.objectContaining({

584+

plugins: expect.objectContaining({ installs: expect.anything() }),

585+

}),

586+

baseHash: "config-1",

587+

});

588+

expect(registryRefreshMocks.refreshPluginRegistryAfterConfigMutation).toHaveBeenCalledWith(

589+

expect.objectContaining({

590+

installRecords,

591+

}),

592+

);

593+

});

594+528595

it("uses the installed plugin id when channel and plugin ids differ", async () => {

529596

configMocks.readConfigFileSnapshot.mockResolvedValue({ ...baseConfigSnapshot });

530597

setActivePluginRegistry(createTestRegistry());