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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Last Week in AI
Last Week in AI
月光博客
月光博客
D
DataBreaches.Net
WordPress大学
WordPress大学
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
C
Check Point Blog
F
Fortinet All Blogs
B
Blog
小众软件
小众软件
Vercel News
Vercel News
罗磊的独立博客
有赞技术团队
有赞技术团队

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: prove config reveal reset · openclaw/openclaw@c630aa3
shakkernerd · 2026-05-13 · via Recent Commits to openclaw:main

@@ -747,7 +747,14 @@ describe("config view", () => {

747747

details.dispatchEvent(new Event("toggle"));

748748

const revealButton = queryRequired(container, ".config-raw-toggle", HTMLButtonElement);

749749

revealButton.click();

750-

expect(normalizedText(container)).toContain("TOKEN_A_AFTER");

750+

const revealedItem = queryRequired(container, ".config-diff__item", HTMLElement);

751+

expect(revealedItem.querySelector(".config-diff__path")?.textContent?.trim()).toBe("token");

752+

expect(revealedItem.querySelector(".config-diff__from")?.textContent?.trim()).toBe(

753+

'"TOKEN_A_BEFORE"',

754+

);

755+

expect(revealedItem.querySelector(".config-diff__to")?.textContent?.trim()).toBe(

756+

'"TOKEN_A_AFTER"',

757+

);

751758752759

props.configPath = "/tmp/openclaw-b.json5";

753760

props.raw = '{\n token: "TOKEN_B_AFTER"\n}\n';

@@ -760,12 +767,30 @@ describe("config view", () => {

760767

};

761768

rerender();

762769763-

const text = normalizedText(container);

764-

expect(text).toContain("1 secret redacted");

765-

expect(text).not.toContain("TOKEN_A_AFTER");

766-

expect(text).not.toContain("TOKEN_B_AFTER");

770+

expect(

771+

queryRequired(container, ".config-raw-field .pill", HTMLElement)

772+

.textContent?.replace(/\s+/g, " ")

773+

.trim(),

774+

).toBe("1 secret redacted");

775+

expect(

776+

queryRequired(container, ".config-raw-field .callout.info", HTMLElement)

777+

.textContent?.replace(/\s+/g, " ")

778+

.trim(),

779+

).toBe("1 sensitive value hidden. Use the reveal button above to edit the raw config.");

767780

expect(container.querySelector("textarea")).toBeNull();

768-

expect(container.querySelector<HTMLDetailsElement>(".config-diff")?.open).toBe(false);

781+

const nextDetails = queryRequired(container, ".config-diff", HTMLDetailsElement);

782+

expect(nextDetails.open).toBe(false);

783+784+

nextDetails.open = true;

785+

nextDetails.dispatchEvent(new Event("toggle"));

786+

const redactedItem = queryRequired(container, ".config-diff__item", HTMLElement);

787+

expect(redactedItem.querySelector(".config-diff__path")?.textContent?.trim()).toBe("token");

788+

expect(redactedItem.querySelector(".config-diff__from")?.textContent?.trim()).toBe(

789+

"[redacted - click reveal to view]",

790+

);

791+

expect(redactedItem.querySelector(".config-diff__to")?.textContent?.trim()).toBe(

792+

"[redacted - click reveal to view]",

793+

);

769794

});

770795771796

it("redacts raw diff values under leaf wildcard sensitive hints when keys contain dots", () => {