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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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
docs: document cli runner tests · openclaw/openclaw@a44c5ee
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests cron before_agent_reply gating at the CLI runner entrypoint. */

12

import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

23

import { SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js";

34

import { cliBackendLog } from "./cli-runner/log.js";

@@ -74,6 +75,7 @@ const baseRunParams = {

7475

let runCliAgent: typeof import("./cli-runner.js").runCliAgent;

7576
7677

function makeStubContext(params: typeof baseRunParams & { trigger?: string }) {

78+

// Stub only the prepared context shape runCliAgent needs after the hook gate.

7779

return {

7880

params,

7981

started: Date.now(),

@@ -152,6 +154,7 @@ describe("runCliAgent cron before_agent_reply seam", () => {

152154

const syntheticTurnLog = logInfoSpy.mock.calls

153155

.map(([message]) => message)

154156

.find((message) => message.startsWith("cli synthetic turn:"));

157+

// Synthetic turn logs prove the branch without leaking hook reply text.

155158

expect(syntheticTurnLog).toContain("provider=codex-cli");

156159

expect(syntheticTurnLog).toContain("model=<synthetic>");

157160

expect(syntheticTurnLog).toContain("requestedModel=gpt-5.5");

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests bounded transcript-flush probing before reusing CLI bindings. */

12

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

23

import {

34

isCliBindingFlushed,

@@ -65,6 +66,8 @@ describe("isCliBindingFlushed", () => {

6566

it("schedules at most 0 + 50 + 150ms of delay across the bounded retry", async () => {

6667

vi.useFakeTimers();

6768

try {

69+

// Fake timers enforce the retry contract without introducing wall-clock

70+

// sleeps into this import-heavy agent test.

6871

const probe = vi.fn(async () => false);

6972

setCliRunnerTestDeps({ claudeCliSessionTranscriptHasContent: probe });

7073
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** E2E proof for CLI runner bundle-MCP subprocess execution. */

12

import fs from "node:fs/promises";

23

import os from "node:os";

34

import path from "node:path";

@@ -47,6 +48,7 @@ function isProcessAlive(pid: number): boolean {

4748

}

4849
4950

async function resetBundleMcpPluginState() {

51+

// Bundle MCP setup caches plugin discovery; reset between temp plugin roots.

5052

const { resetPluginLoaderTestStateForTest } = await import("../plugins/loader.test-fixtures.js");

5153

const { clearPluginSetupRegistryCache } = await import("../plugins/setup-registry.js");

5254

resetPluginLoaderTestStateForTest();

@@ -57,6 +59,8 @@ async function createBundleMcpFixture(params: {

5759

liveSession?: boolean;

5860

tempPrefix: string;

5961

}): Promise<BundleMcpFixture> {

62+

// Fixture creates a real temp plugin + MCP server + fake CLI binary, but keeps

63+

// it isolated from persisted plugin registry state.

6064

await resetBundleMcpPluginState();

6165

const envSnapshot = captureEnv([

6266

"HOME",

@@ -143,6 +147,8 @@ async function prepareBundleMcpExecutionContext(params: {

143147

sessionId: string;

144148

workspaceDir: string;

145149

}): Promise<PreparedCliRunContext> {

150+

// Exercise bundle MCP config preparation while bypassing unrelated full

151+

// runCliAgent context assembly.

146152

const { prepareCliBundleMcpConfig } = await import("./cli-runner/bundle-mcp.js");

147153

const preparedBackend = (await prepareCliBundleMcpConfig({

148154

enabled: true,

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests CLI runner integration with context-engine lifecycle hooks. */

12

import type { AgentMessage } from "openclaw/plugin-sdk/agent-core";

23

import { afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

34

import type { ContextEngine } from "../context-engine/types.js";

@@ -41,6 +42,7 @@ function textMessage(role: "user" | "assistant", text: string, timestamp: number

4142

}

4243
4344

function createContextEngine(overrides: Partial<ContextEngine> = {}): ContextEngine {

45+

// Minimal context engine keeps tests focused on runner lifecycle calls.

4446

return {

4547

info: { id: "test-context-engine", name: "Test context engine" },

4648

ingest: vi.fn(async () => ({ ingested: true })),

@@ -62,6 +64,8 @@ function createMaintenanceResult() {

6264

}

6365
6466

function buildPreparedContext(contextEngine: ContextEngine): PreparedCliRunContext {

67+

// Prepared contexts mirror the shape produced by prepare.runtime without

68+

// loading full backend setup in every lifecycle assertion.

6569

const backend = {

6670

command: "claude",

6771

args: ["--print"],

@@ -115,6 +119,7 @@ function buildPreparedContext(contextEngine: ContextEngine): PreparedCliRunConte

115119

}

116120
117121

function expectMessageText(message: AgentMessage | undefined, expected: string): void {

122+

// Context engines may use legacy string content or structured text blocks.

118123

expect(message).toBeDefined();

119124

const content = (message as { content?: unknown } | undefined)?.content;

120125

if (typeof content === "string") {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests CLI runner prompt/image/system-prompt helper utilities. */

12

import fs from "node:fs/promises";

23

import path from "node:path";

34

import { MAX_IMAGE_BYTES } from "@openclaw/media-core/constants";

@@ -21,6 +22,7 @@ import * as toolImages from "./tool-images.js";

2122
2223

describe("loadPromptRefImages", () => {

2324

beforeEach(() => {

25+

// Restore spies because these helpers use real modules with per-test mocks.

2426

vi.restoreAllMocks();

2527

});

2628

@@ -51,6 +53,7 @@ describe("loadPromptRefImages", () => {

5153

}),

5254

).resolves.toStrictEqual([]);

5355
56+

// Cached image paths are generated output, not fresh user references.

5457

expect(loadImageFromRefSpy).not.toHaveBeenCalled();

5558

expect(sanitizeImageBlocksSpy).not.toHaveBeenCalled();

5659

});

@@ -149,6 +152,8 @@ describe("buildCliArgs", () => {

149152

});

150153
151154

it("strips the internal cache boundary from CLI system prompt args", () => {

155+

// The boundary is internal prompt-cache metadata and must never reach the

156+

// downstream CLI as literal text.

152157

expect(

153158

buildCliArgs({

154159

backend: {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests CLI runner reliability paths for hooks, transcripts, failover, and reply ops. */

12

import fs from "node:fs";

23

import os from "node:os";

34

import path from "node:path";

@@ -46,6 +47,7 @@ type HookRunnerGlobalStateForTest = {

4647

};

4748
4849

function setHookRunnerForTest(hookRunner: unknown): void {

50+

// Keep the module-level hook runner singleton aligned with the mocked getter.

4951

mockGetGlobalHookRunner.mockReturnValue(hookRunner as never);

5052

const globalStore = globalThis as Record<PropertyKey, unknown>;

5153

const state = (globalStore[hookRunnerGlobalStateKey] as

@@ -60,6 +62,8 @@ function setHookRunnerForTest(hookRunner: unknown): void {

6062

}

6163
6264

function createSessionFile(params?: { history?: Array<{ role: "user"; content: string }> }) {

65+

// Session files use the real JSONL shape so transcript/history readers stay

66+

// covered without spinning up a full CLI process.

6367

const dir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-cli-hooks-"));

6468

vi.stubEnv("OPENCLAW_STATE_DIR", dir);

6569

const sessionFile = path.join(dir, "agents", "main", "sessions", "s1.jsonl");

@@ -134,6 +138,7 @@ function buildPreparedContext(params?: {

134138

model?: string;

135139

allowEmptyAssistantReplyAsSilent?: boolean;

136140

}): PreparedCliRunContext {

141+

// Common prepared context fixture for runPreparedCliAgent reliability branches.

137142

const provider = params?.provider ?? "codex-cli";

138143

const model = params?.model ?? "gpt-5.4";

139144

const backend = {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Tests CLI runner process spawning, logging, diagnostics, and live-session paths. */

12

import fs from "node:fs/promises";

23

import os from "node:os";

34

import path from "node:path";

@@ -87,6 +88,8 @@ function buildPreparedCliRunContext(params: {

8788

workspaceDir?: string;

8889

timeoutMs?: number;

8990

}): PreparedCliRunContext {

91+

// Produces a prepared context without invoking prepare.runtime, keeping spawn

92+

// assertions focused on execute/runtime behavior.

9093

const workspaceDir = params.workspaceDir ?? "/tmp";

9194

const baseBackend =

9295

params.provider === "claude-cli"

@@ -198,6 +201,8 @@ async function expectRejectsWithFields(

198201

promise: Promise<unknown>,

199202

expected: Record<string, unknown>,

200203

): Promise<Record<string, unknown>> {

204+

// Failover errors carry structured fields; this helper verifies them while

205+

// preserving the original object for deeper assertions.

201206

try {

202207

await promise;

203208

} catch (error) {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

/** Shared CLI runner test doubles for supervisor, bootstrap, and heartbeat seams. */

12

import type { Mock } from "vitest";

23

import { beforeEach, vi } from "vitest";

34

import type { requestHeartbeat } from "../infra/heartbeat-wake.js";

@@ -69,6 +70,8 @@ setCliRunnerExecuteTestDeps({

6970

wait: async () => {

7071

const exit = await wait();

7172

if (params.captureOutput === false) {

73+

// Production streams stdout/stderr through callbacks; replay captured

74+

// output once so tests cover streaming and captured-output paths.

7275

if (!stdoutDelivered && exit.stdout) {

7376

params.onStdout?.(exit.stdout);

7477

}