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

推荐订阅源

有赞技术团队
有赞技术团队
G
Google Developers Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
P
Proofpoint News Feed
V
Visual Studio Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 叶小钗
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
H
Help Net Security
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
量子位
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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): validate docker log limits · openclaw/openclaw@...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -4,14 +4,39 @@

44

# They centralize temporary log naming and the small success/failure print

55

# pattern used by Docker scenario scripts.

667+

docker_e2e_normalize_positive_int_value() {

8+

local label="${1:?missing value label}"

9+

local value="${2-}"

10+

if [[ ! "$value" =~ ^[0-9]+$ ]] || (( 10#$value < 1 )); then

11+

echo "invalid $label: $value" >&2

12+

return 2

13+

fi

14+

printf '%s\n' "$((10#$value))"

15+

}

16+17+

docker_e2e_read_positive_int_env() {

18+

local name="${1:?missing environment variable name}"

19+

local fallback="${2:?missing fallback value}"

20+

local value="${!name-}"

21+

if [ -z "${!name+x}" ]; then

22+

value="$fallback"

23+

fi

24+

docker_e2e_normalize_positive_int_value "$name" "$value"

25+

}

26+727

run_logged() {

828

local label="$1"

929

shift

30+

docker_e2e_read_positive_int_env OPENCLAW_DOCKER_E2E_LOG_PRINT_BYTES 65536 >/dev/null || return $?

1031

local log_file

1132

log_file="$(docker_e2e_run_log "$label")"

1233

if ! "$@" >"$log_file" 2>&1; then

13-

docker_e2e_print_log "$log_file"

34+

local print_status=0

35+

docker_e2e_print_log "$log_file" || print_status="$?"

1436

rm -f "$log_file"

37+

if [ "$print_status" -ne 0 ]; then

38+

return "$print_status"

39+

fi

1540

return 1

1641

fi

1742

rm -f "$log_file"

@@ -20,26 +45,36 @@ run_logged() {

2045

run_logged_print() {

2146

local label="$1"

2247

shift

48+

docker_e2e_read_positive_int_env OPENCLAW_DOCKER_E2E_LOG_PRINT_BYTES 65536 >/dev/null || return $?

2349

local log_file

2450

log_file="$(docker_e2e_run_log "$label")"

2551

if ! "$@" >"$log_file" 2>&1; then

26-

docker_e2e_print_log "$log_file"

52+

local print_status=0

53+

docker_e2e_print_log "$log_file" || print_status="$?"

2754

rm -f "$log_file"

55+

if [ "$print_status" -ne 0 ]; then

56+

return "$print_status"

57+

fi

2858

return 1

2959

fi

30-

docker_e2e_print_log "$log_file"

60+

docker_e2e_print_log "$log_file" || {

61+

local print_status="$?"

62+

rm -f "$log_file"

63+

return "$print_status"

64+

}

3165

rm -f "$log_file"

3266

}

33673468

run_logged_print_heartbeat() {

3569

local label="$1"

3670

local interval_seconds="$2"

3771

shift 2

38-

if ! [[ "$interval_seconds" =~ ^[0-9]+$ ]] || [ "$interval_seconds" -lt 1 ]; then

39-

interval_seconds="30"

40-

else

41-

interval_seconds="$((10#$interval_seconds))"

42-

fi

72+

docker_e2e_read_positive_int_env OPENCLAW_DOCKER_E2E_LOG_PRINT_BYTES 65536 >/dev/null || return $?

73+

interval_seconds="$(docker_e2e_normalize_positive_int_value "Docker E2E log heartbeat interval" "$interval_seconds")" || return $?

74+

local heartbeat_term_grace_seconds

75+

heartbeat_term_grace_seconds="$(

76+

docker_e2e_read_positive_int_env OPENCLAW_DOCKER_E2E_HEARTBEAT_TERM_GRACE_SECONDS 30

77+

)" || return $?

4378

local log_file

4479

log_file="$(docker_e2e_run_log "$label")"

4580

local command_pid=""

@@ -55,14 +90,8 @@ run_logged_print_heartbeat() {

5590

return 0

5691

fi

5792

kill -TERM "$command_pid" 2>/dev/null || true

58-

local grace_seconds="${OPENCLAW_DOCKER_E2E_HEARTBEAT_TERM_GRACE_SECONDS:-30}"

59-

if ! [[ "$grace_seconds" =~ ^[0-9]+$ ]] || [ "$grace_seconds" -lt 1 ]; then

60-

grace_seconds="30"

61-

else

62-

grace_seconds="$((10#$grace_seconds))"

63-

fi

6493

local wait_attempt

65-

for wait_attempt in $(seq 1 "$((grace_seconds * 10))"); do

94+

for wait_attempt in $(seq 1 "$((heartbeat_term_grace_seconds * 10))"); do

6695

if ! kill -0 "$command_pid" 2>/dev/null; then

6796

return 0

6897

fi

@@ -130,7 +159,11 @@ run_logged_print_heartbeat() {

130159

wait "$command_pid"

131160

status=$?

132161

set -e

133-

docker_e2e_print_log "$log_file"

162+

docker_e2e_print_log "$log_file" || {

163+

local print_status="$?"

164+

cleanup_heartbeat_command 0

165+

return "$print_status"

166+

}

134167

cleanup_heartbeat_command 0

135168

return "$status"

136169

}

@@ -144,12 +177,8 @@ docker_e2e_run_log() {

144177145178

docker_e2e_print_log() {

146179

local log_file="$1"

147-

local max_bytes="${OPENCLAW_DOCKER_E2E_LOG_PRINT_BYTES:-65536}"

148-

if ! [[ "$max_bytes" =~ ^[0-9]+$ ]] || [ "$max_bytes" -lt 1 ]; then

149-

max_bytes="65536"

150-

else

151-

max_bytes="$((10#$max_bytes))"

152-

fi

180+

local max_bytes

181+

max_bytes="$(docker_e2e_read_positive_int_env OPENCLAW_DOCKER_E2E_LOG_PRINT_BYTES 65536)" || return $?

153182

if [ ! -f "$log_file" ]; then

154183

return 0

155184

fi