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

推荐订阅源

Y
Y Combinator Blog
B
Blog
S
SegmentFault 最新的问题
Vercel News
Vercel News
博客园 - 聂微东
宝玉的分享
宝玉的分享
C
Check Point Blog
有赞技术团队
有赞技术团队
IT之家
IT之家
V
V2EX
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
博客园 - 司徒正美
博客园_首页
Last Week in AI
Last Week in AI
博客园 - 叶小钗
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
腾讯CDC
J
Java Code Geeks

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 mock lookup helpers · openclaw/openclaw@bc92264
steipete · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -107,15 +107,22 @@ function requireRecord(value: unknown, label: string): Record<string, unknown> {

107107
108108

function mockCalls(mock: unknown, label: string): Array<Array<unknown>> {

109109

const mockState = (mock as { mock?: { calls?: Array<Array<unknown>> } }).mock;

110-

expect(mockState, `${label}.mock`).toBeDefined();

111-

expect(Array.isArray(mockState?.calls), `${label}.mock.calls`).toBe(true);

112-

return mockState?.calls ?? [];

110+

if (!mockState) {

111+

throw new Error(`Expected ${label}.mock`);

112+

}

113+

const calls = mockState.calls;

114+

if (!Array.isArray(calls)) {

115+

throw new Error(`Expected ${label}.mock.calls`);

116+

}

117+

return calls;

113118

}

114119
115120

function findMockCall(mock: unknown, label: string, predicate: (call: Array<unknown>) => boolean) {

116121

const call = mockCalls(mock, label).find(predicate);

117-

expect(call, label).toBeDefined();

118-

return call as Array<unknown>;

122+

if (!call) {

123+

throw new Error(`Expected ${label}`);

124+

}

125+

return call;

119126

}

120127
121128

function responsePayload(respond: unknown): Record<string, unknown> {

Original file line numberDiff line numberDiff line change

@@ -30,7 +30,6 @@ function expectModelFields(

3030

model: ProviderRuntimeModel | undefined,

3131

fields: Partial<ProviderRuntimeModel>,

3232

) {

33-

expect(model).toBeDefined();

3433

if (!model) {

3534

throw new Error("expected provider model");

3635

}

Original file line numberDiff line numberDiff line change

@@ -42,11 +42,13 @@ describe("opencode-go provider plugin", () => {

4242

});

4343
4444

const mediaProvider = mediaProviders.find((provider) => provider.id === "opencode-go");

45-

expect(mediaProvider).toBeDefined();

46-

expect(mediaProvider?.capabilities).toEqual(["image"]);

47-

expect(mediaProvider?.defaultModels).toEqual({ image: "kimi-k2.6" });

48-

expect(typeof mediaProvider?.describeImage).toBe("function");

49-

expect(typeof mediaProvider?.describeImages).toBe("function");

45+

if (!mediaProvider) {

46+

throw new Error("Expected opencode-go media provider");

47+

}

48+

expect(mediaProvider.capabilities).toEqual(["image"]);

49+

expect(mediaProvider.defaultModels).toEqual({ image: "kimi-k2.6" });

50+

expect(typeof mediaProvider.describeImage).toBe("function");

51+

expect(typeof mediaProvider.describeImages).toBe("function");

5052

});

5153
5254

it("owns passthrough-gemini replay policy for Gemini-backed models", async () => {

Original file line numberDiff line numberDiff line change

@@ -258,7 +258,6 @@ describe("openrouter video generation provider", () => {

258258

});

259259

expect(rows).toHaveLength(1);

260260

const row = rows[0];

261-

expect(row).toBeDefined();

262261

if (!row) {

263262

throw new Error("expected OpenRouter catalog row");

264263

}

Original file line numberDiff line numberDiff line change

@@ -73,7 +73,6 @@ describe("handleSlackAction", () => {

7373
7474

function requireSlackSendCall(index: number) {

7575

const call = sendSlackMessage.mock.calls[index] as unknown[] | undefined;

76-

expect(call).toBeDefined();

7776

if (!call) {

7877

throw new Error(`missing Slack send call ${index + 1}`);

7978

}

Original file line numberDiff line numberDiff line change

@@ -349,8 +349,10 @@ function gatewayRequests(): Array<{ method?: string; params?: Record<string, unk

349349
350350

function gatewayRequest(method: string): { method?: string; params?: Record<string, unknown> } {

351351

const request = gatewayRequests().find((candidate) => candidate.method === method);

352-

expect(request).toBeDefined();

353-

return request as { method?: string; params?: Record<string, unknown> };

352+

if (!request) {

353+

throw new Error(`Expected gateway request for ${method}`);

354+

}

355+

return request;

354356

}

355357
356358

function expectGatewayMethodNotCalled(method: string): void {

Original file line numberDiff line numberDiff line change

@@ -109,7 +109,9 @@ function expectRecordFields(record: Record<string, unknown>, fields: Record<stri

109109
110110

function requireMockArg(mock: typeof runCliAgentMock, callIndex: number, label: string) {

111111

const arg = mock.mock.calls[callIndex]?.[0];

112-

expect(arg).toBeDefined();

112+

if (arg === undefined) {

113+

throw new Error(`Expected mock argument for ${label}`);

114+

}

113115

return requireRecord(arg, label);

114116

}

115117
Original file line numberDiff line numberDiff line change

@@ -19,8 +19,10 @@ vi.mock("./hooks.js", async () => {

1919
2020

function expectRetryAfterHeader(setHeader: ReturnType<typeof vi.fn>): void {

2121

const retryAfterCall = setHeader.mock.calls.find(([name]) => name === "Retry-After");

22-

expect(retryAfterCall).toBeDefined();

23-

const retryAfterValue = retryAfterCall?.[1];

22+

if (!retryAfterCall) {

23+

throw new Error("Expected Retry-After header call");

24+

}

25+

const retryAfterValue = retryAfterCall[1];

2426

expect(typeof retryAfterValue).toBe("string");

2527

expect(Number.parseInt(String(retryAfterValue), 10)).toBeGreaterThan(0);

2628

}

Original file line numberDiff line numberDiff line change

@@ -59,16 +59,18 @@ function requireArray(value: unknown, label: string): unknown[] {

5959
6060

function mockCall(source: MockCallSource, index: number, label: string) {

6161

const call = source.mock.calls[index];

62-

expect(call, label).toBeDefined();

62+

if (!call) {

63+

throw new Error(`Expected ${label}`);

64+

}

6365

return call;

6466

}

6567
6668

function responseCall(source: MockCallSource, index = 0) {

6769

const call = mockCall(source, index, `response call ${index}`);

6870

return {

69-

ok: call?.[0],

70-

result: call?.[1],

71-

error: call?.[2],

71+

ok: call[0],

72+

result: call[1],

73+

error: call[2],

7274

};

7375

}

7476

@@ -87,8 +89,10 @@ function acceptedResult(source: MockCallSource) {

8789

? (result as Record<string, unknown>).status === "accepted"

8890

: false;

8991

});

90-

expect(call, "accepted response call").toBeDefined();

91-

return requireRecord(call?.[1], "accepted response result");

92+

if (!call) {

93+

throw new Error("Expected accepted response call");

94+

}

95+

return requireRecord(call[1], "accepted response result");

9296

}

9397
9498

function acceptedApprovalId(source: MockCallSource) {

Original file line numberDiff line numberDiff line change

@@ -55,7 +55,9 @@ function createInvokeParams(params: Record<string, unknown>) {

5555
5656

function firstMockArg(mock: { mock: { calls: unknown[][] } }, label: string): unknown {

5757

const arg = mock.mock.calls[0]?.[0];

58-

expect(arg, label).toBeDefined();

58+

if (arg === undefined) {

59+

throw new Error(`Expected ${label}`);

60+

}

5961

return arg;

6062

}

6163