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

推荐订阅源

雷峰网
雷峰网
爱范儿
爱范儿
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 叶小钗
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - 司徒正美
博客园 - 【当耐特】
IT之家
IT之家

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: isolate update tests from supervisor env · openclaw/...
shakkernerd · 2026-06-11 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import { loadOrCreateDeviceIdentity } from "../infra/device-identity.js";

1111

import { approveDevicePairing, listDevicePairing } from "../infra/device-pairing.js";

1212

import { approveNodePairing, requestNodePairing } from "../infra/node-pairing.js";

1313

import { resolveRestartSentinelPath } from "../infra/restart-sentinel.js";

14+

import { SUPERVISOR_HINT_ENV_VARS } from "../infra/supervisor-markers.js";

1415

import { getActiveRuntimePluginRegistry } from "../plugins/active-runtime-registry.js";

1516

import {

1617

GATEWAY_CLIENT_MODES,

@@ -47,6 +48,26 @@ type PollWaitOptions = { timeout: number; interval: number };

4748

let ws: WebSocket;

4849

let port: number;

495051+

async function withoutSupervisorHints<T>(fn: () => Promise<T>): Promise<T> {

52+

const previousEnv = new Map<string, string | undefined>();

53+

for (const key of SUPERVISOR_HINT_ENV_VARS) {

54+

previousEnv.set(key, process.env[key]);

55+

delete process.env[key];

56+

}

57+58+

try {

59+

return await fn();

60+

} finally {

61+

for (const [key, value] of previousEnv) {

62+

if (value === undefined) {

63+

delete process.env[key];

64+

} else {

65+

process.env[key] = value;

66+

}

67+

}

68+

}

69+

}

70+5071

function countConnectedNodes(nodes: readonly { connected?: boolean }[] | undefined): number {

5172

let count = 0;

5273

for (const node of nodes ?? []) {

@@ -371,72 +392,76 @@ describe("gateway role enforcement", () => {

371392372393

describe("gateway update.run", () => {

373394

test("writes sentinel and schedules restart", async () => {

374-

const sigusr1 = vi.fn();

375-

process.on("SIGUSR1", sigusr1);

376-377-

try {

378-

const id = "req-update";

379-

ws.send(

380-

JSON.stringify({

381-

type: "req",

382-

id,

383-

method: "update.run",

384-

params: {

385-

sessionKey: "agent:main:whatsapp:dm:+15555550123",

386-

restartDelayMs: 0,

387-

},

388-

}),

389-

);

390-

const res = await onceMessage(ws, (o) => o.type === "res" && o.id === id);

391-

expect(res.ok).toBe(true);

392-393-

await vi.waitFor(() => {

394-

expect(sigusr1.mock.calls.length).toBeGreaterThan(0);

395-

}, FAST_WAIT_OPTS);

396-

expect(sigusr1).toHaveBeenCalled();

397-398-

const sentinelPath = resolveRestartSentinelPath();

399-

const raw = await fs.readFile(sentinelPath, "utf-8");

400-

const parsed = JSON.parse(raw) as {

401-

payload?: { kind?: string; stats?: { mode?: string } };

402-

};

403-

expect(parsed.payload?.kind).toBe("update");

404-

expect(parsed.payload?.stats?.mode).toBe("git");

405-

} finally {

406-

process.off("SIGUSR1", sigusr1);

407-

}

395+

await withoutSupervisorHints(async () => {

396+

const sigusr1 = vi.fn();

397+

process.on("SIGUSR1", sigusr1);

398+399+

try {

400+

const id = "req-update";

401+

ws.send(

402+

JSON.stringify({

403+

type: "req",

404+

id,

405+

method: "update.run",

406+

params: {

407+

sessionKey: "agent:main:whatsapp:dm:+15555550123",

408+

restartDelayMs: 0,

409+

},

410+

}),

411+

);

412+

const res = await onceMessage(ws, (o) => o.type === "res" && o.id === id);

413+

expect(res.ok).toBe(true);

414+415+

await vi.waitFor(() => {

416+

expect(sigusr1.mock.calls.length).toBeGreaterThan(0);

417+

}, FAST_WAIT_OPTS);

418+

expect(sigusr1).toHaveBeenCalled();

419+420+

const sentinelPath = resolveRestartSentinelPath();

421+

const raw = await fs.readFile(sentinelPath, "utf-8");

422+

const parsed = JSON.parse(raw) as {

423+

payload?: { kind?: string; stats?: { mode?: string } };

424+

};

425+

expect(parsed.payload?.kind).toBe("update");

426+

expect(parsed.payload?.stats?.mode).toBe("git");

427+

} finally {

428+

process.off("SIGUSR1", sigusr1);

429+

}

430+

});

408431

});

409432410433

test("uses configured update channel", async () => {

411-

const sigusr1 = vi.fn();

412-

process.on("SIGUSR1", sigusr1);

413-414-

try {

415-

const configPath = getGatewayTestConfigPath();

416-

await fs.mkdir(path.dirname(configPath), { recursive: true });

417-

await fs.writeFile(configPath, JSON.stringify({ update: { channel: "beta" } }, null, 2));

418-

const updateMock = vi.mocked(runGatewayUpdate);

419-

updateMock.mockClear();

420-421-

const id = "req-update-channel";

422-

ws.send(

423-

JSON.stringify({

424-

type: "req",

425-

id,

426-

method: "update.run",

427-

params: {

428-

restartDelayMs: 0,

429-

},

430-

}),

431-

);

432-

const res = await onceMessage(ws, (o) => o.type === "res" && o.id === id);

433-

expect(res.ok).toBe(true);

434-

await vi.waitFor(() => {

435-

expect(updateMock).toHaveBeenCalledOnce();

436-

}, FAST_WAIT_OPTS);

437-

} finally {

438-

process.off("SIGUSR1", sigusr1);

439-

}

434+

await withoutSupervisorHints(async () => {

435+

const sigusr1 = vi.fn();

436+

process.on("SIGUSR1", sigusr1);

437+438+

try {

439+

const configPath = getGatewayTestConfigPath();

440+

await fs.mkdir(path.dirname(configPath), { recursive: true });

441+

await fs.writeFile(configPath, JSON.stringify({ update: { channel: "beta" } }, null, 2));

442+

const updateMock = vi.mocked(runGatewayUpdate);

443+

updateMock.mockClear();

444+445+

const id = "req-update-channel";

446+

ws.send(

447+

JSON.stringify({

448+

type: "req",

449+

id,

450+

method: "update.run",

451+

params: {

452+

restartDelayMs: 0,

453+

},

454+

}),

455+

);

456+

const res = await onceMessage(ws, (o) => o.type === "res" && o.id === id);

457+

expect(res.ok).toBe(true);

458+

await vi.waitFor(() => {

459+

expect(updateMock).toHaveBeenCalledOnce();

460+

}, FAST_WAIT_OPTS);

461+

} finally {

462+

process.off("SIGUSR1", sigusr1);

463+

}

464+

});

440465

});

441466

});

442467