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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
refactor: share e2e text file helpers · openclaw/openclaw...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,5 +1,6 @@

11

import fs from "node:fs";

22

import path from "node:path";

3+

import { readTextFileTail, tailText } from "../text-file-utils.mjs";

34
45

const command = process.argv[2];

56

const readJson = (file) => JSON.parse(fs.readFileSync(file, "utf8"));

@@ -49,36 +50,6 @@ function agentErrorPath() {

4950

return process.env.OPENCLAW_LIVE_PLUGIN_TOOL_AGENT_ERROR_PATH || "/tmp/openclaw-agent.err";

5051

}

5152
52-

function tailText(text, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

53-

if (Buffer.byteLength(text, "utf8") <= maxBytes) {

54-

return text;

55-

}

56-

return Buffer.from(text, "utf8").subarray(-maxBytes).toString("utf8");

57-

}

58-
59-

function readTextFileTail(file, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

60-

let stat;

61-

try {

62-

stat = fs.statSync(file);

63-

} catch {

64-

return "";

65-

}

66-

if (!stat.isFile() || stat.size <= 0) {

67-

return "";

68-

}

69-
70-

const length = Math.min(maxBytes, stat.size);

71-

const start = stat.size - length;

72-

const fd = fs.openSync(file, "r");

73-

try {

74-

const buffer = Buffer.alloc(length);

75-

const bytesRead = fs.readSync(fd, buffer, 0, length, start);

76-

return buffer.subarray(0, bytesRead).toString("utf8");

77-

} finally {

78-

fs.closeSync(fd);

79-

}

80-

}

81-
8253

function scanFileForNeedles(file, pendingNeedles) {

8354

let stat;

8455

try {

@@ -381,9 +352,9 @@ function assertAgentTurn() {

381352

const response = JSON.parse(stdout);

382353

const text = (response.payloads || []).map((payload) => payload?.text || "").join("\n");

383354

if (!text.includes(expected)) {

384-

const stderrTail = readTextFileTail(errorPath);

355+

const stderrTail = readTextFileTail(errorPath, ERROR_DETAIL_TAIL_BYTES);

385356

throw new Error(

386-

`live agent reply did not contain tool slug ${expected}:\nstdout tail=${tailText(stdout)}\nstderr tail=${stderrTail}`,

357+

`live agent reply did not contain tool slug ${expected}:\nstdout tail=${tailText(stdout, ERROR_DETAIL_TAIL_BYTES)}\nstderr tail=${stderrTail}`,

387358

);

388359

}

389360

const sessionsDir = path.join(stateDir(), "agents", "main", "sessions");

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

import fs from "node:fs";

2+

import { readTextFileTail, tailText } from "../text-file-utils.mjs";

23
34

const command = process.argv[2];

45

@@ -7,36 +8,6 @@ const REQUEST_LOG_SCAN_CHUNK_BYTES = 64 * 1024;

78

const RESPONSE_PREVIEW_BYTES = 8 * 1024;

89

const RESPONSE_PREVIEW_COUNT = 5;

910
10-

function tailText(text, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

11-

if (Buffer.byteLength(text, "utf8") <= maxBytes) {

12-

return text;

13-

}

14-

return Buffer.from(text, "utf8").subarray(-maxBytes).toString("utf8");

15-

}

16-
17-

function readTextFileTail(file, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

18-

let stat;

19-

try {

20-

stat = fs.statSync(file);

21-

} catch {

22-

return "";

23-

}

24-

if (!stat.isFile() || stat.size <= 0) {

25-

return "";

26-

}

27-
28-

const length = Math.min(maxBytes, stat.size);

29-

const start = stat.size - length;

30-

const fd = fs.openSync(file, "r");

31-

try {

32-

const buffer = Buffer.alloc(length);

33-

const bytesRead = fs.readSync(fd, buffer, 0, length, start);

34-

return buffer.subarray(0, bytesRead).toString("utf8");

35-

} finally {

36-

fs.closeSync(fd);

37-

}

38-

}

39-
4011

function scanTextFileLines(file, onLine) {

4112

const fd = fs.openSync(file, "r");

4213

try {

@@ -134,7 +105,7 @@ function assertSuccessRequest() {

134105

const { responseCount, success, recentResponses } = scanSuccessRequest(logPath);

135106

if (responseCount < 1) {

136107

throw new Error(

137-

`mock OpenAI /v1/responses was not used. Request log tail: ${readTextFileTail(logPath)}`,

108+

`mock OpenAI /v1/responses was not used. Request log tail: ${readTextFileTail(logPath, ERROR_DETAIL_TAIL_BYTES)}`,

138109

);

139110

}

140111

if (!success) {

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import {

55

assertOpenAiRequestLogUsed,

66

} from "../agent-turn-output.mjs";

77

import { applyMockOpenAiModelConfig } from "../fixtures/mock-openai-config.mjs";

8+

import { readTextFileTail } from "../text-file-utils.mjs";

89
910

const command = process.argv[2];

1011

@@ -22,36 +23,6 @@ function readJson(file) {

2223

return JSON.parse(fs.readFileSync(file, "utf8"));

2324

}

2425
25-

function tailText(text, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

26-

if (Buffer.byteLength(text, "utf8") <= maxBytes) {

27-

return text;

28-

}

29-

return Buffer.from(text, "utf8").subarray(-maxBytes).toString("utf8");

30-

}

31-
32-

function readTextFileTail(file, maxBytes = ERROR_DETAIL_TAIL_BYTES) {

33-

let stat;

34-

try {

35-

stat = fs.statSync(file);

36-

} catch {

37-

return "";

38-

}

39-

if (!stat.isFile() || stat.size <= 0) {

40-

return "";

41-

}

42-
43-

const length = Math.min(maxBytes, stat.size);

44-

const start = stat.size - length;

45-

const fd = fs.openSync(file, "r");

46-

try {

47-

const buffer = Buffer.alloc(length);

48-

const bytesRead = fs.readSync(fd, buffer, 0, length, start);

49-

return buffer.subarray(0, bytesRead).toString("utf8");

50-

} finally {

51-

fs.closeSync(fd);

52-

}

53-

}

54-
5526

function fileContainsText(file, needle) {

5627

let stat;

5728

try {

@@ -142,7 +113,7 @@ function assertFileContains() {

142113

const needle = process.argv[4];

143114

assert(

144115

fileContainsText(file, needle),

145-

`${file} did not contain ${needle}. Output tail: ${readTextFileTail(file)}`,

116+

`${file} did not contain ${needle}. Output tail: ${readTextFileTail(file, ERROR_DETAIL_TAIL_BYTES)}`,

146117

);

147118

}

148119
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,31 @@

1+

import fs from "node:fs";

2+
3+

export function tailText(text, maxBytes) {

4+

if (Buffer.byteLength(text, "utf8") <= maxBytes) {

5+

return text;

6+

}

7+

return Buffer.from(text, "utf8").subarray(-maxBytes).toString("utf8");

8+

}

9+
10+

export function readTextFileTail(file, maxBytes) {

11+

let stat;

12+

try {

13+

stat = fs.statSync(file);

14+

} catch {

15+

return "";

16+

}

17+

if (!stat.isFile() || stat.size <= 0) {

18+

return "";

19+

}

20+
21+

const length = Math.min(maxBytes, stat.size);

22+

const start = stat.size - length;

23+

const fd = fs.openSync(file, "r");

24+

try {

25+

const buffer = Buffer.alloc(length);

26+

const bytesRead = fs.readSync(fd, buffer, 0, length, start);

27+

return buffer.subarray(0, bytesRead).toString("utf8");

28+

} finally {

29+

fs.closeSync(fd);

30+

}

31+

}