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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
F
Fortinet All Blogs
H
Help Net Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
MyScale Blog
MyScale Blog
B
Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园_首页
L
LangChain Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

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(qa): support packaged gateway live lanes · openclaw/...
obviyus · 2026-04-24 · via Recent Commits to openclaw:main

@@ -54,6 +54,13 @@ export type QaGatewayChildStateMutationContext = {

5454

tempRoot: string;

5555

};

565657+

export type QaGatewayChildCommand = {

58+

executablePath: string;

59+

argsPrefix?: string[];

60+

cwd?: string;

61+

usePackagedPlugins?: boolean;

62+

};

63+5764

async function getFreePort() {

5865

return await new Promise<number>((resolve, reject) => {

5966

const server = net.createServer();

@@ -435,6 +442,7 @@ export function resolveQaControlUiRoot(params: { repoRoot: string; controlUiEnab

435442436443

export async function startQaGatewayChild(params: {

437444

repoRoot: string;

445+

command?: QaGatewayChildCommand;

438446

providerBaseUrl?: string;

439447

transport: Pick<QaTransportAdapter, "requiredPluginIds" | "createGatewayConfig">;

440448

transportBaseUrl: string;

@@ -455,6 +463,10 @@ export async function startQaGatewayChild(params: {

455463

);

456464

const runtimeCwd = tempRoot;

457465

const distEntryPath = path.join(params.repoRoot, "dist", "index.js");

466+

const gatewayCommand = params.command;

467+

const gatewayExecutablePath = gatewayCommand?.executablePath;

468+

const gatewayArgsPrefix = gatewayCommand?.argsPrefix ?? [];

469+

const gatewayCwd = gatewayCommand?.cwd ?? runtimeCwd;

458470

const workspaceDir = path.join(tempRoot, "workspace");

459471

const stateDir = path.join(tempRoot, "state");

460472

const homeDir = path.join(tempRoot, "home");

@@ -558,7 +570,17 @@ export async function startQaGatewayChild(params: {

558570

let env: NodeJS.ProcessEnv | null = null;

559571560572

try {

561-

const nodeExecPath = await resolveQaNodeExecPath();

573+

const nodeExecPath = gatewayExecutablePath ?? (await resolveQaNodeExecPath());

574+

const buildGatewayArgs = () => [

575+

...(gatewayExecutablePath ? gatewayArgsPrefix : [distEntryPath, ...gatewayArgsPrefix]),

576+

"gateway",

577+

"run",

578+

"--port",

579+

String(gatewayPort),

580+

"--bind",

581+

"loopback",

582+

"--allow-unconfigured",

583+

];

562584

for (let attempt = 1; attempt <= QA_GATEWAY_CHILD_STARTUP_MAX_ATTEMPTS; attempt += 1) {

563585

gatewayPort = await getFreePort();

564586

baseUrl = `http://127.0.0.1:${gatewayPort}`;

@@ -574,16 +596,22 @@ export async function startQaGatewayChild(params: {

574596

);

575597

},

576598

);

577-

const { bundledPluginsDir, stagedRoot } = await createQaBundledPluginsDir({

578-

repoRoot: params.repoRoot,

579-

tempRoot,

580-

allowedPluginIds,

581-

});

582-

stagedBundledPluginsRoot = stagedRoot;

583-

const runtimeHostVersion = await resolveQaRuntimeHostVersion({

584-

repoRoot: params.repoRoot,

585-

allowedPluginIds,

586-

});

599+

const stagedPluginRuntime = gatewayCommand?.usePackagedPlugins

600+

? { bundledPluginsDir: undefined, runtimeHostVersion: undefined }

601+

: {

602+

...(await createQaBundledPluginsDir({

603+

repoRoot: params.repoRoot,

604+

tempRoot,

605+

allowedPluginIds,

606+

})),

607+

runtimeHostVersion: await resolveQaRuntimeHostVersion({

608+

repoRoot: params.repoRoot,

609+

allowedPluginIds,

610+

}),

611+

};

612+

if ("stagedRoot" in stagedPluginRuntime) {

613+

stagedBundledPluginsRoot = stagedPluginRuntime.stagedRoot;

614+

}

587615

env = buildQaRuntimeEnv({

588616

configPath,

589617

gatewayToken,

@@ -593,8 +621,8 @@ export async function startQaGatewayChild(params: {

593621

xdgConfigHome,

594622

xdgDataHome,

595623

xdgCacheHome,

596-

bundledPluginsDir,

597-

compatibilityHostVersion: runtimeHostVersion,

624+

bundledPluginsDir: stagedPluginRuntime.bundledPluginsDir,

625+

compatibilityHostVersion: stagedPluginRuntime.runtimeHostVersion,

598626

providerMode,

599627

forwardHostHomeForClaudeCli: liveProviderIds.includes("claude-cli"),

600628

claudeCliAuthMode: params.claudeCliAuthMode,

@@ -608,25 +636,12 @@ export async function startQaGatewayChild(params: {

608636

throw new Error("qa gateway runtime env not initialized");

609637

}

610638611-

const attemptChild = spawn(

612-

nodeExecPath,

613-

[

614-

distEntryPath,

615-

"gateway",

616-

"run",

617-

"--port",

618-

String(gatewayPort),

619-

"--bind",

620-

"loopback",

621-

"--allow-unconfigured",

622-

],

623-

{

624-

cwd: runtimeCwd,

625-

env,

626-

detached: process.platform !== "win32",

627-

stdio: ["ignore", "pipe", "pipe"],

628-

},

629-

);

639+

const attemptChild = spawn(nodeExecPath, buildGatewayArgs(), {

640+

cwd: gatewayCwd,

641+

env,

642+

detached: process.platform !== "win32",

643+

stdio: ["ignore", "pipe", "pipe"],

644+

});

630645

attemptChild.stdout.on("data", (chunk) => {

631646

const buffer = Buffer.from(chunk);

632647

stdout.push(buffer);

@@ -714,25 +729,12 @@ export async function startQaGatewayChild(params: {

714729

const runningEnv = env;

715730716731

const spawnReplacementGatewayChild = async () => {

717-

const nextChild = spawn(

718-

nodeExecPath,

719-

[

720-

distEntryPath,

721-

"gateway",

722-

"run",

723-

"--port",

724-

String(gatewayPort),

725-

"--bind",

726-

"loopback",

727-

"--allow-unconfigured",

728-

],

729-

{

730-

cwd: runtimeCwd,

731-

env: runningEnv,

732-

detached: process.platform !== "win32",

733-

stdio: ["ignore", "pipe", "pipe"],

734-

},

735-

);

732+

const nextChild = spawn(nodeExecPath, buildGatewayArgs(), {

733+

cwd: gatewayCwd,

734+

env: runningEnv,

735+

detached: process.platform !== "win32",

736+

stdio: ["ignore", "pipe", "pipe"],

737+

});

736738

nextChild.stdout.on("data", (chunk) => {

737739

const buffer = Buffer.from(chunk);

738740

stdout.push(buffer);