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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
博客园_首页
美团技术团队
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
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 extension mock helpers · openclaw/openclaw@e1...
steipete · 2026-05-12 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -318,8 +318,10 @@ function mockCallArg<T>(

318318

_type?: (value: unknown) => value is T,

319319

): T {

320320

const call = callIndex < 0 ? mock.mock.calls.at(callIndex) : mock.mock.calls[callIndex];

321-

expect(call).toBeDefined();

322-

return call?.[argIndex] as T;

321+

if (!call) {

322+

throw new Error(`Expected mock call at index ${callIndex}`);

323+

}

324+

return call[argIndex] as T;

323325

}

324326
325327

function lastMockCallArg<T>(

@@ -362,14 +364,13 @@ function externalContentDetails(

362364

targetId?: unknown;

363365

}

364366

| undefined;

365-

expect(details).toBeDefined();

366367

if (!details) {

367368

throw new Error("Expected browser tool result details");

368369

}

369-

expect(details?.ok).toBe(true);

370-

expect(details?.externalContent?.untrusted).toBe(true);

371-

expect(details?.externalContent?.source).toBe("browser");

372-

expect(details?.externalContent?.kind).toBe(kind);

370+

expect(details.ok).toBe(true);

371+

expect(details.externalContent?.untrusted).toBe(true);

372+

expect(details.externalContent?.source).toBe("browser");

373+

expect(details.externalContent?.kind).toBe(kind);

373374

return details;

374375

}

375376
Original file line numberDiff line numberDiff line change

@@ -115,8 +115,10 @@ function requireRecord(value: unknown, label: string): Record<string, unknown> {

115115

function callArg(mock: unknown, callIndex: number, argIndex: number, label: string) {

116116

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

117117

const call = calls.at(callIndex);

118-

expect(call, label).toBeDefined();

119-

return call?.[argIndex];

118+

if (!call) {

119+

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

120+

}

121+

return call[argIndex];

120122

}

121123
122124

function expectExistingSessionProfile(value: unknown) {

Original file line numberDiff line numberDiff line change

@@ -86,8 +86,10 @@ function callArg(

8686

label: string,

8787

) {

8888

const call = mock.mock.calls.at(callIndex);

89-

expect(call, label).toBeDefined();

90-

return call?.[argIndex];

89+

if (!call) {

90+

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

91+

}

92+

return call[argIndex];

9193

}

9294
9395

function expectDynamicSpec(

Original file line numberDiff line numberDiff line change

@@ -42,7 +42,6 @@ function requireMockCall(mock: unknown, index: number, label: string): unknown[]

4242

throw new Error(`${label} did not expose mock calls`);

4343

}

4444

const call = calls[index];

45-

expect(call).toBeDefined();

4645

if (!call) {

4746

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

4847

}

Original file line numberDiff line numberDiff line change

@@ -54,11 +54,13 @@ function fetchRequest(fetchMock: ReturnType<typeof vi.fn>): {

5454

} {

5555

const [url, init] = fetchMock.mock.calls[0] as [string, RequestInit | undefined];

5656

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

57-

expect(init).toBeDefined();

57+

if (!init) {

58+

throw new Error("Expected fetch init");

59+

}

5860

return {

59-

body: typeof init?.body === "string" ? init.body : undefined,

60-

headers: init?.headers,

61-

method: init?.method,

61+

body: typeof init.body === "string" ? init.body : undefined,

62+

headers: init.headers,

63+

method: init.method,

6264

url,

6365

};

6466

}

@@ -69,7 +71,9 @@ function postJsonRequestOptions(spy: unknown): {

6971

ssrfPolicy?: { allowRfc2544BenchmarkRange?: boolean };

7072

} {

7173

const options = (spy as { mock?: { calls?: Array<[unknown]> } }).mock?.calls?.[0]?.[0];

72-

expect(options).toBeDefined();

74+

if (!options) {

75+

throw new Error("Expected postJsonRequest options");

76+

}

7377

return options as {

7478

allowPrivateNetwork?: boolean;

7579

pinDns?: boolean;

Original file line numberDiff line numberDiff line change

@@ -35,14 +35,18 @@ type GenerateContentRequest = {

3535

function lastGoogleGenAIConfig(): GoogleGenAIConfig {

3636

const calls = createGoogleGenAIMock.mock.calls as unknown[][];

3737

const config = calls.at(-1)?.[0];

38-

expect(config).toBeDefined();

38+

if (!config) {

39+

throw new Error("Expected GoogleGenAI config");

40+

}

3941

return config as GoogleGenAIConfig;

4042

}

4143
4244

function firstGenerateContentRequest(): GenerateContentRequest {

4345

const calls = generateContentMock.mock.calls as unknown[][];

4446

const request = calls[0]?.[0];

45-

expect(request).toBeDefined();

47+

if (!request) {

48+

throw new Error("Expected generateContent request");

49+

}

4650

return request as GenerateContentRequest;

4751

}

4852
Original file line numberDiff line numberDiff line change

@@ -59,7 +59,9 @@ function lastConnectParams(): MockGoogleLiveConnectParams {

5959
6060

function sentAudio(index = 0): { data?: unknown; mimeType?: unknown } {

6161

const audio = session.sendRealtimeInput.mock.calls[index]?.[0]?.audio;

62-

expect(audio).toBeDefined();

62+

if (!audio) {

63+

throw new Error(`Expected sent audio at index ${index}`);

64+

}

6365

return audio as { data?: unknown; mimeType?: unknown };

6466

}

6567
Original file line numberDiff line numberDiff line change

@@ -140,7 +140,9 @@ function mockOpenAIImageApiResponse(params: {

140140
141141

function firstMockArg(mocked: unknown): Record<string, unknown> {

142142

const arg = (mocked as { mock?: { calls?: unknown[][] } }).mock?.calls?.[0]?.[0];

143-

expect(arg).toBeDefined();

143+

if (!arg || typeof arg !== "object") {

144+

throw new Error("Expected first mock argument");

145+

}

144146

return arg as Record<string, unknown>;

145147

}

146148
Original file line numberDiff line numberDiff line change

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

1515

});

1616
1717

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

18-

expect(mediaProvider).toBeDefined();

19-

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

20-

expect(mediaProvider?.defaultModels).toEqual({ image: "gpt-5-nano" });

21-

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

22-

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

18+

if (!mediaProvider) {

19+

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

20+

}

21+

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

22+

expect(mediaProvider.defaultModels).toEqual({ image: "gpt-5-nano" });

23+

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

24+

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

2325

});

2426
2527

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