ssh-cli 0.5.2

Native Rust CLI that gives LLMs (Claude Code, Cursor, Windsurf) the ability to operate remote servers via SSH over stdin/stdout
Documentation
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Integration tests for ssh-cli 0.5.1 gap closures (GAP-AUD-20260717-*).

use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::TempDir;

fn cmd(tmp: &TempDir) -> Command {
    let mut c = Command::cargo_bin("ssh-cli").unwrap();
    c.env_clear();
    c.env("HOME", tmp.path());
    c.env("PATH", std::env::var("PATH").unwrap_or_default());
    c.env("XDG_CONFIG_HOME", tmp.path());
    c.args(["--config-dir", tmp.path().to_str().unwrap()]);
    c
}

fn seed_host(tmp: &TempDir, name: &str) {
    cmd(tmp)
        .args([
            "secrets",
            "init",
            "--json",
            "--allow-plaintext-secrets",
        ])
        .assert()
        .success();
    // force plaintext for simple roundtrips in this suite when needed
    cmd(tmp)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "add",
            "--name",
            name,
            "--host",
            "127.0.0.1",
            "--user",
            "u",
            "--password",
            "pw-test-secret-not-real",
            "--timeout",
            "5000",
        ])
        .assert()
        .success();
}

#[test]
fn export_pipe_defaults_to_json_when_non_tty() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "e1");
    // G-AUD-03: non-TTY / global Json → JSON export envelope; force TOML with --output-format text.
    let out = cmd(&tmp)
        .args(["vps", "export"])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let s = String::from_utf8_lossy(&out);
    assert!(
        s.trim_start().starts_with('{') && s.contains("vps-export"),
        "export pipe must be JSON envelope under non-TTY: {s}"
    );
    let toml_out = cmd(&tmp)
        .args(["--output-format", "text", "vps", "export"])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let t = String::from_utf8_lossy(&toml_out);
    assert!(
        t.contains("[hosts.") || t.contains("name =") || t.contains("schema_version"),
        "export with --output-format text must be TOML, got: {t}"
    );
}

#[test]
fn export_json_flag_envelope() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "e2");
    cmd(&tmp)
        .args(["vps", "export", "--json"])
        .assert()
        .success()
        .stdout(predicate::str::contains("vps-export"))
        .stdout(predicate::str::contains("\"ok\""));
}

#[test]
fn export_import_toml_roundtrip() {
    let tmp = TempDir::new().unwrap();
    // Plaintext at-rest so export include-secrets is portable without copying secrets.key.
    cmd(&tmp)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "add",
            "--name",
            "rt",
            "--host",
            "127.0.0.1",
            "--user",
            "u",
            "--password",
            "pw-roundtrip-plain",
        ])
        .assert()
        .success();
    let export = tmp.path().join("exp.toml");
    cmd(&tmp)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "export",
            "--include-secrets",
            "--output",
            export.to_str().unwrap(),
        ])
        .assert()
        .success();
    let text = std::fs::read_to_string(&export).unwrap();
    assert!(
        !text.contains("sshcli-enc:"),
        "plaintext export expected: {text}"
    );
    let tmp2 = TempDir::new().unwrap();
    cmd(&tmp2)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "import",
            "--file",
            export.to_str().unwrap(),
        ])
        .assert()
        .success();
    cmd(&tmp2)
        .args(["vps", "list"])
        .assert()
        .success()
        .stdout(predicate::str::contains("rt"));
}

#[test]
fn import_english_fields() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args(["secrets", "init", "--allow-plaintext-secrets"])
        .assert()
        .success();
    let f = tmp.path().join("en.toml");
    fs::write(
        &f,
        r#"
schema_version = 3

[hosts.enhost]
name = "enhost"
host = "10.0.0.1"
port = 22
username = "admin"
password = "secret-en-only"
timeout_ms = 60000
schema_version = 3
"#,
    )
    .unwrap();
    cmd(&tmp)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "import",
            "--file",
            f.to_str().unwrap(),
        ])
        .assert()
        .success();
    cmd(&tmp)
        .args(["vps", "show", "enhost"])
        .assert()
        .success()
        .stdout(predicate::str::contains("10.0.0.1"));
}

#[test]
fn import_pt_without_added_at() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args(["secrets", "init", "--allow-plaintext-secrets"])
        .assert()
        .success();
    let f = tmp.path().join("pt.toml");
    fs::write(
        &f,
        r#"
schema_version = 2

[hosts.pthost]
nome = "pthost"
host = "10.0.0.2"
porta = 22
usuario = "root"
senha = "secret-pt"
timeout_ms = 60000
schema_version = 2
"#,
    )
    .unwrap();
    cmd(&tmp)
        .args([
            "--allow-plaintext-secrets",
            "vps",
            "import",
            "--file",
            f.to_str().unwrap(),
        ])
        .assert()
        .success();
}

#[test]
fn import_bad_toml_exit_65() {
    let tmp = TempDir::new().unwrap();
    let f = tmp.path().join("bad.toml");
    fs::write(&f, "this is not = valid [toml").unwrap();
    cmd(&tmp)
        .args(["vps", "import", "--file", f.to_str().unwrap()])
        .assert()
        .failure()
        .code(65);
}

#[test]
fn secrets_init_json_envelope() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args(["secrets", "init", "--json"])
        .assert()
        .success()
        .stdout(predicate::str::contains("secrets-init"))
        .stdout(predicate::str::contains("\"ok\""));
}

#[test]
fn empty_command_english() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "c1");
    // Will fail connect (no ssh) but empty command should fail before with invalid argument
    let out = cmd(&tmp)
        .args(["--lang", "en-US", "exec", "c1", "   "])
        .assert()
        .failure()
        .get_output()
        .stderr
        .clone();
    let s = String::from_utf8_lossy(&out);
    assert!(
        s.contains("empty command") || s.contains("invalid argument"),
        "expected EN empty command, got: {s}"
    );
    assert!(!s.contains("comando vazio"), "must not contain PT hardcode: {s}");
}

#[test]
fn crud_add_json_success_event() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args(["secrets", "init", "--allow-plaintext-secrets"])
        .assert()
        .success();
    cmd(&tmp)
        .args([
            "--output-format",
            "json",
            "--allow-plaintext-secrets",
            "vps",
            "add",
            "--name",
            "j1",
            "--host",
            "1.1.1.1",
            "--user",
            "u",
            "--password",
            "pw-json-add",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("vps-added").or(predicate::str::contains("secrets-key-auto-created")));
}

#[test]
fn include_secrets_pipe_refused_without_ack() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "sec");
    // Non-TTY by default in assert_cmd
    cmd(&tmp)
        .args(["vps", "export", "--include-secrets"])
        .assert()
        .failure()
        .code(64);
}

#[test]
fn wire_serialize_english_keys() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "w1");
    let cfg = fs::read_to_string(tmp.path().join("config.toml")).unwrap();
    assert!(cfg.contains("name =") || cfg.contains("[hosts.w1]"));
    assert!(!cfg.contains("nome ="), "must not write PT nome: {cfg}");
    assert!(!cfg.contains("porta ="), "must not write PT porta: {cfg}");
}

/// G-PAR-23: multi-host `--all` with empty registry fails closed (no fan-out spawn).
#[test]
fn health_check_all_empty_registry_exits_usage() {
    let tmp = TempDir::new().unwrap();
    // No hosts registered — fan-out path must reject before Semaphore work.
    cmd(&tmp)
        .args([
            "--max-concurrency",
            "4",
            "health-check",
            "--all",
            "--json",
        ])
        .assert()
        .failure()
        .code(64)
        // Agent error envelope on stderr when JSON mode is active.
        .stderr(predicate::str::contains("no hosts registered for --all"))
        .stderr(predicate::str::contains("\"exit_code\":64"));
}

/// G-PAR-23: global `--max-concurrency` is accepted with multi-host flags.
#[test]
fn max_concurrency_with_exec_all_empty_registry() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args([
            "--max-concurrency",
            "2",
            "exec",
            "--all",
            "true",
            "--json",
        ])
        .assert()
        .failure()
        .code(64);
}

/// G-PAR-32: `--hosts` with empty registry fails closed (no fan-out spawn).
#[test]
fn exec_hosts_empty_registry_exits_usage() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args([
            "--max-concurrency",
            "4",
            "exec",
            "--hosts",
            "a,b",
            "true",
            "--json",
        ])
        .assert()
        .failure()
        .code(64)
        .stderr(predicate::str::contains("no hosts registered for --hosts"));
}

/// G-PAR-32: unknown host in `--hosts` fails closed.
#[test]
fn health_check_hosts_unknown_exits_usage() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "real");
    cmd(&tmp)
        .args(["health-check", "--hosts", "ghost", "--json"])
        .assert()
        .failure()
        .code(64)
        .stderr(predicate::str::contains("unknown host(s) for --hosts"));
}

/// G-PAR-32: clap rejects `--all` combined with `--hosts`.
#[test]
fn exec_all_hosts_conflict() {
    let tmp = TempDir::new().unwrap();
    cmd(&tmp)
        .args(["exec", "--all", "--hosts", "a", "true"])
        .assert()
        .failure();
}

/// G-PAR-42: doctor without probe is a single JSON root with event vps-doctor.
#[test]
fn doctor_json_single_root_envelope() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "d1");
    let out = cmd(&tmp)
        .args(["vps", "doctor", "--json"])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let s = String::from_utf8_lossy(&out);
    // Single root: one JSON object, envelope fields present (no dual health-check root).
    assert!(
        s.trim_start().starts_with('{'),
        "doctor JSON must start with object: {s}"
    );
    assert!(
        s.contains("\"event\":\"vps-doctor\"") || s.contains("\"event\": \"vps-doctor\""),
        "event vps-doctor missing: {s}"
    );
    assert!(s.contains("\"local\""), "local nested missing: {s}");
    assert!(
        s.contains("\"ssh_probe\":null") || s.contains("\"ssh_probe\": null"),
        "ssh_probe null missing: {s}"
    );
    // Must not emit a second top-level health-check-batch event.
    assert!(
        !s.contains("health-check-batch"),
        "dual root / nested batch without probe unexpected: {s}"
    );
}

/// G-PAR-38: --hosts on doctor without --probe-ssh is rejected.
#[test]
fn doctor_hosts_requires_probe_ssh() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "d2");
    cmd(&tmp)
        .args(["vps", "doctor", "--hosts", "d2", "--json"])
        .assert()
        .failure()
        .code(64)
        .stderr(predicate::str::contains("--probe-ssh"));
}

/// G-PAR-48: multi-file scp with --all is accepted (cartesian); fails on SSH, not parse.
#[test]
fn scp_multi_file_with_all_parses_and_attempts_transfer() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "s1");
    let a = tmp.path().join("a.bin");
    let b = tmp.path().join("b.bin");
    fs::write(&a, b"aa").unwrap();
    fs::write(&b, b"bb").unwrap();
    // Connection refused expected (no sshd) — must emit scp-batch, not clap usage error.
    cmd(&tmp)
        .args([
            "scp",
            "upload",
            "--all",
            a.to_str().unwrap(),
            b.to_str().unwrap(),
            "/tmp/out",
        ])
        .assert()
        .failure()
        .code(predicate::ne(64))
        .stdout(predicate::str::contains("scp-batch"));
}

/// G-PAR-37: clap accepts multi-file positionals (fails later on SSH, not on parse).
#[test]
fn scp_multi_file_positionals_parsed() {
    let tmp = TempDir::new().unwrap();
    seed_host(&tmp, "s2");
    let a = tmp.path().join("a.bin");
    let b = tmp.path().join("b.bin");
    fs::write(&a, b"aa").unwrap();
    fs::write(&b, b"bb").unwrap();
    // Will fail on connect to 127.0.0.1 without sshd — but must not be clap usage error.
    let assert = cmd(&tmp)
        .args([
            "--max-concurrency",
            "2",
            "scp",
            "upload",
            "s2",
            a.to_str().unwrap(),
            b.to_str().unwrap(),
            "/tmp",
            "--json",
        ])
        .assert()
        .failure();
    let code = assert.get_output().status.code();
    // Not clap usage (2) for multi-file parse — domain/network failure is fine.
    assert_ne!(code, Some(2), "clap must accept multi-file positionals");
}