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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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: trim remaining hotspot tests · openclaw/openclaw@6b...
steipete · 2026-04-17 · via Recent Commits to openclaw:main

@@ -920,7 +920,7 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

920920

});

921921922922

for (const runtime of ["bun", "deno", "tsx", "jiti"] as const) {

923-

it(`denies approval-based execution when a ${runtime} script operand changes after approval`, async () => {

923+

it(`validates approved ${runtime} script operand stability`, async () => {

924924

await withFakeRuntimeOnPath({

925925

runtime,

926926

run: async () => {

@@ -959,23 +959,15 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

959959

} finally {

960960

fs.rmSync(tmp, { recursive: true, force: true });

961961

}

962-

},

963-

});

964-

});

965-966-

it(`keeps approved ${runtime} script execution working when the script is unchanged`, async () => {

967-

await withFakeRuntimeOnPath({

968-

runtime,

969-

run: async () => {

970-

const tmp = fs.mkdtempSync(

962+

const stableTmp = fs.mkdtempSync(

971963

path.join(os.tmpdir(), `openclaw-approval-${runtime}-script-stable-`),

972964

);

973-

const fixture = createRuntimeScriptOperandFixture({ tmp, runtime });

974-

fs.writeFileSync(fixture.scriptPath, fixture.initialBody);

965+

const stableFixture = createRuntimeScriptOperandFixture({ tmp: stableTmp, runtime });

966+

fs.writeFileSync(stableFixture.scriptPath, stableFixture.initialBody);

975967

try {

976968

const prepared = buildSystemRunApprovalPlan({

977-

command: fixture.command,

978-

cwd: tmp,

969+

command: stableFixture.command,

970+

cwd: stableTmp,

979971

});

980972

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

981973

if (!prepared.ok) {

@@ -987,7 +979,7 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

987979

command: prepared.plan.argv,

988980

rawCommand: prepared.plan.commandText,

989981

systemRunPlan: prepared.plan,

990-

cwd: prepared.plan.cwd ?? tmp,

982+

cwd: prepared.plan.cwd ?? stableTmp,

991983

approved: true,

992984

security: "full",

993985

ask: "off",

@@ -996,7 +988,7 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

996988

expect(runCommand).toHaveBeenCalledTimes(1);

997989

expectInvokeOk(sendInvokeResult);

998990

} finally {

999-

fs.rmSync(tmp, { recursive: true, force: true });

991+

fs.rmSync(stableTmp, { recursive: true, force: true });

1000992

}

1001993

},

1002994

});

@@ -1310,32 +1302,33 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

13101302

});

13111303

});

131213041313-

it.each([

1314-

{

1315-

command: ["python3", "-c", "print('hi')"],

1316-

expected: "python3 -c requires explicit approval in strictInlineEval mode",

1317-

},

1318-

{

1319-

command: ["awk", 'BEGIN{system("id")}', "/dev/null"],

1320-

expected: "awk inline program requires explicit approval in strictInlineEval mode",

1321-

},

1322-

{

1323-

command: ["find", ".", "-exec", "id", "{}", ";"],

1324-

expected: "find -exec requires explicit approval in strictInlineEval mode",

1325-

},

1326-

{

1327-

command: ["xargs", "id"],

1328-

expected: "xargs inline command requires explicit approval in strictInlineEval mode",

1329-

},

1330-

{

1331-

command: ["make", "-f", "evil.mk"],

1332-

expected: "make -f requires explicit approval in strictInlineEval mode",

1333-

},

1334-

{

1335-

command: ["sed", "s/.*/id/e", "/dev/null"],

1336-

expected: "sed inline program requires explicit approval in strictInlineEval mode",

1337-

},

1338-

] as const)("requires explicit approval for strict inline-eval carrier %j", async (testCase) => {

1305+

it("requires explicit approval for strict inline-eval carriers", async () => {

1306+

const cases = [

1307+

{

1308+

command: ["python3", "-c", "print('hi')"],

1309+

expected: "python3 -c requires explicit approval in strictInlineEval mode",

1310+

},

1311+

{

1312+

command: ["awk", 'BEGIN{system("id")}', "/dev/null"],

1313+

expected: "awk inline program requires explicit approval in strictInlineEval mode",

1314+

},

1315+

{

1316+

command: ["find", ".", "-exec", "id", "{}", ";"],

1317+

expected: "find -exec requires explicit approval in strictInlineEval mode",

1318+

},

1319+

{

1320+

command: ["xargs", "id"],

1321+

expected: "xargs inline command requires explicit approval in strictInlineEval mode",

1322+

},

1323+

{

1324+

command: ["make", "-f", "evil.mk"],

1325+

expected: "make -f requires explicit approval in strictInlineEval mode",

1326+

},

1327+

{

1328+

command: ["sed", "s/.*/id/e", "/dev/null"],

1329+

expected: "sed inline program requires explicit approval in strictInlineEval mode",

1330+

},

1331+

] as const;

13391332

setRuntimeConfigSnapshot({

13401333

tools: {

13411334

exec: {

@@ -1344,22 +1337,24 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

13441337

},

13451338

});

13461339

try {

1347-

const { runCommand, sendInvokeResult, sendNodeEvent } = await runSystemInvoke({

1348-

preferMacAppExecHost: false,

1349-

command: [...testCase.command],

1350-

security: "full",

1351-

ask: "off",

1352-

});

1340+

for (const testCase of cases) {

1341+

const { runCommand, sendInvokeResult, sendNodeEvent } = await runSystemInvoke({

1342+

preferMacAppExecHost: false,

1343+

command: [...testCase.command],

1344+

security: "full",

1345+

ask: "off",

1346+

});

135313471354-

expect(runCommand).not.toHaveBeenCalled();

1355-

expect(sendNodeEvent).toHaveBeenCalledWith(

1356-

expect.anything(),

1357-

"exec.denied",

1358-

expect.objectContaining({ reason: "approval-required" }),

1359-

);

1360-

expectInvokeErrorMessage(sendInvokeResult, {

1361-

message: testCase.expected,

1362-

});

1348+

expect(runCommand, testCase.command.join(" ")).not.toHaveBeenCalled();

1349+

expect(sendNodeEvent, testCase.command.join(" ")).toHaveBeenCalledWith(

1350+

expect.anything(),

1351+

"exec.denied",

1352+

expect.objectContaining({ reason: "approval-required" }),

1353+

);

1354+

expectInvokeErrorMessage(sendInvokeResult, {

1355+

message: testCase.expected,

1356+

});

1357+

}

13631358

} finally {

13641359

clearRuntimeConfigSnapshot();

13651360

}

@@ -1395,26 +1390,26 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

13951390

}

13961391

});

139713921398-

it.each([

1399-

{ executable: "python3", args: ["-c", "print('hi')"] },

1400-

{ executable: "awk", args: ['BEGIN{system("id")}', "/dev/null"] },

1401-

{ executable: "find", args: [".", "-exec", "id", "{}", ";"] },

1402-

{ executable: "xargs", args: ["id"] },

1403-

{ executable: "sed", args: ["s/.*/id/e", "/dev/null"] },

1404-

] as const)(

1405-

"does not persist allow-always approvals for strict inline-eval carrier %j",

1406-

async (testCase) => {

1407-

setRuntimeConfigSnapshot({

1408-

tools: {

1409-

exec: {

1410-

strictInlineEval: true,

1411-

},

1393+

it("does not persist allow-always approvals for strict inline-eval carriers", async () => {

1394+

const cases = [

1395+

{ executable: "python3", args: ["-c", "print('hi')"] },

1396+

{ executable: "awk", args: ['BEGIN{system("id")}', "/dev/null"] },

1397+

{ executable: "find", args: [".", "-exec", "id", "{}", ";"] },

1398+

{ executable: "xargs", args: ["id"] },

1399+

{ executable: "sed", args: ["s/.*/id/e", "/dev/null"] },

1400+

] as const;

1401+

setRuntimeConfigSnapshot({

1402+

tools: {

1403+

exec: {

1404+

strictInlineEval: true,

14121405

},

1413-

});

1414-

try {

1415-

await withTempApprovalsHome({

1416-

approvals: createAllowlistOnMissApprovals(),

1417-

run: async () => {

1406+

},

1407+

});

1408+

try {

1409+

await withTempApprovalsHome({

1410+

approvals: createAllowlistOnMissApprovals(),

1411+

run: async () => {

1412+

for (const testCase of cases) {

14181413

const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-inline-eval-bin-"));

14191414

try {

14201415

const executablePath = createTempExecutable({

@@ -1437,13 +1432,13 @@ describe("handleSystemRunInvoke mac app exec host routing", () => {

14371432

} finally {

14381433

fs.rmSync(tempDir, { recursive: true, force: true });

14391434

}

1440-

},

1441-

});

1442-

} finally {

1443-

clearRuntimeConfigSnapshot();

1444-

}

1445-

},

1446-

);

1435+

}

1436+

},

1437+

});

1438+

} finally {

1439+

clearRuntimeConfigSnapshot();

1440+

}

1441+

});

1447144214481443

it("persists benign awk allow-always approvals in strict inline-eval mode without reopening inline carriers", async () => {

14491444

setRuntimeConfigSnapshot({