bashrs 6.66.0

Rust-to-Shell transpiler for deterministic bootstrap scripts
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
//! Coverage tests for installer commands, corpus core/advanced/ops/diff commands.
//!
//! Targets 8 files with 0-6% coverage:
//!   - installer_run_logic.rs (333 uncov)
//!   - installer_logic.rs (276 uncov)
//!   - installer_golden_logic.rs (223 uncov)
//!   - installer_commands.rs (274 uncov)
//!   - corpus_core_commands.rs (216 uncov)
//!   - corpus_advanced_commands.rs (200 uncov)
//!   - corpus_ops_commands.rs (161 uncov)
//!   - corpus_diff_commands.rs (183 uncov)
#![allow(clippy::unwrap_used)]
#![allow(clippy::expect_used)]

// ============================================================================
// INSTALLER COMMAND COVERAGE TESTS
// ============================================================================

/// Helper: create a temp installer project via `init_project` and return
/// the tempdir handle (keeps directory alive) and its path.
fn make_installer_project() -> (tempfile::TempDir, std::path::PathBuf) {
    let dir = tempfile::tempdir().unwrap();
    let project_path = dir.path().join("test-project");
    crate::installer::init_project(&project_path, Some("test project")).unwrap();
    (dir, project_path)
}

/// Helper: write a tiny bash script for from-bash conversion tests.
fn write_bash_script(dir: &std::path::Path) -> std::path::PathBuf {
    let script = dir.join("setup.sh");
    std::fs::write(
        &script,
        "#!/bin/bash\nset -e\napt-get update\napt-get install -y curl\necho done\n",
    )
    .unwrap();
    script
}

// ---------------------------------------------------------------------------
// installer init
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_init_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_init_creates_project() {
        let dir = tempfile::tempdir().unwrap();
        let name = dir.path().join("my-installer");
        let cmd = InstallerCommands::Init {
            name,
            description: Some("A test installer".to_string()),
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "installer init failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_init_no_description() {
        let dir = tempfile::tempdir().unwrap();
        let name = dir.path().join("bare-installer");
        let cmd = InstallerCommands::Init {
            name,
            description: None,
        };
        assert!(super::super::super::installer_commands::handle_installer_command(cmd).is_ok());
    }
}

// ---------------------------------------------------------------------------
// installer validate
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_validate_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_validate_ok() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Validate { path: project_path };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "validate failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_validate_missing_dir() {
        let cmd = InstallerCommands::Validate {
            path: std::path::PathBuf::from("/tmp/nonexistent-installer-path-xyz"),
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_err());
    }
}

// ---------------------------------------------------------------------------
// installer run (dry-run and diff modes)
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_run_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_run_dry_run() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: None,
            dry_run: true,
            diff: false,
            hermetic: false,
            verify_signatures: false,
            parallel: false,
            trace: false,
            trace_file: None,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "dry-run failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_run_diff_mode() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: None,
            dry_run: false,
            diff: true,
            hermetic: false,
            verify_signatures: false,
            parallel: false,
            trace: false,
            trace_file: None,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "diff mode failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_run_actual_execution() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: None,
            dry_run: false,
            diff: false,
            hermetic: false,
            verify_signatures: false,
            parallel: false,
            trace: false,
            trace_file: None,
        };
        // Actual execution may fail on steps, but exercises all the code paths
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }

    #[test]
    fn test_cov_installer_run_with_trace() {
        let (_dir, project_path) = super::make_installer_project();
        let trace_dir = tempfile::tempdir().unwrap();
        let trace_file = trace_dir.path().join("trace.json");
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: None,
            dry_run: false,
            diff: false,
            hermetic: false,
            verify_signatures: false,
            parallel: false,
            trace: true,
            trace_file: Some(trace_file),
        };
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }

    #[test]
    fn test_cov_installer_run_with_checkpoint_dir() {
        let (_dir, project_path) = super::make_installer_project();
        let ckpt_dir = tempfile::tempdir().unwrap();
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: Some(ckpt_dir.path().to_path_buf()),
            dry_run: true,
            diff: false,
            hermetic: false,
            verify_signatures: false,
            parallel: false,
            trace: false,
            trace_file: None,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "run with checkpoint dir failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_run_hermetic_without_lockfile() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Run {
            path: project_path,
            checkpoint_dir: None,
            dry_run: false,
            diff: false,
            hermetic: true,
            verify_signatures: false,
            parallel: false,
            trace: false,
            trace_file: None,
        };
        // Should fail because there's no lockfile
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_err(), "hermetic without lockfile should fail");
    }
}

// ---------------------------------------------------------------------------
// installer test
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_test_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_test_basic() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Test {
            path: project_path,
            matrix: None,
            coverage: false,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "installer test failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_test_with_coverage() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Test {
            path: project_path,
            matrix: None,
            coverage: true,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(
            res.is_ok(),
            "installer test with coverage failed: {:?}",
            res
        );
    }

    #[test]
    fn test_cov_installer_test_default_matrix() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Test {
            path: project_path,
            matrix: Some("default".to_string()),
            coverage: false,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        // May fail due to container runtime not being available; exercises the code path
        let _ = res;
    }

    #[test]
    fn test_cov_installer_test_extended_matrix() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Test {
            path: project_path,
            matrix: Some("extended".to_string()),
            coverage: true,
        };
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }

    #[test]
    fn test_cov_installer_test_custom_platforms() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Test {
            path: project_path,
            matrix: Some("ubuntu:22.04,debian:12".to_string()),
            coverage: false,
        };
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }
}

// ---------------------------------------------------------------------------
// installer lock
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_lock_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_lock_generate() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Lock {
            path: project_path,
            update: false,
            verify: false,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "lock generate failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_lock_update_no_existing() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Lock {
            path: project_path,
            update: true,
            verify: false,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "lock update (no existing) failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_lock_verify_no_lockfile() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Lock {
            path: project_path,
            update: false,
            verify: true,
        };
        // verify without lockfile should succeed for installers with 0 artifacts
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }

    #[test]
    fn test_cov_installer_lock_verify_with_lockfile() {
        let (_dir, project_path) = super::make_installer_project();
        // First generate a lockfile
        let cmd1 = InstallerCommands::Lock {
            path: project_path.clone(),
            update: false,
            verify: false,
        };
        super::super::super::installer_commands::handle_installer_command(cmd1).unwrap();
        // Now verify
        let cmd2 = InstallerCommands::Lock {
            path: project_path,
            update: false,
            verify: true,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd2);
        assert!(res.is_ok(), "lock verify failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_lock_update_existing() {
        let (_dir, project_path) = super::make_installer_project();
        // Generate first
        let cmd1 = InstallerCommands::Lock {
            path: project_path.clone(),
            update: false,
            verify: false,
        };
        super::super::super::installer_commands::handle_installer_command(cmd1).unwrap();
        // Update
        let cmd2 = InstallerCommands::Lock {
            path: project_path,
            update: true,
            verify: false,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd2);
        assert!(res.is_ok(), "lock update failed: {:?}", res);
    }
}

// ---------------------------------------------------------------------------
// installer graph
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_graph_cmd {
    use crate::cli::args::{InstallerCommands, InstallerGraphFormat};

    #[test]
    fn test_cov_installer_graph_mermaid() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Graph {
            path: project_path,
            format: InstallerGraphFormat::Mermaid,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "graph mermaid failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_graph_dot() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Graph {
            path: project_path,
            format: InstallerGraphFormat::Dot,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "graph dot failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_graph_json() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Graph {
            path: project_path,
            format: InstallerGraphFormat::Json,
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "graph json failed: {:?}", res);
    }
}

// ---------------------------------------------------------------------------
// installer golden capture / compare
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_golden_cmd {
    use crate::cli::args::InstallerCommands;

    #[test]
    fn test_cov_installer_golden_capture() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::GoldenCapture {
            path: project_path,
            trace: "baseline-v1".to_string(),
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_ok(), "golden capture failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_golden_compare() {
        let (_dir, project_path) = super::make_installer_project();
        // First capture a golden trace
        let cmd1 = InstallerCommands::GoldenCapture {
            path: project_path.clone(),
            trace: "cmp-trace".to_string(),
        };
        super::super::super::installer_commands::handle_installer_command(cmd1).unwrap();
        // Now compare against it
        let cmd2 = InstallerCommands::GoldenCompare {
            path: project_path,
            trace: "cmp-trace".to_string(),
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd2);
        assert!(res.is_ok(), "golden compare failed: {:?}", res);
    }

    #[test]
    fn test_cov_installer_golden_compare_missing_trace() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::GoldenCompare {
            path: project_path,
            trace: "nonexistent-trace".to_string(),
        };
        let res = super::super::super::installer_commands::handle_installer_command(cmd);
        assert!(res.is_err(), "comparing missing trace should fail");
    }
}

// ---------------------------------------------------------------------------
// installer audit
// ---------------------------------------------------------------------------
#[cfg(test)]
mod installer_audit_cmd {
    use crate::cli::args::{AuditOutputFormat, InstallerCommands};

    #[test]
    fn test_cov_installer_audit_human() {
        let (_dir, project_path) = super::make_installer_project();
        let cmd = InstallerCommands::Audit {
            path: project_path,
            format: AuditOutputFormat::Human,
            security_only: false,
            min_severity: None,
            ignore: vec![],
        };
        let _ = super::super::super::installer_commands::handle_installer_command(cmd);
    }


    include!("command_tests_installer_cov_part2_incl2.rs");
}