forked from NVIDIA/NemoClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime-shell.test.ts
More file actions
216 lines (177 loc) · 7.56 KB
/
Copy pathruntime-shell.test.ts
File metadata and controls
216 lines (177 loc) · 7.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
// @ts-nocheck
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
import { describe, it, expect } from "vitest";
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { spawnSync } from "node:child_process";
const RUNTIME_SH = path.join(import.meta.dirname, "..", "scripts", "lib", "runtime.sh");
function runShell(script, env = {}) {
return spawnSync("bash", ["-lc", script], {
cwd: path.join(import.meta.dirname, ".."),
encoding: "utf-8",
env: { ...process.env, ...env },
});
}
describe("shell runtime helpers", () => {
it("respects an existing DOCKER_HOST", () => {
const result = runShell(`source "${RUNTIME_SH}"; detect_docker_host`, {
DOCKER_HOST: "unix:///custom/docker.sock",
HOME: "/tmp/unused-home",
});
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("unix:///custom/docker.sock");
});
it("prefers Colima over Docker Desktop", () => {
const home = fs.mkdtempSync(path.join(os.tmpdir(), "nemoclaw-runtime-shell-"));
const colimaSocket = path.join(home, ".colima/default/docker.sock");
const dockerDesktopSocket = path.join(home, ".docker/run/docker.sock");
const result = runShell(`source "${RUNTIME_SH}"; detect_docker_host`, {
HOME: home,
DOCKER_HOST: "",
NEMOCLAW_TEST_SOCKET_PATHS: `${colimaSocket}:${dockerDesktopSocket}`,
});
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe(`unix://${colimaSocket}`);
fs.rmSync(home, { recursive: true, force: true });
});
it("detects Docker Desktop when Colima is absent", () => {
const home = fs.mkdtempSync(path.join(os.tmpdir(), "nemoclaw-runtime-shell-"));
const dockerDesktopSocket = path.join(home, ".docker/run/docker.sock");
const result = runShell(`source "${RUNTIME_SH}"; detect_docker_host`, {
HOME: home,
DOCKER_HOST: "",
NEMOCLAW_TEST_SOCKET_PATHS: dockerDesktopSocket,
});
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe(`unix://${dockerDesktopSocket}`);
fs.rmSync(home, { recursive: true, force: true });
});
it("classifies a Docker Desktop DOCKER_HOST correctly", () => {
const result = runShell(
`source "${RUNTIME_SH}"; docker_host_runtime "unix:///Users/test/.docker/run/docker.sock"`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("docker-desktop");
});
it("selects the matching gateway cluster when a gateway name is present", () => {
const result = runShell(
`source "${RUNTIME_SH}";
select_openshell_cluster_container "nemoclaw" $'openshell-cluster-alpha\\nopenshell-cluster-nemoclaw'`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("openshell-cluster-nemoclaw");
});
it("fails on ambiguous cluster selection", () => {
const result = runShell(
`source "${RUNTIME_SH}";
select_openshell_cluster_container "" $'openshell-cluster-a\\nopenshell-cluster-b'`,
);
expect(result.status).not.toBe(0);
});
it("finds the XDG Colima socket", () => {
const home = fs.mkdtempSync(path.join(os.tmpdir(), "nemoclaw-runtime-shell-"));
const xdgColimaSocket = path.join(home, ".config/colima/default/docker.sock");
const result = runShell(`source "${RUNTIME_SH}"; find_colima_docker_socket`, {
HOME: home,
NEMOCLAW_TEST_SOCKET_PATHS: xdgColimaSocket,
});
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe(xdgColimaSocket);
fs.rmSync(home, { recursive: true, force: true });
});
it("detects podman from docker info output", () => {
const result = runShell(
`source "${RUNTIME_SH}"; infer_container_runtime_from_info "podman version 5.4.1"`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("podman");
});
it("detects Podman socket on macOS", () => {
const home = fs.mkdtempSync(path.join(os.tmpdir(), "nemoclaw-runtime-shell-"));
const podmanSocket = path.join(home, ".local/share/containers/podman/machine/podman.sock");
const result = runShell(
`uname() { printf 'Darwin\\n'; }; source "${RUNTIME_SH}"; find_podman_socket`,
{
HOME: home,
NEMOCLAW_TEST_SOCKET_PATHS: podmanSocket,
},
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe(podmanSocket);
fs.rmSync(home, { recursive: true, force: true });
});
it("classifies a Podman DOCKER_HOST correctly", () => {
const result = runShell(
`source "${RUNTIME_SH}"; docker_host_runtime "unix:///run/user/1000/podman/podman.sock"`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("podman");
});
it("classifies a Podman machine socket correctly", () => {
const result = runShell(
`source "${RUNTIME_SH}"; docker_host_runtime "unix:///Users/test/.local/share/containers/podman/machine/podman.sock"`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("podman");
});
it("returns the vllm-local base URL", () => {
const result = runShell(`source "${RUNTIME_SH}"; get_local_provider_base_url vllm-local`);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("http://host.openshell.internal:8000/v1");
});
it("returns the ollama-local base URL", () => {
const result = runShell(`source "${RUNTIME_SH}"; get_local_provider_base_url ollama-local`);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("http://host.openshell.internal:11434/v1");
});
it("rejects unknown local providers", () => {
const result = runShell(`source "${RUNTIME_SH}"; get_local_provider_base_url bogus-provider`);
expect(result.status).not.toBe(0);
});
it("returns the first non-loopback nameserver", () => {
const result = runShell(
`source "${RUNTIME_SH}"; first_non_loopback_nameserver $'nameserver 127.0.0.11\\nnameserver 10.0.0.2'`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("10.0.0.2");
});
it("prefers the container nameserver when it is not loopback", () => {
const result = runShell(
`source "${RUNTIME_SH}"; resolve_coredns_upstream $'nameserver 10.0.0.2' $'nameserver 1.1.1.1' colima`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("10.0.0.2");
});
it("falls back to the Colima VM nameserver when the container resolver is loopback", () => {
const result = runShell(
`source "${RUNTIME_SH}";
get_colima_vm_nameserver() { printf '192.168.5.1\\n'; }
resolve_coredns_upstream $'nameserver 127.0.0.11' $'nameserver 1.1.1.1' colima`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("192.168.5.1");
});
it("falls back to the host nameserver when no Colima VM nameserver is available", () => {
const result = runShell(
`source "${RUNTIME_SH}";
get_colima_vm_nameserver() { return 1; }
resolve_coredns_upstream $'nameserver 127.0.0.11' $'nameserver 9.9.9.9' colima`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("9.9.9.9");
});
it("does not consume installer stdin when reading the Colima VM nameserver", () => {
const result = runShell(
`function colima() { cat > /dev/null || true; printf 'nameserver 100.100.100.100\\n'; }
source "${RUNTIME_SH}"
printf 'sandbox-answer\\n' | {
get_colima_vm_nameserver > /tmp/nemoclaw-colima-ns.out
cat
}`,
);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe("sandbox-answer");
});
});