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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LangChain Blog
S
SegmentFault 最新的问题
J
Java Code Geeks
V
Visual Studio Blog
H
Help Net Security
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
月光博客
月光博客
Microsoft Security Blog
Microsoft Security 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: gate qa character concurrency · openclaw/openclaw@4...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main

@@ -40,6 +40,55 @@ function makeRunSuite(transcriptForModel: (model: string) => string = defaultMod

4040

);

4141

}

424243+

function createConcurrencyGate(expectedActive: number) {

44+

let active = 0;

45+

let maxActive = 0;

46+

let releaseStartedTasks = false;

47+

let resolveExpectedActive: () => void = () => {};

48+

const expectedActiveReached = new Promise<void>((resolve) => {

49+

resolveExpectedActive = resolve;

50+

});

51+

const taskReleases: Array<() => void> = [];

52+

const releaseQueuedTasks = () => {

53+

if (!releaseStartedTasks) {

54+

return;

55+

}

56+

let releaseTask: (() => void) | undefined;

57+

while ((releaseTask = taskReleases.shift())) {

58+

releaseTask();

59+

}

60+

};

61+62+

return {

63+

get maxActive() {

64+

return maxActive;

65+

},

66+

async run<T>(work: () => T | Promise<T>): Promise<T> {

67+

active += 1;

68+

maxActive = Math.max(maxActive, active);

69+

if (active >= expectedActive) {

70+

resolveExpectedActive();

71+

}

72+

await new Promise<void>((resolve) => {

73+

taskReleases.push(resolve);

74+

releaseQueuedTasks();

75+

});

76+

try {

77+

return await work();

78+

} finally {

79+

active -= 1;

80+

}

81+

},

82+

async waitForExpectedActive(): Promise<void> {

83+

await expectedActiveReached;

84+

},

85+

releaseStartedTasks(): void {

86+

releaseStartedTasks = true;

87+

releaseQueuedTasks();

88+

},

89+

};

90+

}

91+4392

function makeSuiteResult(params: { outputDir: string; model: string; transcript: string }) {

4493

return {

4594

outputDir: params.outputDir,

@@ -265,22 +314,17 @@ describe("runQaCharacterEval", () => {

265314

});

266315267316

it("runs candidate models with bounded concurrency while preserving result order", async () => {

268-

let activeRuns = 0;

269-

let maxActiveRuns = 0;

270-

const runSuite = vi.fn(async (params: CharacterRunSuiteParams) => {

271-

activeRuns += 1;

272-

maxActiveRuns = Math.max(maxActiveRuns, activeRuns);

273-

await new Promise((resolve) => setTimeout(resolve, 10));

274-

activeRuns -= 1;

275-

return makeReplySuiteResult(params);

276-

});

317+

const runGate = createConcurrencyGate(2);

318+

const runSuite = vi.fn(async (params: CharacterRunSuiteParams) =>

319+

runGate.run(() => makeReplySuiteResult(params)),

320+

);

277321

const runJudge = makeRunJudge([

278322

{ model: "openai/gpt-5.5", rank: 1, score: 8, summary: "ok" },

279323

{ model: "anthropic/claude-sonnet-4-6", rank: 2, score: 7, summary: "ok" },

280324

{ model: "moonshot/kimi-k2.5", rank: 3, score: 6, summary: "ok" },

281325

]);

282326283-

const result = await runQaCharacterEval({

327+

const resultPromise = runQaCharacterEval({

284328

repoRoot: tempRoot,

285329

outputDir: path.join(tempRoot, "character"),

286330

models: ["openai/gpt-5.5", "anthropic/claude-sonnet-4-6", "moonshot/kimi-k2.5"],

@@ -290,7 +334,10 @@ describe("runQaCharacterEval", () => {

290334

runJudge,

291335

});

292336293-

expect(maxActiveRuns).toBe(2);

337+

await runGate.waitForExpectedActive();

338+

expect(runGate.maxActive).toBe(2);

339+

runGate.releaseStartedTasks();

340+

const result = await resultPromise;

294341

expect(result.runs.map((run) => run.model)).toEqual([

295342

"openai/gpt-5.5",

296343

"anthropic/claude-sonnet-4-6",

@@ -299,33 +346,25 @@ describe("runQaCharacterEval", () => {

299346

});

300347301348

it("defaults candidate and judge concurrency to sixteen", async () => {

302-

let activeRuns = 0;

303-

let maxActiveRuns = 0;

304-

const runSuite = vi.fn(async (params: CharacterRunSuiteParams) => {

305-

activeRuns += 1;

306-

maxActiveRuns = Math.max(maxActiveRuns, activeRuns);

307-

await new Promise((resolve) => setTimeout(resolve, 10));

308-

activeRuns -= 1;

309-

return makeReplySuiteResult(params);

310-

});

311-

let activeJudges = 0;

312-

let maxActiveJudges = 0;

349+

const runGate = createConcurrencyGate(16);

350+

const judgeGate = createConcurrencyGate(16);

351+

const runSuite = vi.fn(async (params: CharacterRunSuiteParams) =>

352+

runGate.run(() => makeReplySuiteResult(params)),

353+

);

313354

const runJudge = vi.fn(async (_params: CharacterRunJudgeParams) => {

314-

activeJudges += 1;

315-

maxActiveJudges = Math.max(maxActiveJudges, activeJudges);

316-

await new Promise((resolve) => setTimeout(resolve, 10));

317-

activeJudges -= 1;

318-

return makeJudgeReply(

319-

Array.from({ length: 20 }, (_, index) => ({

320-

model: `provider/model-${index + 1}`,

321-

rank: index + 1,

322-

score: 10 - index,

323-

summary: "ok",

324-

})),

355+

return await judgeGate.run(() =>

356+

makeJudgeReply(

357+

Array.from({ length: 20 }, (_, index) => ({

358+

model: `provider/model-${index + 1}`,

359+

rank: index + 1,

360+

score: 10 - index,

361+

summary: "ok",

362+

})),

363+

),

325364

);

326365

});

327366328-

await runQaCharacterEval({

367+

const resultPromise = runQaCharacterEval({

329368

repoRoot: tempRoot,

330369

outputDir: path.join(tempRoot, "character"),

331370

models: Array.from({ length: 20 }, (_, index) => `provider/model-${index + 1}`),

@@ -334,8 +373,13 @@ describe("runQaCharacterEval", () => {

334373

runJudge,

335374

});

336375337-

expect(maxActiveRuns).toBe(16);

338-

expect(maxActiveJudges).toBe(16);

376+

await runGate.waitForExpectedActive();

377+

expect(runGate.maxActive).toBe(16);

378+

runGate.releaseStartedTasks();

379+

await judgeGate.waitForExpectedActive();

380+

expect(judgeGate.maxActive).toBe(16);

381+

judgeGate.releaseStartedTasks();

382+

await resultPromise;

339383

});

340384341385

it("marks raw provider error transcripts as failed output", async () => {