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

推荐订阅源

量子位
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
G
Google Developers Blog
腾讯CDC
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
人人都是产品经理
人人都是产品经理
博客园_首页
T
Tailwind CSS Blog
C
Check Point Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
Engineering at Meta
Engineering at Meta
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
Doctor: expose gateway runtime findings (#97075) · opencl...
giodl73-repo · 2026-06-28 · via Recent Commits to openclaw:main

@@ -9,6 +9,10 @@ const mocks = vi.hoisted(() => ({

99

disposeBundleRuntime: vi.fn(),

1010

loadModelCatalog: vi.fn(async (): Promise<Array<Record<string, unknown>>> => []),

1111

normalizeProviderToolSchemasWithPlugin: vi.fn(),

12+

buildGatewayProbeConnectionDetails: vi.fn(),

13+

probeGatewayStatus: vi.fn(),

14+

readGatewayServiceState: vi.fn(),

15+

resolveGatewayService: vi.fn(() => ({ label: "openclaw-gateway" })),

1216

resolvePluginProviders: vi.fn((): Array<Record<string, unknown>> => []),

1317

resolveDefaultModelForAgent: vi.fn(() => ({ provider: "openai", model: "gpt-5.5" })),

1418

}));

@@ -35,6 +39,19 @@ vi.mock("../agents/agent-tools.js", () => ({

3539

createOpenClawCodingTools: mocks.createOpenClawCodingTools,

3640

}));

374142+

vi.mock("../gateway/call.js", () => ({

43+

buildGatewayProbeConnectionDetails: mocks.buildGatewayProbeConnectionDetails,

44+

}));

45+46+

vi.mock("../cli/daemon-cli/probe.js", () => ({

47+

probeGatewayStatus: mocks.probeGatewayStatus,

48+

}));

49+50+

vi.mock("../daemon/service.js", () => ({

51+

readGatewayServiceState: mocks.readGatewayServiceState,

52+

resolveGatewayService: mocks.resolveGatewayService,

53+

}));

54+3855

vi.mock("../plugins/provider-runtime.js", () => ({

3956

inspectProviderToolSchemasWithPlugin: () => [],

4057

normalizeProviderToolSchemasWithPlugin: mocks.normalizeProviderToolSchemasWithPlugin,

@@ -48,8 +65,12 @@ vi.mock("../plugins/providers.runtime.js", () => ({

4865

resolvePluginProviders: mocks.resolvePluginProviders,

4966

}));

506751-

const { collectProviderCatalogProjectionFindings, collectRuntimeToolSchemaFindings } =

52-

await import("./doctor-core-checks.runtime.js");

68+

const {

69+

collectGatewayDaemonFindings,

70+

collectGatewayHealthFindings,

71+

collectProviderCatalogProjectionFindings,

72+

collectRuntimeToolSchemaFindings,

73+

} = await import("./doctor-core-checks.runtime.js");

53745475

function tool(name: string, parameters: unknown): AnyAgentTool {

5576

return {

@@ -79,6 +100,22 @@ describe("doctor runtime tool schema checks", () => {

79100

mocks.normalizeProviderToolSchemasWithPlugin

80101

.mockReset()

81102

.mockImplementation(({ context }) => context.tools);

103+

mocks.buildGatewayProbeConnectionDetails.mockReset().mockResolvedValue({

104+

url: "http://127.0.0.1:5829",

105+

});

106+

mocks.probeGatewayStatus.mockReset().mockResolvedValue({

107+

ok: true,

108+

server: { version: "2026.6.26" },

109+

});

110+

mocks.readGatewayServiceState.mockReset().mockResolvedValue({

111+

installed: true,

112+

loaded: true,

113+

running: true,

114+

env: {},

115+

command: { programArguments: ["openclaw", "gateway"], sourcePath: "/tmp/gateway.service" },

116+

runtime: { status: "running" },

117+

});

118+

mocks.resolveGatewayService.mockClear();

82119

mocks.resolvePluginProviders.mockReset().mockReturnValue([]);

83120

mocks.resolveDefaultModelForAgent.mockClear();

84121

});

@@ -503,6 +540,100 @@ describe("doctor runtime tool schema checks", () => {

503540

});

504541

});

505542543+

describe("doctor gateway runtime checks", () => {

544+

beforeEach(() => {

545+

mocks.buildGatewayProbeConnectionDetails.mockReset().mockResolvedValue({

546+

url: "http://127.0.0.1:5829",

547+

});

548+

mocks.probeGatewayStatus.mockReset().mockResolvedValue({

549+

ok: true,

550+

server: { version: "2026.6.26" },

551+

});

552+

mocks.readGatewayServiceState.mockReset().mockResolvedValue({

553+

installed: true,

554+

loaded: true,

555+

running: true,

556+

env: {},

557+

command: { programArguments: ["openclaw", "gateway"], sourcePath: "/tmp/gateway.service" },

558+

runtime: { status: "running" },

559+

});

560+

mocks.resolveGatewayService.mockReset().mockReturnValue({ label: "openclaw-gateway" });

561+

});

562+563+

it("reports unreachable gateway health probes", async () => {

564+

mocks.probeGatewayStatus.mockResolvedValueOnce({

565+

ok: false,

566+

error: "connect ECONNREFUSED 127.0.0.1:5829",

567+

});

568+569+

await expect(

570+

collectGatewayHealthFindings({ cfg: { gateway: { mode: "local" } } }),

571+

).resolves.toContainEqual({

572+

checkId: "core/doctor/gateway-health",

573+

severity: "warning",

574+

message: "Gateway is not reachable: connect ECONNREFUSED 127.0.0.1:5829",

575+

path: "gateway.mode",

576+

target: "http://127.0.0.1:5829",

577+

fixHint:

578+

"Start the Gateway service or run `openclaw doctor --fix` for service repair prompts.",

579+

});

580+

});

581+582+

it("redacts sensitive remote gateway URLs from health finding targets", async () => {

583+

mocks.buildGatewayProbeConnectionDetails.mockResolvedValueOnce({

584+

url: "wss://user:pass@gateway.example.test/rpc?token=secret&safe=value",

585+

});

586+

mocks.probeGatewayStatus.mockResolvedValueOnce({

587+

ok: false,

588+

error: "remote gateway did not answer",

589+

});

590+591+

const findings = await collectGatewayHealthFindings({

592+

cfg: { gateway: { mode: "remote", remote: { url: "wss://gateway.example.test/rpc" } } },

593+

});

594+595+

expect(findings).toContainEqual({

596+

checkId: "core/doctor/gateway-health",

597+

severity: "warning",

598+

message: "Gateway is not reachable: remote gateway did not answer",

599+

path: "gateway.remote.url",

600+

target: "wss://***:***@gateway.example.test/rpc?token=***&safe=value",

601+

fixHint: "Verify the remote Gateway URL, network path, TLS settings, and credentials.",

602+

});

603+

expect(JSON.stringify(findings)).not.toContain("user:pass");

604+

expect(JSON.stringify(findings)).not.toContain("token=secret");

605+

});

606+607+

it("reports missing local gateway daemon service", async () => {

608+

mocks.readGatewayServiceState.mockResolvedValueOnce({

609+

installed: false,

610+

loaded: false,

611+

running: false,

612+

env: {},

613+

command: null,

614+

});

615+616+

await expect(

617+

collectGatewayDaemonFindings({ cfg: { gateway: { mode: "local" } } }),

618+

).resolves.toContainEqual({

619+

checkId: "core/doctor/gateway-daemon",

620+

severity: "warning",

621+

message: "Gateway service is not installed.",

622+

path: "gateway.mode",

623+

target: "openclaw-gateway",

624+

fixHint: "Run `openclaw doctor --fix` or `openclaw gateway install` to install it.",

625+

});

626+

});

627+628+

it("skips daemon findings for remote gateway mode", async () => {

629+

await expect(

630+

collectGatewayDaemonFindings({ cfg: { gateway: { mode: "remote" } } }),

631+

).resolves.toEqual([]);

632+633+

expect(mocks.readGatewayServiceState).not.toHaveBeenCalled();

634+

});

635+

});

636+506637

describe("doctor provider catalog projection checks", () => {

507638

beforeEach(() => {

508639

mocks.resolvePluginProviders.mockReset().mockReturnValue([]);