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

推荐订阅源

B
Blog RSS Feed
J
Java Code Geeks
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
L
LangChain Blog
腾讯CDC
Y
Y Combinator Blog
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
MyScale Blog
MyScale Blog
博客园 - Franky
IT之家
IT之家
博客园_首页

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: tighten live shard assertions · openclaw/openclaw@7...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -33,72 +33,67 @@ describe("scripts/test-live-shard", () => {

3333

});

34343535

it("keeps aggregate shard aliases available outside the release partition", () => {

36-

expect(LIVE_TEST_SHARDS).toEqual(expect.arrayContaining(RELEASE_LIVE_TEST_SHARDS));

37-

expect(LIVE_TEST_SHARDS).toEqual(

38-

expect.arrayContaining([

39-

"native-live-extensions-o-z",

40-

"native-live-extensions-media",

41-

"native-live-extensions-media-music",

42-

]),

43-

);

36+

expect(LIVE_TEST_SHARDS).toEqual([

37+

...RELEASE_LIVE_TEST_SHARDS,

38+

"native-live-extensions-o-z",

39+

"native-live-extensions-media",

40+

"native-live-extensions-media-music",

41+

]);

44424543

const oToZAlias = selectLiveShardFiles("native-live-extensions-o-z", allFiles);

4644

expect(oToZAlias).toEqual(

47-

expect.arrayContaining(selectLiveShardFiles("native-live-extensions-o-z-other", allFiles)),

48-

);

49-

expect(oToZAlias).toEqual(

50-

expect.arrayContaining(selectLiveShardFiles("native-live-extensions-xai", allFiles)),

45+

[

46+

...selectLiveShardFiles("native-live-extensions-o-z-other", allFiles),

47+

...selectLiveShardFiles("native-live-extensions-xai", allFiles),

48+

].toSorted(),

5149

);

52505351

const mediaAlias = selectLiveShardFiles("native-live-extensions-media", allFiles);

5452

expect(mediaAlias).toEqual(

55-

expect.arrayContaining(selectLiveShardFiles("native-live-extensions-media-audio", allFiles)),

56-

);

57-

expect(mediaAlias).toEqual(

58-

expect.arrayContaining(selectLiveShardFiles("native-live-extensions-media-music", allFiles)),

59-

);

60-

expect(mediaAlias).toEqual(

61-

expect.arrayContaining(selectLiveShardFiles("native-live-extensions-media-video", allFiles)),

53+

[

54+

...selectLiveShardFiles("native-live-extensions-media-audio", allFiles),

55+

...selectLiveShardFiles("native-live-extensions-media-music", allFiles),

56+

...selectLiveShardFiles("native-live-extensions-media-video", allFiles),

57+

].toSorted(),

6258

);

6359

});

64606561

it("keeps slow gateway backend and media-capable extension files in their own shards", () => {

66-

expect(selectLiveShardFiles("native-live-src-gateway-backends", allFiles)).toEqual(

67-

expect.arrayContaining([

68-

"src/gateway/gateway-acp-bind.live.test.ts",

69-

"src/gateway/gateway-cli-backend.live.test.ts",

70-

"src/gateway/gateway-codex-bind.live.test.ts",

71-

"src/gateway/gateway-codex-harness.live.test.ts",

72-

]),

73-

);

74-

expect(selectLiveShardFiles("native-live-src-gateway-core", allFiles)).not.toEqual(

75-

expect.arrayContaining(["src/gateway/gateway-cli-backend.live.test.ts"]),

76-

);

77-

expect(selectLiveShardFiles("native-live-src-infra", allFiles)).toEqual(

78-

expect.arrayContaining(["src/infra/push-apns-http2.live.test.ts"]),

79-

);

80-

expect(selectLiveShardFiles("native-live-test", allFiles)).toEqual(

81-

expect.arrayContaining([

82-

"test/image-generation.infer-cli.live.test.ts",

83-

"test/image-generation.runtime.live.test.ts",

84-

]),

85-

);

86-

expect(selectLiveShardFiles("native-live-extensions-media", allFiles)).toEqual(

87-

expect.arrayContaining([

88-

"extensions/openai/openai-tts.live.test.ts",

89-

"extensions/minimax/minimax.live.test.ts",

90-

"extensions/music-generation-providers.live.test.ts",

91-

"extensions/video-generation-providers.live.test.ts",

92-

"extensions/volcengine/tts.live.test.ts",

93-

"extensions/vydra/vydra.live.test.ts",

94-

]),

95-

);

96-

expect(selectLiveShardFiles("native-live-extensions-openai", allFiles)).toEqual(

97-

expect.arrayContaining(["extensions/openai/openai-provider.live.test.ts"]),

98-

);

99-

expect(selectLiveShardFiles("native-live-extensions-l-n", allFiles)).not.toEqual(

100-

expect.arrayContaining(["extensions/moonshot/moonshot.live.test.ts"]),

101-

);

62+

expect(selectLiveShardFiles("native-live-src-gateway-backends", allFiles)).toEqual([

63+

"src/gateway/gateway-acp-bind.live.test.ts",

64+

"src/gateway/gateway-cli-backend.live.test.ts",

65+

"src/gateway/gateway-codex-bind.live.test.ts",

66+

"src/gateway/gateway-codex-harness.live.test.ts",

67+

]);

68+

expect(selectLiveShardFiles("native-live-src-gateway-core", allFiles)).toEqual([

69+

"src/crestodian/rescue-channel.live.test.ts",

70+

"src/gateway/android-node.capabilities.live.test.ts",

71+

"src/gateway/gateway-trajectory-export.live.test.ts",

72+

]);

73+

expect(selectLiveShardFiles("native-live-src-infra", allFiles)).toEqual([

74+

"src/infra/push-apns-http2.live.test.ts",

75+

]);

76+

expect(selectLiveShardFiles("native-live-test", allFiles)).toEqual([

77+

"test/image-generation.infer-cli.live.test.ts",

78+

"test/image-generation.runtime.live.test.ts",

79+

]);

80+

expect(selectLiveShardFiles("native-live-extensions-media", allFiles)).toEqual([

81+

"extensions/minimax/minimax.live.test.ts",

82+

"extensions/music-generation-providers.live.test.ts",

83+

"extensions/openai/openai-tts.live.test.ts",

84+

"extensions/video-generation-providers.live.test.ts",

85+

"extensions/volcengine/tts.live.test.ts",

86+

"extensions/vydra/vydra.live.test.ts",

87+

]);

88+

expect(selectLiveShardFiles("native-live-extensions-openai", allFiles)).toEqual([

89+

"extensions/openai/openai-provider.live.test.ts",

90+

"extensions/openai/openai.live.test.ts",

91+

]);

92+

expect(selectLiveShardFiles("native-live-extensions-l-n", allFiles)).toEqual([

93+

"extensions/memory-lancedb/memory-lancedb.live.test.ts",

94+

"extensions/microsoft/microsoft.live.test.ts",

95+

"extensions/mistral/mistral.live.test.ts",

96+

]);

10297

expect(selectLiveShardFiles("native-live-extensions-moonshot", allFiles)).toEqual([

10398

"extensions/moonshot/moonshot.live.test.ts",

10499

]);