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

推荐订阅源

罗磊的独立博客
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
有赞技术团队
有赞技术团队
Vercel News
Vercel News
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
The Cloudflare Blog
B
Blog
C
Check Point Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
U
Unit 42
D
Docker
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
A
About on SuperTechFans

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
test: share agent state-dir env guard · openclaw/openclaw...
shakkernerd · 2026-06-22 · via Recent Commits to openclaw:main

@@ -25,13 +25,14 @@ import {

2525

resetTaskRegistryForTests,

2626

} from "../../tasks/task-registry.js";

2727

import { withTempDir } from "../../test-helpers/temp-dir.js";

28+

import { captureEnv, setTestEnvValue } from "../../test-utils/env.js";

2829

import { setGatewayDedupeEntry } from "./agent-wait-dedupe.js";

2930

import { agentHandlers } from "./agent.js";

3031

import { chatHandlers } from "./chat.js";

3132

import { expectSubagentFollowupReactivation } from "./subagent-followup.test-helpers.js";

3233

import type { GatewayRequestContext } from "./types.js";

333434-

const ORIGINAL_STATE_DIR = process.env.OPENCLAW_STATE_DIR;

35+

const envSnapshot = captureEnv(["OPENCLAW_STATE_DIR"]);

35363637

const mocks = vi.hoisted(() => ({

3738

loadSessionEntry: vi.fn(),

@@ -402,6 +403,10 @@ function resetTimeConfig() {

402403

vi.useRealTimers();

403404

}

404405406+

function useTestStateDir(root: string): void {

407+

setTestEnvValue("OPENCLAW_STATE_DIR", root);

408+

}

409+405410

async function expectResetCall(expectedMessage: string) {

406411

const call = await waitForAgentCommandCall();

407412

expect(mocks.performGatewaySessionReset).toHaveBeenCalledTimes(1);

@@ -562,11 +567,7 @@ async function invokeAgentIdentityGet(

562567563568

describe("gateway agent handler", () => {

564569

afterEach(() => {

565-

if (ORIGINAL_STATE_DIR === undefined) {

566-

delete process.env.OPENCLAW_STATE_DIR;

567-

} else {

568-

process.env.OPENCLAW_STATE_DIR = ORIGINAL_STATE_DIR;

569-

}

570+

envSnapshot.restore();

570571

resetDetachedTaskLifecycleRuntimeForTests();

571572

resetTaskRegistryForTests();

572573

resetSubagentRegistryForTests({ persist: false });

@@ -3219,7 +3220,7 @@ describe("gateway agent handler", () => {

3219322032203221

it("terminalizes successful async gateway agent runs in the shared task registry", async () => {

32213222

await withTempDir({ prefix: "openclaw-gateway-agent-task-" }, async (root) => {

3222-

process.env.OPENCLAW_STATE_DIR = root;

3223+

useTestStateDir(root);

32233224

resetTaskRegistryForTests();

32243225

primeMainAgentRun();

32253226

@@ -3245,7 +3246,7 @@ describe("gateway agent handler", () => {

3245324632463247

it("tracks plugin SDK subagent agent runs through the subagent registry only", async () => {

32473248

await withTempDir({ prefix: "openclaw-gateway-plugin-subagent-task-" }, async (root) => {

3248-

process.env.OPENCLAW_STATE_DIR = root;

3249+

useTestStateDir(root);

32493250

resetTaskRegistryForTests();

32503251

resetSubagentRegistryForTests({ persist: false });

32513252

const runId = "plugin-subagent-task-run";

@@ -3365,7 +3366,7 @@ describe("gateway agent handler", () => {

33653366

await withTempDir(

33663367

{ prefix: "openclaw-gateway-plugin-subagent-registry-fail-" },

33673368

async (root) => {

3368-

process.env.OPENCLAW_STATE_DIR = root;

3369+

useTestStateDir(root);

33693370

resetTaskRegistryForTests();

33703371

resetSubagentRegistryForTests({ persist: false });

33713372

subagentRegistryTesting.setDepsForTest({

@@ -3444,7 +3445,7 @@ describe("gateway agent handler", () => {

3444344534453446

it("terminalizes failed async gateway agent runs in the shared task registry", async () => {

34463447

await withTempDir({ prefix: "openclaw-gateway-agent-task-error-" }, async (root) => {

3447-

process.env.OPENCLAW_STATE_DIR = root;

3448+

useTestStateDir(root);

34483449

resetTaskRegistryForTests();

34493450

primeMainAgentRun();

34503451

mocks.agentCommand.mockRejectedValueOnce(new Error("agent unavailable"));

@@ -3471,7 +3472,7 @@ describe("gateway agent handler", () => {

3471347234723473

it("preserves aborted async gateway agent runs as timed out", async () => {

34733474

await withTempDir({ prefix: "openclaw-gateway-agent-task-aborted-" }, async (root) => {

3474-

process.env.OPENCLAW_STATE_DIR = root;

3475+

useTestStateDir(root);

34753476

resetTaskRegistryForTests();

34763477

primeMainAgentRun();

34773478

mocks.agentCommand.mockResolvedValueOnce({

@@ -3507,7 +3508,7 @@ describe("gateway agent handler", () => {

3507350835083509

it("classifies aborted async gateway agent rejections as timed out", async () => {

35093510

await withTempDir({ prefix: "openclaw-gateway-agent-task-abort-error-" }, async (root) => {

3510-

process.env.OPENCLAW_STATE_DIR = root;

3511+

useTestStateDir(root);

35113512

resetTaskRegistryForTests();

35123513

primeMainAgentRun();

35133514

const abortError = new Error("This operation was aborted");

@@ -3550,7 +3551,7 @@ describe("gateway agent handler", () => {

3550355135513552

it("preserves restart ownership for aborted async gateway agent rejections", async () => {

35523553

await withTempDir({ prefix: "openclaw-gateway-agent-task-restart-abort-" }, async (root) => {

3553-

process.env.OPENCLAW_STATE_DIR = root;

3554+

useTestStateDir(root);

35543555

resetTaskRegistryForTests();

35553556

primeMainAgentRun();

35563557

const abortError = createAgentRunRestartAbortError();

@@ -3587,7 +3588,7 @@ describe("gateway agent handler", () => {

3587358835883589

it("classifies timeout async gateway agent rejections as timed out", async () => {

35893590

await withTempDir({ prefix: "openclaw-gateway-agent-task-timeout-error-" }, async (root) => {

3590-

process.env.OPENCLAW_STATE_DIR = root;

3591+

useTestStateDir(root);

35913592

resetTaskRegistryForTests();

35923593

primeMainAgentRun();

35933594

const timeoutError = new Error("chat run timed out");

@@ -3632,7 +3633,7 @@ describe("gateway agent handler", () => {

36323633

await withTempDir(

36333634

{ prefix: "openclaw-gateway-agent-task-wrapped-timeout-error-" },

36343635

async (root) => {

3635-

process.env.OPENCLAW_STATE_DIR = root;

3636+

useTestStateDir(root);

36363637

resetTaskRegistryForTests();

36373638

primeMainAgentRun();

36383639

const timeoutReason = new Error("chat run timed out");

@@ -3681,7 +3682,7 @@ describe("gateway agent handler", () => {

3681368236823683

it("does not hide provider timeout async gateway agent rejections", async () => {

36833684

await withTempDir({ prefix: "openclaw-gateway-agent-task-provider-timeout-" }, async (root) => {

3684-

process.env.OPENCLAW_STATE_DIR = root;

3685+

useTestStateDir(root);

36853686

resetTaskRegistryForTests();

36863687

primeMainAgentRun();

36873688

const providerError = new Error("provider request timed out");

@@ -3722,7 +3723,7 @@ describe("gateway agent handler", () => {

3722372337233724

it("does not overwrite operator-cancelled async gateway agent tasks after late completion", async () => {

37243725

await withTempDir({ prefix: "openclaw-gateway-agent-task-cancelled-" }, async (root) => {

3725-

process.env.OPENCLAW_STATE_DIR = root;

3726+

useTestStateDir(root);

37263727

resetTaskRegistryForTests();

37273728

primeMainAgentRun();

37283729

let resolveRun: (value: {

@@ -4616,7 +4617,7 @@ describe("gateway agent handler", () => {

4616461746174618

it("dispatches async gateway agent task creation through the detached task runtime seam", async () => {

46184619

await withTempDir({ prefix: "openclaw-gateway-agent-seam-" }, async (root) => {

4619-

process.env.OPENCLAW_STATE_DIR = root;

4620+

useTestStateDir(root);

46204621

resetTaskRegistryForTests();

46214622

primeMainAgentRun();

46224623

@@ -4675,7 +4676,7 @@ describe("gateway agent handler", () => {

4675467646764677

it("logs a swallowed finalize error without blocking the background run", async () => {

46774678

await withTempDir({ prefix: "openclaw-gateway-agent-finalize-throw-" }, async (root) => {

4678-

process.env.OPENCLAW_STATE_DIR = root;

4679+

useTestStateDir(root);

46794680

resetTaskRegistryForTests();

46804681

primeMainAgentRun();

46814682

@@ -5646,11 +5647,7 @@ describe("gateway agent handler", () => {

5646564756475648

describe("gateway agent handler chat.abort integration", () => {

56485649

function resetIntegrationState() {

5649-

if (ORIGINAL_STATE_DIR === undefined) {

5650-

delete process.env.OPENCLAW_STATE_DIR;

5651-

} else {

5652-

process.env.OPENCLAW_STATE_DIR = ORIGINAL_STATE_DIR;

5653-

}

5650+

envSnapshot.restore();

56545651

resetDetachedTaskLifecycleRuntimeForTests();

56555652

resetTaskRegistryForTests();

56565653

mocks.agentCommand.mockReset();