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

推荐订阅源

宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
小众软件
小众软件
月光博客
月光博客
D
DataBreaches.Net
L
LangChain Blog
美团技术团队
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
I
InfoQ
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
腾讯CDC
Martin Fowler
Martin Fowler

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(gateway): keep bundled channel startup light · opencl...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

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

11

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

2+

import type { ChannelRuntimeSurface } from "../channels/plugins/channel-runtime-surface.types.js";

23

import {

34

type ChannelGatewayContext,

45

type ChannelId,

@@ -11,6 +12,7 @@ import {

1112

} from "../logging/subsystem.js";

1213

import { createEmptyPluginRegistry, type PluginRegistry } from "../plugins/registry.js";

1314

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

15+

import { createChannelRuntimeContextRegistry } from "../plugins/runtime/channel-runtime-contexts.js";

1416

import { createRuntimeChannel } from "../plugins/runtime/runtime-channel.js";

1517

import type { PluginRuntime } from "../plugins/runtime/types.js";

1618

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

@@ -102,11 +104,17 @@ function createDeferred(): { promise: Promise<void>; resolve: () => void } {

102104

return { promise, resolve: resolvePromise };

103105

}

104106105-

function installTestRegistry(...plugins: ChannelPlugin<TestAccount>[]) {

107+

function installTestRegistry(

108+

...plugins: Array<

109+

ChannelPlugin<TestAccount> | { plugin: ChannelPlugin<TestAccount>; origin: string }

110+

>

111+

) {

106112

const registry = createEmptyPluginRegistry();

107-

for (const plugin of plugins) {

113+

for (const candidate of plugins) {

114+

const plugin = "plugin" in candidate ? candidate.plugin : candidate;

108115

registry.channels.push({

109116

pluginId: plugin.id,

117+

...("origin" in candidate ? { origin: candidate.origin as never } : {}),

110118

source: "test",

111119

plugin,

112120

});

@@ -115,8 +123,9 @@ function installTestRegistry(...plugins: ChannelPlugin<TestAccount>[]) {

115123

}

116124117125

function createManager(options?: {

118-

channelRuntime?: PluginRuntime["channel"];

119-

resolveChannelRuntime?: () => PluginRuntime["channel"] | Promise<PluginRuntime["channel"]>;

126+

channelRuntime?: ChannelRuntimeSurface;

127+

resolveChannelRuntime?: () => ChannelRuntimeSurface | Promise<ChannelRuntimeSurface>;

128+

resolveStartupChannelRuntime?: () => ChannelRuntimeSurface | Promise<ChannelRuntimeSurface>;

120129

getRuntimeConfig?: () => Record<string, unknown>;

121130

channelIds?: ChannelId[];

122131

startupTrace?: { measure: <T>(name: string, run: () => T | Promise<T>) => Promise<T> };

@@ -138,6 +147,9 @@ function createManager(options?: {

138147

...(options?.resolveChannelRuntime

139148

? { resolveChannelRuntime: options.resolveChannelRuntime }

140149

: {}),

150+

...(options?.resolveStartupChannelRuntime

151+

? { resolveStartupChannelRuntime: options.resolveStartupChannelRuntime }

152+

: {}),

141153

...(options?.startupTrace ? { startupTrace: options.startupTrace } : {}),

142154

});

143155

}

@@ -377,6 +389,56 @@ describe("server-channels auto restart", () => {

377389

expect(ctx?.channelRuntime).not.toBe(channelRuntime);

378390

});

379391392+

it("uses a lightweight startup runtime for bundled channels", async () => {

393+

const fullRuntime = {

394+

...createRuntimeChannel(),

395+

marker: "full-channel-runtime",

396+

} as PluginRuntime["channel"] & { marker: string };

397+

const startupRuntime = {

398+

runtimeContexts: createChannelRuntimeContextRegistry(),

399+

marker: "startup-channel-runtime",

400+

};

401+

const resolveChannelRuntime = vi.fn(() => fullRuntime);

402+

const resolveStartupChannelRuntime = vi.fn(() => startupRuntime);

403+

const startAccount = vi.fn(async (_ctx: ChannelGatewayContext<TestAccount>) => {});

404+405+

installTestRegistry({ plugin: createTestPlugin({ startAccount }), origin: "bundled" });

406+

const manager = createManager({ resolveChannelRuntime, resolveStartupChannelRuntime });

407+408+

await manager.startChannels();

409+410+

expect(resolveStartupChannelRuntime).toHaveBeenCalledTimes(1);

411+

expect(resolveChannelRuntime).not.toHaveBeenCalled();

412+

expect(startAccount).toHaveBeenCalledTimes(1);

413+

const [ctx] = startAccount.mock.calls[0] ?? [];

414+

expect(ctx?.channelRuntime).toMatchObject({ marker: "startup-channel-runtime" });

415+

expect(ctx?.channelRuntime).not.toBe(startupRuntime);

416+

});

417+418+

it("keeps the full runtime path for non-bundled channels", async () => {

419+

const fullRuntime = {

420+

...createRuntimeChannel(),

421+

marker: "full-channel-runtime",

422+

} as PluginRuntime["channel"] & { marker: string };

423+

const startupRuntime = {

424+

runtimeContexts: createChannelRuntimeContextRegistry(),

425+

marker: "startup-channel-runtime",

426+

};

427+

const resolveChannelRuntime = vi.fn(() => fullRuntime);

428+

const resolveStartupChannelRuntime = vi.fn(() => startupRuntime);

429+

const startAccount = vi.fn(async (_ctx: ChannelGatewayContext<TestAccount>) => {});

430+431+

installTestRegistry({ plugin: createTestPlugin({ startAccount }), origin: "workspace" });

432+

const manager = createManager({ resolveChannelRuntime, resolveStartupChannelRuntime });

433+434+

await manager.startChannels();

435+436+

expect(resolveStartupChannelRuntime).not.toHaveBeenCalled();

437+

expect(resolveChannelRuntime).toHaveBeenCalledTimes(1);

438+

const [ctx] = startAccount.mock.calls[0] ?? [];

439+

expect(ctx?.channelRuntime).toMatchObject({ marker: "full-channel-runtime" });

440+

});

441+380442

it("does not resolve channelRuntime for disabled accounts", async () => {

381443

const channelRuntime = createRuntimeChannel();

382444

const resolveChannelRuntime = vi.fn(() => channelRuntime);