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

推荐订阅源

博客园 - Franky
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
L
LangChain Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
Martin Fowler
Martin Fowler
月光博客
月光博客
Y
Y Combinator Blog
U
Unit 42
D
Docker
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - 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
test: restore manifest model env · openclaw/openclaw@a5e33b3
shakkernerd · 2026-06-20 · via Recent Commits to openclaw:main

@@ -4,6 +4,7 @@ import os from "node:os";

44

import path from "node:path";

55

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

66

import type { OpenClawConfig } from "../config/types.openclaw.js";

7+

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

78

import {

89

clearCurrentPluginMetadataSnapshot,

910

resolvePluginMetadataControlPlaneFingerprint,

@@ -19,56 +20,16 @@ import type { PluginMetadataSnapshot } from "./plugin-metadata-snapshot.js";

1920

import { createEmptyPluginRegistry } from "./registry-empty.js";

2021

import { resetPluginRuntimeStateForTest, setActivePluginRegistry } from "./runtime.js";

212222-

const ORIGINAL_ENV = {

23-

OPENCLAW_STATE_DIR: process.env.OPENCLAW_STATE_DIR,

24-

OPENCLAW_HOME: process.env.OPENCLAW_HOME,

25-

OPENCLAW_DISABLE_BUNDLED_PLUGINS: process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS,

26-

OPENCLAW_BUNDLED_PLUGINS_DIR: process.env.OPENCLAW_BUNDLED_PLUGINS_DIR,

27-

} as const;

28-2923

const tempDirs: string[] = [];

30-31-

function restoreOpenClawStateDirEnv(): void {

32-

const value = ORIGINAL_ENV.OPENCLAW_STATE_DIR;

33-

if (value === undefined) {

34-

delete process.env.OPENCLAW_STATE_DIR;

35-

} else {

36-

process.env.OPENCLAW_STATE_DIR = value;

37-

}

38-

}

39-40-

function restoreOpenClawHomeEnv(): void {

41-

const value = ORIGINAL_ENV.OPENCLAW_HOME;

42-

if (value === undefined) {

43-

delete process.env.OPENCLAW_HOME;

44-

} else {

45-

process.env.OPENCLAW_HOME = value;

46-

}

47-

}

48-49-

function restoreOpenClawDisableBundledPluginsEnv(): void {

50-

const value = ORIGINAL_ENV.OPENCLAW_DISABLE_BUNDLED_PLUGINS;

51-

if (value === undefined) {

52-

delete process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS;

53-

} else {

54-

process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS = value;

55-

}

56-

}

57-58-

function restoreOpenClawBundledPluginsDirEnv(): void {

59-

const value = ORIGINAL_ENV.OPENCLAW_BUNDLED_PLUGINS_DIR;

60-

if (value === undefined) {

61-

delete process.env.OPENCLAW_BUNDLED_PLUGINS_DIR;

62-

} else {

63-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = value;

64-

}

65-

}

24+

const testEnvSnapshot = captureEnv([

25+

"OPENCLAW_STATE_DIR",

26+

"OPENCLAW_HOME",

27+

"OPENCLAW_DISABLE_BUNDLED_PLUGINS",

28+

"OPENCLAW_BUNDLED_PLUGINS_DIR",

29+

]);

66306731

function restoreEnv(): void {

68-

restoreOpenClawStateDirEnv();

69-

restoreOpenClawHomeEnv();

70-

restoreOpenClawDisableBundledPluginsEnv();

71-

restoreOpenClawBundledPluginsDirEnv();

32+

testEnvSnapshot.restore();

7233

}

73347435

function makeTempDir(): string {

@@ -343,10 +304,10 @@ describe("manifest model id normalization", () => {

343304

writeInstallIndex({ stateDir: stateDirA, pluginDir: pluginDirA });

344305

writeNormalizerManifest({ pluginDir: pluginDirA, prefix: "alpha" });

345306346-

process.env.OPENCLAW_STATE_DIR = stateDirA;

347-

process.env.OPENCLAW_HOME = undefined;

348-

process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS = "1";

349-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = undefined;

307+

setTestEnvValue("OPENCLAW_STATE_DIR", stateDirA);

308+

deleteTestEnvValue("OPENCLAW_HOME");

309+

setTestEnvValue("OPENCLAW_DISABLE_BUNDLED_PLUGINS", "1");

310+

deleteTestEnvValue("OPENCLAW_BUNDLED_PLUGINS_DIR");

350311351312

expect(normalizeDemoModel()).toBe("alpha/demo-model");

352313

@@ -358,7 +319,7 @@ describe("manifest model id normalization", () => {

358319

writeInstallIndex({ stateDir: stateDirB, pluginDir: pluginDirB });

359320

writeNormalizerManifest({ pluginDir: pluginDirB, prefix: "charlie" });

360321361-

process.env.OPENCLAW_STATE_DIR = stateDirB;

322+

setTestEnvValue("OPENCLAW_STATE_DIR", stateDirB);

362323

clearPluginMetadataLifecycleCaches();

363324

expect(normalizeDemoModel()).toBe("charlie/demo-model");

364325

});

@@ -370,10 +331,10 @@ describe("manifest model id normalization", () => {

370331

writeInstallIndex({ stateDir, pluginDir });

371332

writeNormalizerManifest({ pluginDir, prefix: "alpha" });

372333373-

process.env.OPENCLAW_STATE_DIR = stateDir;

374-

process.env.OPENCLAW_HOME = undefined;

375-

process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS = "1";

376-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = undefined;

334+

setTestEnvValue("OPENCLAW_STATE_DIR", stateDir);

335+

deleteTestEnvValue("OPENCLAW_HOME");

336+

setTestEnvValue("OPENCLAW_DISABLE_BUNDLED_PLUGINS", "1");

337+

deleteTestEnvValue("OPENCLAW_BUNDLED_PLUGINS_DIR");

377338378339

const readFileSyncSpy = vi.spyOn(fs, "readFileSync");

379340