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

推荐订阅源

博客园 - 【当耐特】
月光博客
月光博客
Y
Y Combinator Blog
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
J
Java Code Geeks
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
MongoDB | Blog
MongoDB | Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
博客园 - 叶小钗
MyScale Blog
MyScale Blog
I
InfoQ
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 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
test: guard control ui http mock calls · openclaw/opencla...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -31,7 +31,7 @@ describe("handleControlUiHttpRequest", () => {

3131

}

32323333

function parseBootstrapPayload(end: ReturnType<typeof makeMockHttpResponse>["end"]) {

34-

return JSON.parse(String(end.mock.calls[0]?.[0] ?? "")) as {

34+

return JSON.parse(String(end.mock.calls.at(0)?.[0] ?? "")) as {

3535

basePath: string;

3636

assistantName: string;

3737

assistantAvatar: string;

@@ -214,7 +214,7 @@ describe("handleControlUiHttpRequest", () => {

214214

}) {

215215

expect(params.handled).toBe(true);

216216

expect(params.res.statusCode).toBe(403);

217-

expect(JSON.parse(String(params.end.mock.calls[0]?.[0] ?? ""))).toEqual({

217+

expect(JSON.parse(String(params.end.mock.calls.at(0)?.[0] ?? ""))).toEqual({

218218

ok: false,

219219

error: {

220220

type: "forbidden",

@@ -372,7 +372,7 @@ describe("handleControlUiHttpRequest", () => {

372372

});

373373

expect(handled).toBe(true);

374374

expect(res.statusCode).toBe(200);

375-

const payload = JSON.parse(String(end.mock.calls[0]?.[0] ?? "")) as {

375+

const payload = JSON.parse(String(end.mock.calls.at(0)?.[0] ?? "")) as {

376376

available?: boolean;

377377

mediaTicket?: string;

378378

mediaTicketExpiresAt?: string;

@@ -414,7 +414,7 @@ describe("handleControlUiHttpRequest", () => {

414414

});

415415

expect(handled).toBe(true);

416416

expect(res.statusCode).toBe(200);

417-

const payload = JSON.parse(String(end.mock.calls[0]?.[0] ?? "")) as {

417+

const payload = JSON.parse(String(end.mock.calls.at(0)?.[0] ?? "")) as {

418418

available?: boolean;

419419

mediaTicket?: string;

420420

mediaTicketExpiresAt?: string;

@@ -440,7 +440,7 @@ describe("handleControlUiHttpRequest", () => {

440440

authorization: "Bearer test-token",

441441

},

442442

});

443-

const payload = JSON.parse(String(meta.end.mock.calls[0]?.[0] ?? "")) as {

443+

const payload = JSON.parse(String(meta.end.mock.calls.at(0)?.[0] ?? "")) as {

444444

mediaTicket?: string;

445445

};

446446

expect(meta.handled).toBe(true);

@@ -472,7 +472,7 @@ describe("handleControlUiHttpRequest", () => {

472472

authorization: "Bearer test-token",

473473

},

474474

});

475-

const payload = JSON.parse(String(meta.end.mock.calls[0]?.[0] ?? "")) as {

475+

const payload = JSON.parse(String(meta.end.mock.calls.at(0)?.[0] ?? "")) as {

476476

mediaTicket?: string;

477477

};

478478

@@ -483,7 +483,7 @@ describe("handleControlUiHttpRequest", () => {

483483

});

484484

expect(refresh.handled).toBe(true);

485485

expect(refresh.res.statusCode).toBe(401);

486-

expect(String(refresh.end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

486+

expect(String(refresh.end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

487487

},

488488

});

489489

});

@@ -501,7 +501,7 @@ describe("handleControlUiHttpRequest", () => {

501501

});

502502

expect(handled).toBe(true);

503503

expect(res.statusCode).toBe(401);

504-

expect(String(end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

504+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

505505

},

506506

});

507507

});

@@ -514,7 +514,7 @@ describe("handleControlUiHttpRequest", () => {

514514

});

515515

expect(handled).toBe(true);

516516

expect(res.statusCode).toBe(200);

517-

expect(JSON.parse(String(end.mock.calls[0]?.[0] ?? ""))).toEqual({

517+

expect(JSON.parse(String(end.mock.calls.at(0)?.[0] ?? ""))).toEqual({

518518

available: false,

519519

code: "outside-allowed-folders",

520520

reason: "Outside allowed folders",

@@ -534,7 +534,7 @@ describe("handleControlUiHttpRequest", () => {

534534

});

535535

expect(handled).toBe(true);

536536

expect(res.statusCode).toBe(401);

537-

expect(String(end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

537+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

538538

},

539539

});

540540

});

@@ -598,7 +598,7 @@ describe("handleControlUiHttpRequest", () => {

598598

});

599599

expect(handled).toBe(true);

600600

expect(res.statusCode).toBe(401);

601-

expect(String(end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

601+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

602602

},

603603

});

604604

});

@@ -719,7 +719,7 @@ describe("handleControlUiHttpRequest", () => {

719719

});

720720

expect(handled).toBe(true);

721721

expect(res.statusCode).toBe(401);

722-

expect(String(end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

722+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

723723

},

724724

});

725725

});

@@ -805,7 +805,7 @@ describe("handleControlUiHttpRequest", () => {

805805806806

expect(handled).toBe(true);

807807

expect(res.statusCode).toBe(200);

808-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("avatar-bytes\n");

808+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("avatar-bytes\n");

809809

} finally {

810810

await fs.rm(tmp, { recursive: true, force: true });

811811

}

@@ -876,7 +876,7 @@ describe("handleControlUiHttpRequest", () => {

876876877877

expect(handled).toBe(true);

878878

expect(res.statusCode).toBe(200);

879-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("avatar-bytes\n");

879+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("avatar-bytes\n");

880880

} finally {

881881

await fs.rm(tmp, { recursive: true, force: true });

882882

}

@@ -901,7 +901,7 @@ describe("handleControlUiHttpRequest", () => {

901901902902

expect(handled).toBe(true);

903903

expect(res.statusCode).toBe(200);

904-

expect(JSON.parse(String(end.mock.calls[0]?.[0] ?? ""))).toEqual({

904+

expect(JSON.parse(String(end.mock.calls.at(0)?.[0] ?? ""))).toEqual({

905905

avatarUrl: "https://example.com/avatar.png",

906906

avatarSource: "remote URL",

907907

avatarStatus: "remote",

@@ -922,7 +922,7 @@ describe("handleControlUiHttpRequest", () => {

922922923923

expect(handled).toBe(true);

924924

expect(res.statusCode).toBe(200);

925-

expect(JSON.parse(String(end.mock.calls[0]?.[0] ?? ""))).toEqual({

925+

expect(JSON.parse(String(end.mock.calls.at(0)?.[0] ?? ""))).toEqual({

926926

avatarUrl: null,

927927

avatarSource: null,

928928

avatarStatus: "none",

@@ -940,7 +940,7 @@ describe("handleControlUiHttpRequest", () => {

940940941941

expect(handled).toBe(true);

942942

expect(res.statusCode).toBe(401);

943-

expect(String(end.mock.calls[0]?.[0] ?? "")).toContain("Unauthorized");

943+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toContain("Unauthorized");

944944

});

945945946946

it("rejects trusted-proxy avatar metadata requests without operator.read scope", async () => {

@@ -995,7 +995,7 @@ describe("handleControlUiHttpRequest", () => {

995995996996

expect(handled).toBe(true);

997997

expect(res.statusCode).toBe(200);

998-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("inside-ok\n");

998+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("inside-ok\n");

999999

},

10001000

});

10011001

});

@@ -1013,7 +1013,7 @@ describe("handleControlUiHttpRequest", () => {

1013101310141014

expect(handled).toBe(true);

10151015

expect(res.statusCode).toBe(200);

1016-

expect(end.mock.calls[0]?.length ?? -1).toBe(0);

1016+

expect(end.mock.calls.at(0)?.length ?? -1).toBe(0);

10171017

},

10181018

});

10191019

});

@@ -1096,7 +1096,7 @@ describe("handleControlUiHttpRequest", () => {

1096109610971097

expect(handled).toBe(true);

10981098

expect(res.statusCode).toBe(200);

1099-

expect(String(end.mock.calls[0]?.[0] ?? "")).toBe("console.log('hi');");

1099+

expect(String(end.mock.calls.at(0)?.[0] ?? "")).toBe("console.log('hi');");

11001100

},

11011101

});

11021102

});