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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

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
refactor: share startup early test inputs · openclaw/open...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -42,6 +42,50 @@ vi.mock("../tasks/task-registry.maintenance.js", () => ({

4242

import { createChatRunState } from "./server-chat-state.js";

4343

import { startGatewayEarlyRuntime, startGatewayPluginDiscovery } from "./server-startup-early.js";

444445+

type StartGatewayEarlyRuntimeInput = Parameters<typeof startGatewayEarlyRuntime>[0];

46+47+

const log = {

48+

info: () => {},

49+

warn: () => {},

50+

};

51+52+

function earlyRuntimeInput(

53+

overrides: Partial<StartGatewayEarlyRuntimeInput> = {},

54+

): StartGatewayEarlyRuntimeInput {

55+

const chatRunState = createChatRunState();

56+

return {

57+

minimalTestGateway: true,

58+

cfgAtStart: {} as never,

59+

port: 18_789,

60+

gatewayTls: { enabled: false },

61+

gatewayDirectReachable: false,

62+

tailscaleMode: "off" as never,

63+

log,

64+

logDiscovery: log,

65+

nodeRegistry: {} as never,

66+

broadcast: () => {},

67+

nodeSendToAllSubscribed: () => {},

68+

getPresenceVersion: () => 0,

69+

getHealthVersion: () => 0,

70+

refreshGatewayHealthSnapshot: async () => ({}) as never,

71+

logHealth: { error: () => {} },

72+

dedupe: new Map(),

73+

chatAbortControllers: new Map(),

74+

chatRunState,

75+

chatRunBuffers: chatRunState.buffers,

76+

chatDeltaSentAt: chatRunState.deltaSentAt,

77+

chatDeltaLastBroadcastLen: chatRunState.deltaLastBroadcastLen,

78+

removeChatRun: () => undefined,

79+

agentRunSeq: new Map(),

80+

nodeSendToSession: () => {},

81+

skillsRefreshDelayMs: 30_000,

82+

getSkillsRefreshTimer: () => null,

83+

setSkillsRefreshTimer: () => {},

84+

getRuntimeConfig: () => ({}) as never,

85+

...overrides,

86+

};

87+

}

88+4589

describe("startGatewayEarlyRuntime", () => {

4690

beforeEach(() => {

4791

mocks.getMachineDisplayName.mockClear();

@@ -60,88 +104,21 @@ describe("startGatewayEarlyRuntime", () => {

60104

});

6110562106

it("does not eagerly start the MCP loopback server", async () => {

63-

const chatRunState = createChatRunState();

64-

const earlyRuntime = await startGatewayEarlyRuntime({

65-

minimalTestGateway: true,

66-

cfgAtStart: {} as never,

67-

port: 18_789,

68-

gatewayTls: { enabled: false },

69-

gatewayDirectReachable: false,

70-

tailscaleMode: "off" as never,

71-

log: {

72-

info: () => {},

73-

warn: () => {},

74-

},

75-

logDiscovery: {

76-

info: () => {},

77-

warn: () => {},

78-

},

79-

nodeRegistry: {} as never,

80-

broadcast: () => {},

81-

nodeSendToAllSubscribed: () => {},

82-

getPresenceVersion: () => 0,

83-

getHealthVersion: () => 0,

84-

refreshGatewayHealthSnapshot: async () => ({}) as never,

85-

logHealth: { error: () => {} },

86-

dedupe: new Map(),

87-

chatAbortControllers: new Map(),

88-

chatRunState,

89-

chatRunBuffers: chatRunState.buffers,

90-

chatDeltaSentAt: chatRunState.deltaSentAt,

91-

chatDeltaLastBroadcastLen: chatRunState.deltaLastBroadcastLen,

92-

removeChatRun: () => undefined,

93-

agentRunSeq: new Map(),

94-

nodeSendToSession: () => {},

95-

skillsRefreshDelayMs: 30_000,

96-

getSkillsRefreshTimer: () => null,

97-

setSkillsRefreshTimer: () => {},

98-

getRuntimeConfig: () => ({}) as never,

99-

});

107+

const earlyRuntime = await startGatewayEarlyRuntime(earlyRuntimeInput());

100108101109

expect(earlyRuntime).not.toHaveProperty("mcpServer");

102110

});

103111104112

it("wires non-minimal skills runtime through lazy startup imports", async () => {

105-

const chatRunState = createChatRunState();

106113

const nodeRegistry = { node: { id: "node" } };

107114

mocks.getInspectableActiveTaskRestartBlockers.mockReturnValueOnce(["active-task"]);

108115109-

const earlyRuntime = await startGatewayEarlyRuntime({

110-

minimalTestGateway: false,

111-

cfgAtStart: {} as never,

112-

port: 18_789,

113-

gatewayTls: { enabled: false },

114-

gatewayDirectReachable: false,

115-

tailscaleMode: "off" as never,

116-

log: {

117-

info: () => {},

118-

warn: () => {},

119-

},

120-

logDiscovery: {

121-

info: () => {},

122-

warn: () => {},

123-

},

124-

nodeRegistry: nodeRegistry as never,

125-

broadcast: () => {},

126-

nodeSendToAllSubscribed: () => {},

127-

getPresenceVersion: () => 0,

128-

getHealthVersion: () => 0,

129-

refreshGatewayHealthSnapshot: async () => ({}) as never,

130-

logHealth: { error: () => {} },

131-

dedupe: new Map(),

132-

chatAbortControllers: new Map(),

133-

chatRunState,

134-

chatRunBuffers: chatRunState.buffers,

135-

chatDeltaSentAt: chatRunState.deltaSentAt,

136-

chatDeltaLastBroadcastLen: chatRunState.deltaLastBroadcastLen,

137-

removeChatRun: () => undefined,

138-

agentRunSeq: new Map(),

139-

nodeSendToSession: () => {},

140-

skillsRefreshDelayMs: 30_000,

141-

getSkillsRefreshTimer: () => null,

142-

setSkillsRefreshTimer: () => {},

143-

getRuntimeConfig: () => ({}) as never,

144-

});

116+

const earlyRuntime = await startGatewayEarlyRuntime(

117+

earlyRuntimeInput({

118+

minimalTestGateway: false,

119+

nodeRegistry: nodeRegistry as never,

120+

}),

121+

);

145122146123

expect(mocks.setSkillsRemoteRegistry).toHaveBeenCalledWith(nodeRegistry);

147124

expect(mocks.primeRemoteSkillsCache).toHaveBeenCalledTimes(1);