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

推荐订阅源

A
About on SuperTechFans
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
宝玉的分享
宝玉的分享
美团技术团队
量子位
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
爱范儿
爱范儿
J
Java Code Geeks
博客园 - Franky
Last Week in AI
Last Week in AI
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
GbyAI
GbyAI
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog

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: normalize symbolic fetch headers · openclaw/openclaw...
shakkernerd · 2026-05-06 · via Recent Commits to openclaw:main

@@ -0,0 +1,82 @@

1+

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

2+

import {

3+

normalizeHeadersInitForFetch,

4+

normalizeRequestInitHeadersForFetch,

5+

} from "./fetch-headers.js";

6+7+

function createHeadersWithSymbol(enumerable: boolean): HeadersInit {

8+

const headers = { "Content-Type": "application/json" } as Record<string, string> & {

9+

[key: symbol]: unknown;

10+

};

11+

Object.defineProperty(headers, Symbol("sensitiveHeaders"), {

12+

value: new Set(["content-type"]),

13+

enumerable,

14+

});

15+

return headers;

16+

}

17+18+

describe("normalizeHeadersInitForFetch", () => {

19+

it("keeps Headers instances unchanged", () => {

20+

const headers = new Headers({ Accept: "application/json" });

21+22+

expect(normalizeHeadersInitForFetch(headers)).toBe(headers);

23+

});

24+25+

it("keeps tuple headers unchanged", () => {

26+

const headers: HeadersInit = [["Accept", "application/json"]];

27+28+

expect(normalizeHeadersInitForFetch(headers)).toBe(headers);

29+

});

30+31+

it("keeps plain string-key dictionaries unchanged when they have no symbol keys", () => {

32+

const headers = { Accept: "application/json" };

33+34+

expect(normalizeHeadersInitForFetch(headers)).toBe(headers);

35+

});

36+37+

it.each([

38+

{ enumerable: true, name: "enumerable" },

39+

{ enumerable: false, name: "non-enumerable" },

40+

])("drops $name own symbol keys from plain header dictionaries", ({ enumerable }) => {

41+

const headers = createHeadersWithSymbol(enumerable);

42+43+

const normalized = normalizeHeadersInitForFetch(headers);

44+45+

expect(normalized).not.toBe(headers);

46+

expect(Object.getOwnPropertySymbols(normalized as object)).toEqual([]);

47+

expect(new Headers(normalized).get("content-type")).toBe("application/json");

48+

expect(Object.getOwnPropertySymbols(headers as object)).toHaveLength(1);

49+

});

50+51+

it("preserves non-enumerable string header keys when dropping symbol keys", () => {

52+

const headers = createHeadersWithSymbol(false);

53+

Object.defineProperty(headers, "X-Hidden", {

54+

value: "yes",

55+

enumerable: false,

56+

});

57+58+

const normalized = normalizeHeadersInitForFetch(headers);

59+60+

expect(Object.getOwnPropertySymbols(normalized as object)).toEqual([]);

61+

expect(new Headers(normalized).get("x-hidden")).toBe("yes");

62+

expect(new Headers(normalized).get("content-type")).toBe("application/json");

63+

});

64+

});

65+66+

describe("normalizeRequestInitHeadersForFetch", () => {

67+

it("returns the original init when headers do not need normalization", () => {

68+

const init: RequestInit = { headers: { Accept: "application/json" } };

69+70+

expect(normalizeRequestInitHeadersForFetch(init)).toBe(init);

71+

});

72+73+

it("returns a cloned init with symbol-free headers when needed", () => {

74+

const init: RequestInit = { headers: createHeadersWithSymbol(false) };

75+76+

const normalized = normalizeRequestInitHeadersForFetch(init);

77+78+

expect(normalized).not.toBe(init);

79+

expect(Object.getOwnPropertySymbols(normalized?.headers as object)).toEqual([]);

80+

expect(Object.getOwnPropertySymbols(init.headers as object)).toHaveLength(1);

81+

});

82+

});