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
impl QualityGate {
    /// Create a new quality gate with the given configuration
    pub fn new(config: GateConfig) -> Self {
        Self { config }
    }

    /// Create with default configuration
    pub fn with_defaults() -> Self {
        Self::new(GateConfig::default())
    }

    /// Run all gates for the specified tier
    pub fn run_tier(&self, tier: Tier) -> Vec<GateResult> {
        let gates = self.config.gates_for_tier(tier);
        let mut results = Vec::new();

        for gate_name in gates {
            let result = self.run_gate(gate_name);
            results.push(result);
        }

        results
    }

    /// Run a specific gate by name
    pub fn run_gate(&self, gate_name: &str) -> GateResult {
        let start = Instant::now();

        let (passed, message, metrics, violations) = match gate_name {
            "clippy" => self.run_clippy_gate(),
            "complexity" => self.run_complexity_gate(),
            "tests" => self.run_tests_gate(),
            "coverage" => self.run_coverage_gate(),
            "satd" => self.run_satd_gate(),
            "mutation" => self.run_mutation_gate(),
            "security" => self.run_security_gate(),
            _ => (
                false,
                format!("Unknown gate: {}", gate_name),
                HashMap::new(),
                vec![],
            ),
        };

        GateResult {
            gate_name: gate_name.to_string(),
            passed,
            duration: start.elapsed(),
            message,
            metrics,
            violations,
        }
    }

    fn run_clippy_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.run_clippy {
            return (
                true,
                "Clippy gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        let mut cmd = Command::new("cargo");
        cmd.args(["clippy", "--lib", "-p", "bashrs", "--message-format=json"]);

        if self.config.gates.clippy_strict {
            cmd.args(["--", "-D", "warnings"]);
        }

        match cmd.output() {
            Ok(output) => {
                let exit_code = output.status.code().unwrap_or(1);
                let passed = exit_code == 0;

                let mut violations = Vec::new();
                let stderr = String::from_utf8_lossy(&output.stderr);

                // Parse JSON output for violations
                for line in stderr.lines() {
                    if line.contains("\"level\":\"error\"")
                        || line.contains("\"level\":\"warning\"")
                    {
                        violations.push(GateViolation {
                            file: None,
                            line: None,
                            description: line.to_string(),
                            severity: if line.contains("error") {
                                ViolationSeverity::Error
                            } else {
                                ViolationSeverity::Warning
                            },
                        });
                    }
                }

                let message = if passed {
                    "Clippy passed with no warnings".to_string()
                } else {
                    format!("Clippy found {} issues", violations.len())
                };

                let mut metrics = HashMap::new();
                metrics.insert("violations".to_string(), violations.len() as f64);

                (passed, message, metrics, violations)
            }
            Err(e) => (
                false,
                format!("Failed to run clippy: {}", e),
                HashMap::new(),
                vec![],
            ),
        }
    }

    fn run_complexity_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.check_complexity {
            return (
                true,
                "Complexity gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        // Use pmat for complexity analysis if available
        let output = Command::new("pmat")
            .args(["analyze", "complexity", "--path", ".", "--max", "10"])
            .output();

        match output {
            Ok(output) => {
                let passed = output.status.success();
                // stdout available for future detailed parsing
                let _stdout = String::from_utf8_lossy(&output.stdout);

                let mut metrics = HashMap::new();
                metrics.insert(
                    "max_allowed".to_string(),
                    self.config.gates.max_complexity as f64,
                );

                let message = if passed {
                    format!(
                        "All functions below complexity {}",
                        self.config.gates.max_complexity
                    )
                } else {
                    "Functions exceed complexity threshold".to_string()
                };

                (passed, message, metrics, vec![])
            }
            Err(_) => {
                // pmat not available, pass by default
                (
                    true,
                    "Complexity check skipped (pmat not available)".to_string(),
                    HashMap::new(),
                    vec![],
                )
            }
        }
    }

    fn run_tests_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.run_tests {
            return (
                true,
                "Tests gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        let output = Command::new("cargo")
            .args(["test", "--lib", "-p", "bashrs", "--", "--test-threads=4"])
            .output();

        match output {
            Ok(output) => {
                let passed = output.status.success();
                let stdout = String::from_utf8_lossy(&output.stdout);

                // Parse test count from output
                let total_tests = 0;
                let mut passed_tests = 0;

                for line in stdout.lines() {
                    if line.contains("passed") && line.contains("failed") {
                        // Parse "test result: ok. X passed; Y failed"
                        if let Some(idx) = line.find("passed") {
                            let before = &line[..idx];
                            if let Some(num_str) = before.split_whitespace().last() {
                                passed_tests = num_str.parse().unwrap_or(0);
                            }
                        }
                    }
                }

                let mut metrics = HashMap::new();
                metrics.insert("passed".to_string(), passed_tests as f64);
                metrics.insert("total".to_string(), total_tests as f64);

                let message = if passed {
                    format!("{} tests passed", passed_tests)
                } else {
                    "Tests failed".to_string()
                };

                (passed, message, metrics, vec![])
            }
            Err(e) => (
                false,
                format!("Failed to run tests: {}", e),
                HashMap::new(),
                vec![],
            ),
        }
    }

    fn run_coverage_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.check_coverage {
            return (
                true,
                "Coverage gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        // This is a placeholder - actual coverage would use cargo-llvm-cov
        let mut metrics = HashMap::new();
        metrics.insert("target".to_string(), self.config.gates.min_coverage);

        (
            true,
            format!(
                "Coverage check (target: {}%) - run `make coverage` for full analysis",
                self.config.gates.min_coverage
            ),
            metrics,
            vec![],
        )
    }

    fn run_satd_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.satd.enabled {
            return (
                true,
                "SATD gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        // Search for SATD patterns in source files
        let patterns = &self.config.gates.satd.patterns;
        let mut violations = Vec::new();

        for pattern in patterns {
            let output = Command::new("grep")
                .args([
                    "-rn",
                    "--include=*.rs",
                    pattern,
                    "rash/src/",
                    "rash-runtime/src/",
                ])
                .output();

            if let Ok(output) = output {
                let stdout = String::from_utf8_lossy(&output.stdout);
                for line in stdout.lines() {
                    if !line.contains("tests") && !line.contains("_test.rs") {
                        violations.push(GateViolation {
                            file: line.split(':').next().map(String::from),
                            line: line.split(':').nth(1).and_then(|s| s.parse().ok()),
                            description: format!("SATD pattern '{}' found", pattern),
                            severity: ViolationSeverity::Warning,
                        });
                    }
                }
            }
        }

        let satd_count = violations.len();
        let passed = satd_count <= self.config.gates.satd.max_count
            || !self.config.gates.satd.fail_on_violation;

        let mut metrics = HashMap::new();
        metrics.insert("count".to_string(), satd_count as f64);
        metrics.insert(
            "max_allowed".to_string(),
            self.config.gates.satd.max_count as f64,
        );

        let message = if passed {
            format!(
                "SATD check passed ({} found, {} allowed)",
                satd_count, self.config.gates.satd.max_count
            )
        } else {
            format!(
                "SATD check failed: {} technical debt markers found (max: {})",
                satd_count, self.config.gates.satd.max_count
            )
        };

        (passed, message, metrics, violations)
    }

    fn run_mutation_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.mutation.enabled {
            return (
                true,
                "Mutation testing disabled (enable for Tier 3)".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        let mut metrics = HashMap::new();
        metrics.insert("target".to_string(), self.config.gates.mutation.min_score);

        (
            true,
            format!(
                "Mutation testing (target: {}%) - run `cargo mutants` manually",
                self.config.gates.mutation.min_score
            ),
            metrics,
            vec![],
        )
    }

    fn run_security_gate(&self) -> (bool, String, HashMap<String, f64>, Vec<GateViolation>) {
        if !self.config.gates.security.enabled {
            return (
                true,
                "Security gate disabled".to_string(),
                HashMap::new(),
                vec![],
            );
        }

        // Run cargo audit
        let output = Command::new("cargo").args(["audit"]).output();

        match output {
            Ok(output) => {
                let passed = output.status.success();
                // stdout available for future detailed parsing
                let _stdout = String::from_utf8_lossy(&output.stdout);

                let message = if passed {
                    "No security vulnerabilities found".to_string()
                } else {
                    "Security vulnerabilities detected".to_string()
                };

                (passed, message, HashMap::new(), vec![])
            }
            Err(_) => (
                true,
                "Security audit skipped (cargo-audit not installed)".to_string(),
                HashMap::new(),
                vec![],
            ),
        }
    }

    /// Check if all results passed
    pub fn all_passed(results: &[GateResult]) -> bool {
        results.iter().all(|r| r.passed)
    }

    /// Get summary statistics
    pub fn summary(results: &[GateResult]) -> GateSummary {
        let total = results.len();
        let passed = results.iter().filter(|r| r.passed).count();
        let failed = total - passed;
        let total_duration: Duration = results.iter().map(|r| r.duration).sum();

        GateSummary {
            total,
            passed,
            failed,
            total_duration,
        }
    }
}










include!("gates_default_gatesummary.rs");