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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
Engineering at Meta
Engineering at Meta
量子位
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
博客园 - 司徒正美
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
腾讯CDC
Jina AI
Jina AI
C
Check Point Blog
H
Help Net Security
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
爱范儿
爱范儿
I
InfoQ

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: normalize feishu env fixtures · openclaw/openclaw@8...
shakkernerd · 2026-06-26 · via Recent Commits to openclaw:main

@@ -83,6 +83,14 @@ let FEISHU_USER_AGENT: string;

8383

let priorProxyEnv: Partial<Record<ProxyEnvKey, string | undefined>> = {};

8484

let priorFeishuTimeoutEnv: string | undefined;

858586+

function setFeishuTestEnvValue(key: string, value: string | undefined): void {

87+

if (value === undefined) {

88+

Reflect.deleteProperty(process.env, key);

89+

} else {

90+

Reflect.set(process.env, key, value);

91+

}

92+

}

93+8694

vi.mock("./channel.js", () => ({

8795

feishuPlugin: feishuPluginMock,

8896

}));

@@ -213,10 +221,10 @@ beforeAll(async () => {

213221

beforeEach(() => {

214222

priorProxyEnv = {};

215223

priorFeishuTimeoutEnv = process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR];

216-

delete process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR];

224+

setFeishuTestEnvValue(FEISHU_HTTP_TIMEOUT_ENV_VAR, undefined);

217225

for (const key of proxyEnvKeys) {

218226

priorProxyEnv[key] = process.env[key];

219-

delete process.env[key];

227+

setFeishuTestEnvValue(key, undefined);

220228

}

221229

vi.clearAllMocks();

222230

clearClientCache();

@@ -238,18 +246,9 @@ beforeEach(() => {

238246239247

afterEach(() => {

240248

for (const key of proxyEnvKeys) {

241-

const value = priorProxyEnv[key];

242-

if (value === undefined) {

243-

delete process.env[key];

244-

} else {

245-

process.env[key] = value;

246-

}

247-

}

248-

if (priorFeishuTimeoutEnv === undefined) {

249-

delete process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR];

250-

} else {

251-

process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR] = priorFeishuTimeoutEnv;

249+

setFeishuTestEnvValue(key, priorProxyEnv[key]);

252250

}

251+

setFeishuTestEnvValue(FEISHU_HTTP_TIMEOUT_ENV_VAR, priorFeishuTimeoutEnv);

253252

setFeishuClientRuntimeForTest();

254253

});

255254

@@ -359,7 +358,7 @@ describe("createFeishuClient HTTP timeout", () => {

359358

});

360359361360

it("uses env timeout override when provided and no direct timeout is set", async () => {

362-

process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR] = "60000";

361+

setFeishuTestEnvValue(FEISHU_HTTP_TIMEOUT_ENV_VAR, "60000");

363362364363

createFeishuClient({

365364

appId: "app_8",

@@ -373,7 +372,7 @@ describe("createFeishuClient HTTP timeout", () => {

373372374373

it("ignores non-decimal env timeout overrides", async () => {

375374

for (const value of ["0x10", "1e3", "10.5"]) {

376-

process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR] = value;

375+

setFeishuTestEnvValue(FEISHU_HTTP_TIMEOUT_ENV_VAR, value);

377376378377

createFeishuClient({

379378

appId: `app-${value}`,

@@ -387,7 +386,7 @@ describe("createFeishuClient HTTP timeout", () => {

387386

});

388387389388

it("prefers direct timeout over env override", async () => {

390-

process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR] = "60000";

389+

setFeishuTestEnvValue(FEISHU_HTTP_TIMEOUT_ENV_VAR, "60000");

391390392391

createFeishuClient({

393392

appId: "app_10",

@@ -401,7 +400,10 @@ describe("createFeishuClient HTTP timeout", () => {

401400

});

402401403402

it("clamps env timeout override to max bound", async () => {

404-

process.env[FEISHU_HTTP_TIMEOUT_ENV_VAR] = String(FEISHU_HTTP_TIMEOUT_MAX_MS + 123_456);

403+

setFeishuTestEnvValue(

404+

FEISHU_HTTP_TIMEOUT_ENV_VAR,

405+

String(FEISHU_HTTP_TIMEOUT_MAX_MS + 123_456),

406+

);

405407406408

createFeishuClient({

407409

appId: "app_9",

@@ -505,7 +507,7 @@ describe("createFeishuWSClient proxy handling", () => {

505507

});

506508507509

it("creates a ws proxy agent when lowercase https_proxy is set", async () => {

508-

process.env.https_proxy = "http://lower-https:8001";

510+

setFeishuTestEnvValue("https_proxy", "http://lower-https:8001");

509511510512

await createFeishuWSClient(baseAccount);

511513

@@ -515,7 +517,7 @@ describe("createFeishuWSClient proxy handling", () => {

515517

});

516518517519

it("creates a ws proxy agent when uppercase HTTPS_PROXY is set", async () => {

518-

process.env.HTTPS_PROXY = "http://upper-https:8002";

520+

setFeishuTestEnvValue("HTTPS_PROXY", "http://upper-https:8002");

519521520522

await createFeishuWSClient(baseAccount);

521523

@@ -525,7 +527,7 @@ describe("createFeishuWSClient proxy handling", () => {

525527

});

526528527529

it("falls back to HTTP_PROXY for ws proxy agent creation", async () => {

528-

process.env.HTTP_PROXY = "http://upper-http:8999";

530+

setFeishuTestEnvValue("HTTP_PROXY", "http://upper-http:8999");

529531530532

await createFeishuWSClient(baseAccount);

531533