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

推荐订阅源

博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
博客园 - Franky
IT之家
IT之家
V
Visual Studio Blog
博客园 - 【当耐特】
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
博客园 - 叶小钗
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
罗磊的独立博客
小众软件
小众软件
Jina AI
Jina AI

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(openshell): use NVIDIA CLI contract · openclaw/opencl...
sallyom · 2026-05-21 · via Recent Commits to openclaw:main

@@ -5,10 +5,11 @@ import { createSandboxTestContext } from "openclaw/plugin-sdk/test-fixtures";

55

import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

66

import type { OpenShellSandboxBackend } from "./backend.js";

77

import {

8+

applyGatewayEndpointToSshConfig,

89

buildExecRemoteCommand,

910

buildOpenShellBaseArgv,

1011

resolveOpenShellCommand,

11-

setBundledOpenShellCommandResolverForTest,

12+

runOpenShellCli,

1213

shellEscape,

1314

} from "./cli.js";

1415

import { resolveOpenShellPluginConfig } from "./config.js";

@@ -20,8 +21,15 @@ const cliMocks = vi.hoisted(() => ({

2021

let createOpenShellSandboxBackendManager: typeof import("./backend.js").createOpenShellSandboxBackendManager;

21222223

describe("openshell cli helpers", () => {

24+

const originalEnv = { ...process.env };

25+2326

afterEach(() => {

24-

setBundledOpenShellCommandResolverForTest();

27+

for (const key of Object.keys(process.env)) {

28+

if (!(key in originalEnv)) {

29+

delete process.env[key];

30+

}

31+

}

32+

Object.assign(process.env, originalEnv);

2533

});

26342735

it("builds base argv with gateway overrides", () => {

@@ -39,18 +47,17 @@ describe("openshell cli helpers", () => {

3947

]);

4048

});

414942-

it("prefers the bundled openshell command when available", () => {

43-

setBundledOpenShellCommandResolverForTest(() => "/tmp/node_modules/.bin/openshell");

50+

it("uses the configured NVIDIA OpenShell CLI command directly", () => {

4451

const config = resolveOpenShellPluginConfig(undefined);

455246-

expect(resolveOpenShellCommand("openshell")).toBe("/tmp/node_modules/.bin/openshell");

47-

expect(buildOpenShellBaseArgv(config)).toEqual(["/tmp/node_modules/.bin/openshell"]);

53+

expect(resolveOpenShellCommand("openshell")).toBe("openshell");

54+

expect(buildOpenShellBaseArgv(config)).toEqual(["openshell"]);

4855

});

495650-

it("falls back to the PATH command when no bundled openshell is present", () => {

51-

setBundledOpenShellCommandResolverForTest(() => null);

52-53-

expect(resolveOpenShellCommand("openshell")).toBe("openshell");

57+

it("preserves an explicit NVIDIA OpenShell CLI path", () => {

58+

expect(resolveOpenShellCommand("/opt/openshell/bin/openshell")).toBe(

59+

"/opt/openshell/bin/openshell",

60+

);

5461

});

55625663

it("shell escapes single quotes", () => {

@@ -69,6 +76,70 @@ describe("openshell cli helpers", () => {

6976

expect(command).toContain(`'TOKEN=abc 123'`);

7077

expect(command).toContain(`'cd '"'"'/sandbox/project'"'"' && pwd && printenv TOKEN'`);

7178

});

79+80+

it("passes direct gateway endpoints to openshell commands without registration", async () => {

81+

const calls: string[][] = [];

82+

const openshellCommand = await makeExecutable({

83+

name: "openshell",

84+

script: ["#!/bin/sh", `printf '%s\\n' "$*" >> "__LOG__"`, "exit 0"].join("\n"),

85+

});

86+87+

await runOpenShellCli({

88+

context: {

89+

sandboxName: "demo",

90+

config: resolveOpenShellPluginConfig({

91+

command: openshellCommand,

92+

gateway: "alice",

93+

gatewayEndpoint: "http://openshell.openshell-alice.svc.cluster.local:8080",

94+

}),

95+

},

96+

args: ["sandbox", "get", "demo"],

97+

});

98+99+

const log = await fs.readFile(process.env.OPEN_SHELL_CLI_TEST_LOG as string, "utf8");

100+

for (const line of log.trim().split("\n")) {

101+

calls.push(line.split(" "));

102+

}

103+

expect(calls[0]).toEqual([

104+

"--gateway",

105+

"alice",

106+

"--gateway-endpoint",

107+

"http://openshell.openshell-alice.svc.cluster.local:8080",

108+

"sandbox",

109+

"get",

110+

"demo",

111+

]);

112+

});

113+114+

it("adds direct gateway endpoints to generated ssh proxy configs", () => {

115+

const configText = [

116+

"Host openshell-demo",

117+

" User sandbox",

118+

" ProxyCommand /usr/local/bin/openshell ssh-proxy --gateway-name alice --name demo",

119+

"",

120+

].join("\n");

121+122+

expect(

123+

applyGatewayEndpointToSshConfig({

124+

configText,

125+

gatewayEndpoint: "http://openshell.openshell-alice.svc.cluster.local:8080",

126+

}),

127+

).toContain(

128+

"ProxyCommand /usr/local/bin/openshell ssh-proxy --gateway-name alice --name demo --server 'http://openshell.openshell-alice.svc.cluster.local:8080'",

129+

);

130+

});

131+132+

it("leaves ssh proxy configs with an explicit endpoint unchanged", () => {

133+

const configText =

134+

"Host openshell-demo\n ProxyCommand openshell ssh-proxy --gateway-name alice --name demo --server 'http://existing'\n";

135+136+

expect(

137+

applyGatewayEndpointToSshConfig({

138+

configText,

139+

gatewayEndpoint: "http://replacement",

140+

}),

141+

).toBe(configText);

142+

});

72143

});

7314474145

describe("openshell backend manager", () => {

@@ -200,6 +271,16 @@ async function makeTempDir(prefix: string) {

200271

return dir;

201272

}

202273274+

async function makeExecutable(params: { name: string; script: string }): Promise<string> {

275+

const dir = await makeTempDir("openclaw-openshell-bin-");

276+

const file = path.join(dir, params.name);

277+

const logPath = path.join(dir, "openshell.log");

278+

await fs.writeFile(file, params.script.replaceAll("__LOG__", logPath), { mode: 0o755 });

279+

await fs.chmod(file, 0o755);

280+

process.env.OPEN_SHELL_CLI_TEST_LOG = logPath;

281+

return file;

282+

}

283+203284

async function expectPathMissing(targetPath: string): Promise<void> {

204285

let error: unknown;

205286

try {