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
#[test]
fn test_docker_scratch_no_false_positive() {
    let content = "FROM scratch\nCOPY binary /app\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    let d001: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("DOCKER001"))
        .collect();
    assert!(
        d001.is_empty(),
        "FROM scratch should not trigger DOCKER001: {:?}",
        d001
    );
}

#[test]
fn test_docker_arg_from_no_false_positive() {
    let content = "ARG BASE=ubuntu:22.04\nFROM $BASE\nRUN echo hello\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    let d001: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("DOCKER001"))
        .collect();
    assert!(
        d001.is_empty(),
        "FROM $ARG should not trigger DOCKER001: {:?}",
        d001
    );
}

#[test]
fn test_docker_apt_without_clean_detected() {
    let content = "FROM ubuntu:22.04\nRUN apt-get update && apt-get install -y curl\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    assert!(
        result
            .violations
            .iter()
            .any(|v| v.message.contains("DOCKER003")),
        "apt-get install without cleanup should be detected: {:?}",
        result.violations
    );
}

#[test]
fn test_docker_apt_with_clean_no_false_positive() {
    let content = "FROM ubuntu:22.04\nRUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    let d003: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("DOCKER003"))
        .collect();
    assert!(
        d003.is_empty(),
        "apt-get with cleanup should not trigger DOCKER003: {:?}",
        d003
    );
}

#[test]
fn test_docker_apt_autoremove_no_false_positive() {
    let content = "FROM ubuntu:22.04\nRUN apt-get update && apt-get install -y curl && apt-get autoremove\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    let d003: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("DOCKER003"))
        .collect();
    assert!(
        d003.is_empty(),
        "apt-get autoremove should not trigger DOCKER003: {:?}",
        d003
    );
}

#[test]
fn test_docker_multistage_from_as_no_false_positive() {
    // Multi-stage: FROM image:tag AS builder
    let content = "FROM rust:1.75 AS builder\nRUN cargo build\nFROM debian:bookworm-slim\nCOPY --from=builder /app /app\nUSER app\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    let d001: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("DOCKER001"))
        .collect();
    assert!(
        d001.is_empty(),
        "Pinned multi-stage FROM should not trigger DOCKER001: {:?}",
        d001
    );
}

#[test]
fn test_docker_multiple_violations() {
    let content = "FROM ubuntu\nADD . /app\nRUN apt-get install -y curl\n";
    let artifact = Artifact::new(
        PathBuf::from("Dockerfile"),
        Scope::Project,
        ArtifactKind::Dockerfile,
    );
    let result = check_rule(RuleId::DockerfileBest, content, &artifact);
    // DOCKER001 (untagged) + DOCKER008 (ADD) + DOCKER003 (apt) + DOCKER010 (no USER)
    assert!(
        result.violations.len() >= 4,
        "Expected at least 4 violations, got {}: {:?}",
        result.violations.len(),
        result.violations
    );
}

// ─── COMPLY-007 Makefile Safety Expansion ───

#[test]
fn test_make_eval_in_recipe_detected() {
    let content = ".PHONY: all\nall:\n\teval \"$(SOME_CMD)\"\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    assert!(
        result
            .violations
            .iter()
            .any(|v| v.message.contains("MAKE001")),
        "eval in recipe should be detected: {:?}",
        result.violations
    );
}

#[test]
fn test_make_recursive_bare_detected() {
    let content = ".PHONY: all\nall:\n\tmake clean\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    assert!(
        result
            .violations
            .iter()
            .any(|v| v.message.contains("MAKE002")),
        "bare make should be detected: {:?}",
        result.violations
    );
}

#[test]
fn test_make_recursive_dollar_make_no_false_positive() {
    let content = ".PHONY: all\nall:\n\t$(MAKE) clean\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    let m002: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("MAKE002"))
        .collect();
    assert!(
        m002.is_empty(),
        "$(MAKE) should not trigger MAKE002: {:?}",
        m002
    );
}

#[test]
fn test_make_recursive_chained_detected() {
    let content = ".PHONY: all\nall:\n\techo starting && make clean\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    assert!(result
        .violations
        .iter()
        .any(|v| v.message.contains("MAKE002")));
}

#[test]
fn test_make_dangerous_rm_detected() {
    let content = ".PHONY: clean\nclean:\n\trm -rf $(BUILD_DIR)\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    assert!(
        result
            .violations
            .iter()
            .any(|v| v.message.contains("MAKE003")),
        "rm -rf with variable should be detected: {:?}",
        result.violations
    );
}

#[test]
fn test_make_safe_rm_literal_no_false_positive() {
    // rm -rf on a literal path (no variable) is fine
    let content = ".PHONY: clean\nclean:\n\trm -rf /tmp/build\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    let m003: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("MAKE003"))
        .collect();
    assert!(
        m003.is_empty(),
        "rm -rf on literal path should not trigger MAKE003: {:?}",
        m003
    );
}

#[test]
fn test_make_missing_phony_detected() {
    // Common targets without .PHONY declaration
    let content = "all:\n\techo building\nclean:\n\trm -f output\ntest:\n\tcargo test\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    assert!(
        result
            .violations
            .iter()
            .any(|v| v.message.contains("MAKE004")),
        "Missing .PHONY should be detected: {:?}",
        result.violations
    );
    // Should flag all three: all, clean, test
    let m004: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("MAKE004"))
        .collect();
    assert!(
        m004.len() >= 3,
        "Expected at least 3 missing .PHONY, got {}: {:?}",
        m004.len(),
        m004
    );
}

#[test]
fn test_make_with_phony_no_false_positive() {
    let content = ".PHONY: all clean test\nall:\n\techo building\nclean:\n\trm -f output\ntest:\n\tcargo test\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    let m004: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("MAKE004"))
        .collect();
    assert!(
        m004.is_empty(),
        "Declared .PHONY should not trigger MAKE004: {:?}",
        m004
    );
}

#[test]
fn test_make_non_standard_target_no_false_positive() {
    // Custom targets not in COMMON_PHONY_TARGETS should not be flagged
    let content = "my-custom-target:\n\techo custom\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    let m004: Vec<_> = result
        .violations
        .iter()
        .filter(|v| v.message.contains("MAKE004"))
        .collect();
    assert!(
        m004.is_empty(),
        "Custom target should not trigger MAKE004: {:?}",
        m004
    );
}

#[test]
fn test_make_multiple_violations() {
    let content = "all:\n\teval \"$CMD\"\n\tmake clean\n\trm -rf $(DIR)\n";
    let artifact = Artifact::new(
        PathBuf::from("Makefile"),
        Scope::Project,
        ArtifactKind::Makefile,
    );
    let result = check_rule(RuleId::MakefileSafety, content, &artifact);
    // MAKE001 (eval) + MAKE002 (bare make) + MAKE003 (rm -rf) + MAKE004 (no .PHONY all)
    assert!(
        result.violations.len() >= 4,
        "Expected at least 4 violations, got {}: {:?}",
        result.violations.len(),
        result.violations
    );
}

// ─── Runner output format tests ───

#[test]
fn test_format_human_failures_only_excludes_compliant() {
    use super::runner;
    let scores = vec![
        super::scoring::compute_artifact_score("clean.sh", &[]),
        super::scoring::compute_artifact_score(
            "bad.sh",
            &[RuleResult {
                rule: RuleId::Determinism,
                passed: false,
                violations: vec![Violation {
                    rule: RuleId::Determinism,
                    line: Some(1),
                    message: "test violation".to_string(),
                }],
            }],
        ),
    ];
    let project = super::scoring::compute_project_score(scores);
    let output = runner::format_human_failures_only(&project);
    assert!(
        output.contains("bad.sh"),
        "Should show non-compliant artifact"
    );
    assert!(
        !output.contains("clean.sh"),
        "Should NOT show compliant artifact"
    );
    assert!(
        output.contains("Failures Only"),
        "Should have failures-only header"
    );
}

#[test]
fn test_format_human_failures_only_all_compliant() {
    use super::runner;
    let scores = vec![super::scoring::compute_artifact_score("clean.sh", &[])];
    let project = super::scoring::compute_project_score(scores);
    let output = runner::format_human_failures_only(&project);
    assert!(
        output.contains("No violations found"),
        "Should show no-violations message"
    );
}

// ═══════════════════════════════════════════════════════════════
// Inline suppression tests (# comply:disable=COMPLY-001)
// ═══════════════════════════════════════════════════════════════

#[test]
fn test_suppression_extract_single_rule() {
    use super::runner;
    let rules = runner::extract_disable_rules("# comply:disable=COMPLY-001");
    assert_eq!(rules, Some(vec!["COMPLY-001".to_string()]));
}

#[test]
fn test_suppression_extract_multiple_rules() {
    use super::runner;
    let rules = runner::extract_disable_rules("# comply:disable=COMPLY-001,COMPLY-004");
    assert_eq!(
        rules,
        Some(vec!["COMPLY-001".to_string(), "COMPLY-004".to_string()])
    );
}

#[test]
fn test_suppression_extract_no_hash() {
    use super::runner;
    // Without # prefix, should not match
    let rules = runner::extract_disable_rules("comply:disable=COMPLY-001");
    assert_eq!(rules, None);
}

#[test]
fn test_suppression_extract_inline_comment() {
    use super::runner;
    let rules = runner::extract_disable_rules("echo $RANDOM # comply:disable=COMPLY-002");
    assert_eq!(rules, Some(vec!["COMPLY-002".to_string()]));
}