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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare 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(e2e): stream release scenario log checks · openclaw/o...
vincentkoc · 2026-05-28 · via Recent Commits to openclaw:main

@@ -8,6 +8,10 @@ import { applyMockOpenAiModelConfig } from "../fixtures/mock-openai-config.mjs";

8899

const command = process.argv[2];

101011+

const SCAN_CHUNK_BYTES = 64 * 1024;

12+

const SCAN_CARRY_CHARS = 256;

13+

const ERROR_DETAIL_TAIL_BYTES = 16 * 1024;

14+1115

function assert(condition, message) {

1216

if (!condition) {

1317

throw new Error(message);

@@ -18,6 +22,71 @@ function readJson(file) {

1822

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

1923

}

202425+

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+55+

function fileContainsText(file, needle) {

56+

let stat;

57+

try {

58+

stat = fs.statSync(file);

59+

} catch {

60+

return false;

61+

}

62+

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

63+

return false;

64+

}

65+66+

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

67+

try {

68+

const buffer = Buffer.alloc(Math.min(SCAN_CHUNK_BYTES, stat.size));

69+

let carry = "";

70+

let offset = 0;

71+

while (offset < stat.size) {

72+

const bytesToRead = Math.min(buffer.length, stat.size - offset);

73+

const bytesRead = fs.readSync(fd, buffer, 0, bytesToRead, offset);

74+

if (bytesRead <= 0) {

75+

break;

76+

}

77+

offset += bytesRead;

78+

const text = carry + buffer.subarray(0, bytesRead).toString("utf8");

79+

if (text.includes(needle)) {

80+

return true;

81+

}

82+

carry = text.slice(-Math.max(SCAN_CARRY_CHARS, needle.length - 1));

83+

}

84+

return false;

85+

} finally {

86+

fs.closeSync(fd);

87+

}

88+

}

89+2190

function configPath() {

2291

return (

2392

process.env.OPENCLAW_CONFIG_PATH ??

@@ -71,8 +140,10 @@ function assertAgentTurn() {

71140

function assertFileContains() {

72141

const file = process.argv[3];

73142

const needle = process.argv[4];

74-

const raw = fs.readFileSync(file, "utf8");

75-

assert(raw.includes(needle), `${file} did not contain ${needle}. Output: ${raw}`);

143+

assert(

144+

fileContainsText(file, needle),

145+

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

146+

);

76147

}

7714878149

function assertPackageVersion() {

@@ -98,8 +169,10 @@ function assertImageDescribe() {

98169

const output = payload.outputs?.[0];

99170

assert(output?.text?.includes("OPENCLAW_E2E_OK"), "image description marker missing");

100171

assert(output.provider === "openai", `unexpected image provider: ${output?.provider}`);

101-

const requestLog = fs.existsSync(requestLogPath) ? fs.readFileSync(requestLogPath, "utf8") : "";

102-

assert(requestLog.includes("/v1/responses"), "image describe did not hit Responses API");

172+

assert(

173+

fileContainsText(requestLogPath, "/v1/responses"),

174+

"image describe did not hit Responses API",

175+

);

103176

}

104177105178

function assertImageGenerate() {

@@ -112,8 +185,10 @@ function assertImageGenerate() {

112185

assert(output?.path && fs.existsSync(output.path), `generated image missing: ${output?.path}`);

113186

assert(output.mimeType === "image/png", `unexpected generated mime type: ${output.mimeType}`);

114187

assert(payload.provider === "openai", `unexpected generation provider: ${payload.provider}`);

115-

const requestLog = fs.existsSync(requestLogPath) ? fs.readFileSync(requestLogPath, "utf8") : "";

116-

assert(requestLog.includes("/v1/images/generations"), "image generation endpoint was not used");

188+

assert(

189+

fileContainsText(requestLogPath, "/v1/images/generations"),

190+

"image generation endpoint was not used",

191+

);

117192

}

118193119194

function assertMemorySearch() {