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

推荐订阅源

有赞技术团队
有赞技术团队
B
Blog
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
量子位
博客园 - 叶小钗
T
Tailwind CSS Blog
小众软件
小众软件
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
雷峰网
雷峰网
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
博客园_首页
I
InfoQ
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure 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(qa): redact capture payload previews · openclaw/openc...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main

@@ -255,4 +255,152 @@ describe("QA Lab UI evidence render", () => {

255255

expect(html).not.toContain("<video controls");

256256

expect(html).not.toContain('data-evidence-entry-id="null"');

257257

});

258+259+

it("redacts secret-like capture payload fields in raw previews", () => {

260+

const payload =

261+

'{"message":"visible context","message":"duplicate context","completion_tokens":100,"cookies":["session=abc"],"apiToken":"secret-token","tokenValue":"token-value-secret","authTokens":["auth-token-secret"],"tokens":{"refresh":"refresh-token-secret"},"AWS_SECRET_ACCESS_KEY":"aws-secret","secretAccessKey":"access-secret","x-goog-api-key":"goog-secret","nested":{"password":"secret-password"}}';

262+

const html = renderQaLabUi(

263+

evidenceState({

264+

activeTab: "capture",

265+

captureDetailView: "payload",

266+

capturePayloadDetailLayout: "raw",

267+

captureEvents: [

268+

{

269+

contentType: "application/json",

270+

dataText: payload,

271+

direction: "outbound",

272+

flowId: "flow-1",

273+

host: "api.example.test",

274+

id: 1,

275+

kind: "request",

276+

method: "POST",

277+

path: "/v1/messages",

278+

payloadPreview: payload,

279+

protocol: "https",

280+

provider: "mock",

281+

ts: 1,

282+

},

283+

],

284+

selectedCaptureEventKey: "1:flow-1:1:request",

285+

}),

286+

);

287+288+

expect(html).toContain("visible context");

289+

expect(html).toContain("duplicate context");

290+

expect(html).toContain("completion_tokens");

291+

expect(html).toContain("100");

292+

expect(html).toContain("apiToken");

293+

expect(html).toContain("nested");

294+

expect(html).toContain("[redacted]");

295+

expect(html).not.toContain("session=abc");

296+

expect(html).not.toContain("secret-token");

297+

expect(html).not.toContain("token-value-secret");

298+

expect(html).not.toContain("auth-token-secret");

299+

expect(html).not.toContain("refresh-token-secret");

300+

expect(html).not.toContain("aws-secret");

301+

expect(html).not.toContain("access-secret");

302+

expect(html).not.toContain("goog-secret");

303+

expect(html).not.toContain("secret-password");

304+

});

305+306+

it("redacts secret-like fields when captured JSON previews are truncated", () => {

307+

const payload =

308+

'{"apiToken":"secret-token","nested":{"password":"secret-password"},"message":"visible context"';

309+

for (const capturePayloadDetailLayout of ["raw", "formatted"] as const) {

310+

const html = renderQaLabUi(

311+

evidenceState({

312+

activeTab: "capture",

313+

captureDetailView: "payload",

314+

capturePayloadDetailLayout,

315+

captureEvents: [

316+

{

317+

contentType: "application/json",

318+

dataText: payload,

319+

direction: "outbound",

320+

flowId: "flow-1",

321+

host: "api.example.test",

322+

id: 1,

323+

kind: "request",

324+

method: "POST",

325+

path: "/v1/messages",

326+

payloadPreview: payload,

327+

protocol: "https",

328+

provider: "mock",

329+

ts: 1,

330+

},

331+

],

332+

selectedCaptureEventKey: "1:flow-1:1:request",

333+

}),

334+

);

335+336+

expect(html).toContain("visible context");

337+

expect(html).toContain("[redacted]");

338+

expect(html).not.toContain("secret-token");

339+

expect(html).not.toContain("secret-password");

340+

}

341+

});

342+343+

it("redacts secret-like SSE data fields in formatted payloads", () => {

344+

const payload = 'event: message\ndata: {"apiToken":"secret-token","message":"visible"}';

345+

const html = renderQaLabUi(

346+

evidenceState({

347+

activeTab: "capture",

348+

captureDetailView: "payload",

349+

capturePayloadDetailLayout: "formatted",

350+

captureEvents: [

351+

{

352+

contentType: "text/event-stream",

353+

dataText: payload,

354+

direction: "inbound",

355+

flowId: "flow-1",

356+

host: "api.example.test",

357+

id: 1,

358+

kind: "response",

359+

path: "/v1/messages",

360+

payloadPreview: payload,

361+

protocol: "https",

362+

provider: "mock",

363+

ts: 1,

364+

},

365+

],

366+

selectedCaptureEventKey: "1:flow-1:1:response",

367+

}),

368+

);

369+370+

expect(html).toContain("visible");

371+

expect(html).toContain("[redacted]");

372+

expect(html).not.toContain("secret-token");

373+

});

374+375+

it("redacts secret-like fields when capture cuts inside a JSON value", () => {

376+

const payload = '{"apiToken":"secret-token';

377+

const html = renderQaLabUi(

378+

evidenceState({

379+

activeTab: "capture",

380+

captureDetailView: "payload",

381+

capturePayloadDetailLayout: "raw",

382+

captureEvents: [

383+

{

384+

contentType: "application/json",

385+

dataText: payload,

386+

direction: "outbound",

387+

flowId: "flow-1",

388+

host: "api.example.test",

389+

id: 1,

390+

kind: "request",

391+

method: "POST",

392+

path: "/v1/messages",

393+

payloadPreview: payload,

394+

protocol: "https",

395+

provider: "mock",

396+

ts: 1,

397+

},

398+

],

399+

selectedCaptureEventKey: "1:flow-1:1:request",

400+

}),

401+

);

402+403+

expect(html).toContain("[redacted]");

404+

expect(html).not.toContain("secret-token");

405+

});

258406

});