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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - 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(e2e): reject loose live plugin timeouts · openclaw/op...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
11

import { spawnSync } from "node:child_process";

2-

import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";

2+

import { mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";

33

import { tmpdir } from "node:os";

44

import path from "node:path";

55

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

@@ -12,22 +12,61 @@ function writeJson(filePath: string, value: unknown) {

1212

}

13131414

function runAssertion(root: string, env: Record<string, string> = {}) {

15-

return spawnSync(process.execPath, [ASSERTIONS_SCRIPT, "assert-agent-turn"], {

15+

return runAssertionCommand("assert-agent-turn", root, env);

16+

}

17+18+

function runAssertionCommand(command: string, root: string, env: Record<string, string> = {}) {

19+

return spawnSync(process.execPath, [ASSERTIONS_SCRIPT, command], {

1620

encoding: "utf8",

1721

env: {

1822

...process.env,

1923

EXPECTED_SLUG: "live-plugin-slug",

2024

HOME: root,

25+

MODEL_REF: "openai/gpt-5.5",

2126

OPENCLAW_LIVE_PLUGIN_TOOL_AGENT_ERROR_PATH: path.join(root, "agent.err"),

2227

OPENCLAW_LIVE_PLUGIN_TOOL_AGENT_OUTPUT_PATH: path.join(root, "agent.json"),

2328

OPENCLAW_STATE_DIR: path.join(root, "state"),

29+

PLUGIN_ID: "e2e-live-plugin-tool",

30+

PLUGIN_NAME: "@openclaw/e2e-live-plugin-tool",

31+

PLUGIN_VERSION: "1.0.0",

32+

SEED: "live plugin slug",

2433

TOOL_NAME: "e2e_slug_probe",

2534

...env,

2635

},

2736

});

2837

}

29383039

describe("live plugin tool assertions", () => {

40+

it("rejects loose timeout env values instead of parsing numeric prefixes", () => {

41+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-live-plugin-tool-"));

42+

try {

43+

const result = runAssertionCommand("configure", root, {

44+

OPENCLAW_LIVE_PLUGIN_TOOL_TIMEOUT_SECONDS: "1e3",

45+

});

46+47+

expect(result.status).not.toBe(0);

48+

expect(result.stderr).toContain("invalid OPENCLAW_LIVE_PLUGIN_TOOL_TIMEOUT_SECONDS: 1e3");

49+

} finally {

50+

rmSync(root, { force: true, recursive: true });

51+

}

52+

});

53+54+

it("writes strict positive timeout values into generated config", () => {

55+

const root = mkdtempSync(path.join(tmpdir(), "openclaw-live-plugin-tool-"));

56+

try {

57+

const result = runAssertionCommand("configure", root, {

58+

OPENCLAW_LIVE_PLUGIN_TOOL_TIMEOUT_SECONDS: "240",

59+

});

60+61+

expect(result.status).toBe(0);

62+

const config = JSON.parse(readFileSync(path.join(root, "state", "openclaw.json"), "utf8"));

63+

expect(config.models.providers.openai.timeoutSeconds).toBe(240);

64+

expect(config.agents.defaults.timeoutSeconds).toBe(240);

65+

} finally {

66+

rmSync(root, { force: true, recursive: true });

67+

}

68+

});

69+3170

it("streams session transcripts across chunk boundaries", () => {

3271

const root = mkdtempSync(path.join(tmpdir(), "openclaw-live-plugin-tool-"));

3372

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