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

推荐订阅源

Jina AI
Jina AI
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
J
Java Code Geeks
博客园 - 聂微东
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
腾讯CDC
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
美团技术团队
博客园 - Franky
Google DeepMind News
Google DeepMind News
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
The Cloudflare 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
ci: shard release live validation · openclaw/openclaw@224...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -0,0 +1,144 @@

1+

#!/usr/bin/env node

2+

import fs from "node:fs";

3+

import path from "node:path";

4+

import { fileURLToPath } from "node:url";

5+

import { spawnPnpmRunner } from "./pnpm-runner.mjs";

6+7+

const LIVE_TEST_SUFFIX = ".live.test.ts";

8+9+

export const LIVE_TEST_SHARDS = Object.freeze([

10+

"native-live-src-agents",

11+

"native-live-src-gateway",

12+

"native-live-test",

13+

"native-live-extensions-a-k",

14+

"native-live-extensions-l-z",

15+

]);

16+17+

function walkFiles(rootDir) {

18+

const files = [];

19+

if (!fs.existsSync(rootDir)) {

20+

return files;

21+

}

22+

const stack = [rootDir];

23+

while (stack.length > 0) {

24+

const current = stack.pop();

25+

const entries = fs.readdirSync(current, { withFileTypes: true });

26+

for (const entry of entries) {

27+

const fullPath = path.join(current, entry.name);

28+

if (entry.isDirectory()) {

29+

if (

30+

entry.name === "node_modules" ||

31+

entry.name === "dist" ||

32+

entry.name === "vendor" ||

33+

entry.name === "fixtures"

34+

) {

35+

continue;

36+

}

37+

stack.push(fullPath);

38+

continue;

39+

}

40+

if (entry.isFile()) {

41+

files.push(fullPath);

42+

}

43+

}

44+

}

45+

return files;

46+

}

47+48+

export function collectAllLiveTestFiles(repoRoot = process.cwd()) {

49+

return ["src", "test", "extensions"]

50+

.flatMap((dir) => walkFiles(path.join(repoRoot, dir)))

51+

.map((file) => path.relative(repoRoot, file).split(path.sep).join("/"))

52+

.filter((file) => file.endsWith(LIVE_TEST_SUFFIX))

53+

.sort((a, b) => a.localeCompare(b));

54+

}

55+56+

function extensionKey(file) {

57+

const relative = file.slice("extensions/".length);

58+

return relative.split("/", 1)[0]?.toLowerCase() ?? "";

59+

}

60+61+

function isExtensionInRange(file, start, end) {

62+

if (!file.startsWith("extensions/")) {

63+

return false;

64+

}

65+

const key = extensionKey(file);

66+

if (!key) {

67+

return false;

68+

}

69+

const first = key[0];

70+

return first >= start && first <= end;

71+

}

72+73+

export function selectLiveShardFiles(shard, files = collectAllLiveTestFiles()) {

74+

switch (shard) {

75+

case "native-live-src-agents":

76+

return files.filter((file) => file.startsWith("src/agents/"));

77+

case "native-live-src-gateway":

78+

return files.filter(

79+

(file) => file.startsWith("src/gateway/") || file.startsWith("src/crestodian/"),

80+

);

81+

case "native-live-test":

82+

return files.filter((file) => file.startsWith("test/"));

83+

case "native-live-extensions-a-k":

84+

return files.filter((file) => isExtensionInRange(file, "a", "k"));

85+

case "native-live-extensions-l-z":

86+

return files.filter((file) => isExtensionInRange(file, "l", "z"));

87+

default:

88+

throw new Error(

89+

`Unknown live test shard '${shard}'. Expected one of: ${LIVE_TEST_SHARDS.join(", ")}`,

90+

);

91+

}

92+

}

93+94+

function usage() {

95+

console.error(`Usage: node scripts/test-live-shard.mjs <${LIVE_TEST_SHARDS.join("|")}> [--list]`);

96+

}

97+98+

if (process.argv[1] && path.resolve(process.argv[1]) === fileURLToPath(import.meta.url)) {

99+

const args = process.argv.slice(2);

100+

const shard = args.find((arg) => !arg.startsWith("-"));

101+

const listOnly = args.includes("--list");

102+

if (!shard) {

103+

usage();

104+

process.exit(2);

105+

}

106+107+

let files;

108+

try {

109+

files = selectLiveShardFiles(shard);

110+

} catch (error) {

111+

console.error(error instanceof Error ? error.message : String(error));

112+

usage();

113+

process.exit(2);

114+

}

115+

if (files.length === 0) {

116+

console.error(`Live test shard '${shard}' selected no files.`);

117+

process.exit(2);

118+

}

119+120+

if (listOnly) {

121+

for (const file of files) {

122+

console.log(file);

123+

}

124+

process.exit(0);

125+

}

126+127+

console.log(`[test:live:shard] ${shard}: ${files.length} file(s)`);

128+

const child = spawnPnpmRunner({

129+

stdio: "inherit",

130+

pnpmArgs: ["test:live", "--", ...files],

131+

env: process.env,

132+

});

133+

child.on("exit", (code, signal) => {

134+

if (signal) {

135+

process.kill(process.pid, signal);

136+

return;

137+

}

138+

process.exit(code ?? 1);

139+

});

140+

child.on("error", (error) => {

141+

console.error(error);

142+

process.exit(1);

143+

});

144+

}