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

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
D
Docker
N
Netflix TechBlog - Medium
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
博客园_首页
量子位
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
D
DataBreaches.Net
I
InfoQ
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
H
Help Net Security
V
V2EX

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
fix(test): guard force runner help · openclaw/openclaw@f6...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,9 +2,31 @@

22

import { spawnSync } from "node:child_process";

33

import os from "node:os";

44

import path from "node:path";

5+

import { pathToFileURL } from "node:url";

56

import { forceFreePort, type PortProcess } from "../src/cli/ports.js";

67

import { resolveGatewayPort } from "../src/config/config.js";

78
9+

function usage(): string {

10+

return [

11+

"Usage: node --import tsx scripts/test-force.ts",

12+

"",

13+

"Clears the configured OpenClaw gateway port, then runs the local test suite.",

14+

"",

15+

"Options:",

16+

" -h, --help Show this help.",

17+

].join("\n");

18+

}

19+
20+

function parseArgs(argv: readonly string[]): { help: boolean } {

21+

for (const arg of argv) {

22+

if (arg === "--help" || arg === "-h") {

23+

return { help: true };

24+

}

25+

throw new Error(`unknown argument: ${arg}\n\n${usage()}`);

26+

}

27+

return { help: false };

28+

}

29+
830

function killGatewayListeners(port: number): PortProcess[] {

931

try {

1032

const killed = forceFreePort(port);

@@ -42,7 +64,13 @@ function runTests() {

4264

process.exit(result.status ?? 1);

4365

}

4466
45-

function main() {

67+

export function main(argv: readonly string[] = process.argv.slice(2)) {

68+

const args = parseArgs(argv);

69+

if (args.help) {

70+

console.log(usage());

71+

return;

72+

}

73+
4674

const port = resolveGatewayPort(undefined, process.env);

4775
4876

console.log(`🧹 test:force - clearing gateway on port ${port}`);

@@ -55,4 +83,11 @@ function main() {

5583

runTests();

5684

}

5785
58-

main();

86+

if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {

87+

try {

88+

main();

89+

} catch (error) {

90+

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

91+

process.exit(2);

92+

}

93+

}

Original file line numberDiff line numberDiff line change

@@ -408,6 +408,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

408408

["scripts/docker-e2e-timings.mjs", ["test/scripts/docker-e2e-helper-cli.test.ts"]],

409409

["scripts/kova-ci-summary.mjs", ["test/scripts/kova-ci-summary.test.ts"]],

410410

["scripts/test-extension-batch.mjs", ["test/scripts/test-extension.test.ts"]],

411+

["scripts/test-force.ts", ["test/scripts/test-force.test.ts"]],

411412

["scripts/zai-fallback-repro.ts", ["test/scripts/zai-fallback-repro.test.ts"]],

412413

["scripts/lib/extension-test-plan.mjs", ["test/scripts/test-extension.test.ts"]],

413414

["scripts/lib/vitest-batch-runner.mjs", ["test/scripts/test-extension.test.ts"]],

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,31 @@

1+

import { spawnSync } from "node:child_process";

2+

import { describe, expect, it } from "vitest";

3+
4+

function runTestForce(...args: string[]) {

5+

return spawnSync(process.execPath, ["--import", "tsx", "scripts/test-force.ts", ...args], {

6+

cwd: process.cwd(),

7+

encoding: "utf8",

8+

});

9+

}

10+
11+

describe("scripts/test-force.ts", () => {

12+

it("prints help without clearing ports or running tests", () => {

13+

const result = runTestForce("--help");

14+
15+

expect(result.status).toBe(0);

16+

expect(result.stderr).toBe("");

17+

expect(result.stdout).toContain("Usage: node --import tsx scripts/test-force.ts");

18+

expect(result.stdout).not.toContain("test:force - clearing gateway");

19+

expect(result.stdout).not.toContain("running pnpm test");

20+

});

21+
22+

it("rejects unknown arguments before clearing ports or running tests", () => {

23+

const result = runTestForce("--bogus");

24+
25+

expect(result.status).toBe(2);

26+

expect(result.stderr).toContain("unknown argument: --bogus");

27+

expect(result.stderr).toContain("Usage: node --import tsx scripts/test-force.ts");

28+

expect(result.stdout).not.toContain("test:force - clearing gateway");

29+

expect(result.stdout).not.toContain("running pnpm test");

30+

});

31+

});

Original file line numberDiff line numberDiff line change

@@ -300,6 +300,13 @@ describe("scripts/test-projects changed-target routing", () => {

300300

});

301301

});

302302
303+

it("keeps force-test runner edits on its safe CLI tests", () => {

304+

expect(resolveChangedTestTargetPlan(["scripts/test-force.ts"])).toEqual({

305+

mode: "targets",

306+

targets: ["test/scripts/test-force.test.ts"],

307+

});

308+

});

309+
303310

it("keeps sharded oxlint runner edits on oxlint runner tests", () => {

304311

expect(resolveChangedTestTargetPlan(["scripts/run-oxlint-shards.mjs"])).toEqual({

305312

mode: "targets",

@@ -312,6 +319,7 @@ describe("scripts/test-projects changed-target routing", () => {

312319

findUnmatchedExplicitTestTargets([

313320

"scripts/check-dynamic-import-warts.mjs",

314321

"scripts/run-oxlint-shards.mjs",

322+

"scripts/test-force.ts",

315323

"scripts/tsdown-build.mjs",

316324

]),

317325

).toEqual([]);

@@ -320,9 +328,16 @@ describe("scripts/test-projects changed-target routing", () => {

320328

buildVitestRunPlans([

321329

"scripts/check-dynamic-import-warts.mjs",

322330

"scripts/run-oxlint-shards.mjs",

331+

"scripts/test-force.ts",

323332

"scripts/tsdown-build.mjs",

324333

]),

325334

).toEqual([

335+

{

336+

config: "test/vitest/vitest.unit-fast.config.ts",

337+

forwardedArgs: [],

338+

includePatterns: ["test/scripts/test-force.test.ts"],

339+

watchMode: false,

340+

},

326341

{

327342

config: "test/vitest/vitest.tooling.config.ts",

328343

forwardedArgs: [],