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

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(gateway): prefer linux child OOM victims · openclaw/o...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -0,0 +1,105 @@

1+

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

2+

import {

3+

hardenedEnvForChildOomWrap,

4+

prepareOomScoreAdjustedSpawn,

5+

wrapArgvForChildOomScoreRaise,

6+

} from "./linux-oom-score.js";

7+8+

const argv = ["/usr/bin/node", "--max-old-space-size=256", "run.js", "arg with spaces"];

9+

const wrapScript = 'echo 1000 > /proc/self/oom_score_adj 2>/dev/null; exec "$0" "$@"';

10+

const linux = { platform: "linux", env: {}, shellAvailable: () => true } as const;

11+

const linuxNoShell = { platform: "linux", env: {}, shellAvailable: () => false } as const;

12+13+

describe("wrapArgvForChildOomScoreRaise", () => {

14+

it("wraps argv on linux with default env", () => {

15+

const result = wrapArgvForChildOomScoreRaise(argv, linux);

16+

expect(result.slice(0, 3)).toEqual(["/bin/sh", "-c", wrapScript]);

17+

expect(result.slice(3)).toEqual(argv);

18+

});

19+20+

it("returns argv unchanged on non-linux platforms", () => {

21+

for (const platform of ["darwin", "win32", "freebsd"] as const) {

22+

expect(

23+

wrapArgvForChildOomScoreRaise(argv, { platform, env: {}, shellAvailable: () => true }),

24+

).toEqual(argv);

25+

}

26+

});

27+28+

it("respects the OPENCLAW_CHILD_OOM_SCORE_ADJ opt-out", () => {

29+

for (const value of ["0", "false", "FALSE", "no", "off"]) {

30+

expect(

31+

wrapArgvForChildOomScoreRaise(argv, {

32+

...linux,

33+

env: { OPENCLAW_CHILD_OOM_SCORE_ADJ: value },

34+

}),

35+

).toEqual(argv);

36+

}

37+

});

38+39+

it("skips wrap when /bin/sh is unavailable (distroless/scratch)", () => {

40+

expect(wrapArgvForChildOomScoreRaise(argv, linuxNoShell)).toEqual(argv);

41+

});

42+43+

it("does not double-wrap already-wrapped argv", () => {

44+

const once = wrapArgvForChildOomScoreRaise(argv, linux);

45+

const twice = wrapArgvForChildOomScoreRaise(once, linux);

46+

expect(twice).toEqual(once);

47+

});

48+49+

it("returns empty argv unchanged", () => {

50+

expect(wrapArgvForChildOomScoreRaise([], linux)).toEqual([]);

51+

});

52+53+

it("skips wrap for command names that exec could parse as options", () => {

54+

expect(wrapArgvForChildOomScoreRaise(["-p", "node"], linux)).toEqual(["-p", "node"]);

55+

});

56+

});

57+58+

describe("prepareOomScoreAdjustedSpawn", () => {

59+

it("returns command, args, and hardened env when wrap applies", () => {

60+

const result = prepareOomScoreAdjustedSpawn("/usr/bin/node", ["run.js"], {

61+

...linux,

62+

env: { PATH: "/usr/bin", BASH_ENV: "/tmp/bashenv", ENV: "/tmp/env", CDPATH: "/tmp" },

63+

});

64+

expect(result).toEqual({

65+

command: "/bin/sh",

66+

args: ["-c", wrapScript, "/usr/bin/node", "run.js"],

67+

env: { PATH: "/usr/bin" },

68+

wrapped: true,

69+

});

70+

});

71+72+

it("preserves the spawn shape when wrap does not apply", () => {

73+

const env = { PATH: "/usr/bin" };

74+

expect(

75+

prepareOomScoreAdjustedSpawn("/usr/bin/node", ["run.js"], {

76+

platform: "darwin",

77+

env,

78+

shellAvailable: () => true,

79+

}),

80+

).toEqual({

81+

command: "/usr/bin/node",

82+

args: ["run.js"],

83+

env,

84+

wrapped: false,

85+

});

86+

});

87+

});

88+89+

describe("hardenedEnvForChildOomWrap", () => {

90+

const tainted = { PATH: "/usr/bin", BASH_ENV: "/tmp/evil.sh", ENV: "/tmp/evil", CDPATH: "/tmp" };

91+92+

it("strips shell-init keys when wrap applies", () => {

93+

expect(hardenedEnvForChildOomWrap(tainted, linux)).toEqual({ PATH: "/usr/bin" });

94+

});

95+96+

it("preserves baseEnv (including undefined) when wrap does not apply", () => {

97+

expect(hardenedEnvForChildOomWrap(tainted, linuxNoShell)).toBe(tainted);

98+

expect(

99+

hardenedEnvForChildOomWrap(undefined, { platform: "darwin", shellAvailable: () => true }),

100+

).toBeUndefined();

101+

expect(

102+

hardenedEnvForChildOomWrap(tainted, { ...linux, env: { OPENCLAW_CHILD_OOM_SCORE_ADJ: "0" } }),

103+

).toBe(tainted);

104+

});

105+

});