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

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow 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
fix(cli): route node status hints to stdout (#85780) · op...
giodl73-repo · 2026-05-25 · via Recent Commits to openclaw:main

@@ -0,0 +1,116 @@

1+

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

2+

import type { GatewayServiceRuntime } from "../../daemon/service-runtime.js";

3+

import { runNodeDaemonStatus } from "./daemon.js";

4+5+

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

6+

const service = {

7+

label: "Node service",

8+

loadedText: "loaded",

9+

notLoadedText: "not loaded",

10+

stage: vi.fn(),

11+

install: vi.fn(),

12+

uninstall: vi.fn(),

13+

stop: vi.fn(),

14+

restart: vi.fn(),

15+

isLoaded: vi.fn(async () => true),

16+

readCommand: vi.fn(async () => null),

17+

readRuntime: vi.fn<() => Promise<GatewayServiceRuntime>>(async () => ({ status: "running" })),

18+

};

19+

return {

20+

runtime: {

21+

log: vi.fn<(line: string) => void>(),

22+

error: vi.fn<(line: string) => void>(),

23+

writeJson: vi.fn(),

24+

exit: vi.fn(),

25+

},

26+

service,

27+

};

28+

});

29+30+

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

31+

defaultRuntime: mocks.runtime,

32+

}));

33+34+

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

35+

resolveNodeService: () => mocks.service,

36+

}));

37+38+

vi.mock("../../daemon/runtime-hints.js", () => ({

39+

buildPlatformRuntimeLogHints: () => [

40+

"Logs: node service log",

41+

"Restart attempts: node restart log",

42+

],

43+

buildPlatformServiceStartHints: () => ["openclaw node install", "openclaw node start"],

44+

}));

45+46+

vi.mock("../../terminal/theme.js", async () => {

47+

const actual =

48+

await vi.importActual<typeof import("../../terminal/theme.js")>("../../terminal/theme.js");

49+

return {

50+

...actual,

51+

colorize: (_rich: boolean, _theme: unknown, text: string) => text,

52+

};

53+

});

54+55+

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

56+

const actual =

57+

await vi.importActual<typeof import("../daemon-cli/shared.js")>("../daemon-cli/shared.js");

58+

return {

59+

...actual,

60+

createCliStatusTextStyles: () => ({

61+

rich: false,

62+

label: (text: string) => text,

63+

accent: (text: string) => text,

64+

infoText: (text: string) => text,

65+

okText: (text: string) => text,

66+

warnText: (text: string) => text,

67+

errorText: (text: string) => text,

68+

}),

69+

formatRuntimeStatus: (runtime: GatewayServiceRuntime | undefined) => runtime?.status ?? "",

70+

resolveRuntimeStatusColor: () => "",

71+

};

72+

});

73+74+

describe("runNodeDaemonStatus", () => {

75+

function stdout(): string {

76+

return mocks.runtime.log.mock.calls.map(([line]) => line).join("\n");

77+

}

78+79+

function stderr(): string {

80+

return mocks.runtime.error.mock.calls.map(([line]) => line).join("\n");

81+

}

82+83+

beforeEach(() => {

84+

mocks.runtime.log.mockClear();

85+

mocks.runtime.error.mockClear();

86+

mocks.runtime.writeJson.mockClear();

87+

mocks.runtime.exit.mockClear();

88+

mocks.service.isLoaded.mockReset().mockResolvedValue(true);

89+

mocks.service.readCommand.mockReset().mockResolvedValue(null);

90+

mocks.service.readRuntime.mockReset().mockResolvedValue({ status: "running" });

91+

});

92+93+

it("keeps missing service-unit status on stderr and prints recovery hints on stdout", async () => {

94+

mocks.service.readRuntime.mockResolvedValue({ status: "stopped", missingUnit: true });

95+96+

await runNodeDaemonStatus();

97+98+

expect(stderr()).toContain("Service unit not found.");

99+

expect(stdout()).toContain("Logs: node service log");

100+

expect(stdout()).toContain("Restart attempts: node restart log");

101+

expect(stderr()).not.toContain("Logs: node service log");

102+

expect(stderr()).not.toContain("Restart attempts: node restart log");

103+

});

104+105+

it("keeps stopped status on stderr and prints recovery hints on stdout", async () => {

106+

mocks.service.readRuntime.mockResolvedValue({ status: "stopped" });

107+108+

await runNodeDaemonStatus();

109+110+

expect(stderr()).toContain("Service is loaded but not running.");

111+

expect(stdout()).toContain("Logs: node service log");

112+

expect(stdout()).toContain("Restart attempts: node restart log");

113+

expect(stderr()).not.toContain("Logs: node service log");

114+

expect(stderr()).not.toContain("Restart attempts: node restart log");

115+

});

116+

});