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

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS 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(auth): reclaim zombie-owned stale locks · openclaw/op...
steipete · 2026-05-14 · via Recent Commits to openclaw:main

@@ -1,6 +1,10 @@

11

import fsSync from "node:fs";

2-

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

3-

import { getProcessStartTime, isPidAlive } from "./pid-alive.js";

2+

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

3+

import { getProcessStartTime, isPidAlive, isPidDefinitelyDead } from "./pid-alive.js";

4+5+

afterEach(() => {

6+

vi.restoreAllMocks();

7+

});

4859

function mockProcReads(entries: Record<string, string>) {

610

const originalReadFileSync = fsSync.readFileSync;

@@ -80,6 +84,60 @@ describe("isPidAlive", () => {

8084

});

8185

});

828687+

describe("isPidDefinitelyDead", () => {

88+

it("returns true for invalid PIDs", () => {

89+

expect(isPidDefinitelyDead(0)).toBe(true);

90+

expect(isPidDefinitelyDead(-1)).toBe(true);

91+

expect(isPidDefinitelyDead(1.5)).toBe(true);

92+

expect(isPidDefinitelyDead(Number.NaN)).toBe(true);

93+

expect(isPidDefinitelyDead(Number.POSITIVE_INFINITY)).toBe(true);

94+

});

95+96+

it("returns true when process probing reports ESRCH", () => {

97+

const error = Object.assign(new Error("missing process"), { code: "ESRCH" });

98+

vi.spyOn(process, "kill").mockImplementation(() => {

99+

throw error;

100+

});

101+102+

expect(isPidDefinitelyDead(42)).toBe(true);

103+

expect(process.kill).toHaveBeenCalledWith(42, 0);

104+

});

105+106+

it("returns false when process probing reports EPERM", () => {

107+

const error = Object.assign(new Error("permission denied"), { code: "EPERM" });

108+

vi.spyOn(process, "kill").mockImplementation(() => {

109+

throw error;

110+

});

111+112+

expect(isPidDefinitelyDead(42)).toBe(false);

113+

expect(process.kill).toHaveBeenCalledWith(42, 0);

114+

});

115+116+

it("returns true for zombie processes on Linux", async () => {

117+

const zombiePid = process.pid;

118+

vi.spyOn(process, "kill").mockImplementation(() => true);

119+

mockProcReads({

120+

[`/proc/${zombiePid}/status`]: `Name:\tnode\nUmask:\t0022\nState:\tZ (zombie)\nTgid:\t${zombiePid}\nPid:\t${zombiePid}\n`,

121+

});

122+123+

await withLinuxProcessPlatform(async () => {

124+

expect(isPidDefinitelyDead(zombiePid)).toBe(true);

125+

});

126+

});

127+128+

it("returns false for live non-zombie processes", async () => {

129+

const livePid = process.pid;

130+

vi.spyOn(process, "kill").mockImplementation(() => true);

131+

mockProcReads({

132+

[`/proc/${livePid}/status`]: `Name:\tnode\nUmask:\t0022\nState:\tS (sleeping)\nTgid:\t${livePid}\nPid:\t${livePid}\n`,

133+

});

134+135+

await withLinuxProcessPlatform(async () => {

136+

expect(isPidDefinitelyDead(livePid)).toBe(false);

137+

});

138+

});

139+

});

140+83141

describe("getProcessStartTime", () => {

84142

it("parses linux /proc stat start times and rejects malformed variants", async () => {

85143

const fakeStatPrefix = "42 (node) S 1 42 42 0 -1 4194304 12345 0 0 0 100 50 0 0 20 0 8 0 ";