upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit/src/result.rs
blob: 2bec5c8aaadeb53570e9b0e89aef3f15ab8988cb (plain)
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
//! Test result types

use std::collections::BTreeMap;
use std::time::{Duration, Instant};

// ANSI color codes
const GREEN: &str = "\x1b[32m";
const RED: &str = "\x1b[31m";
const RESET: &str = "\x1b[0m";
const BOLD: &str = "\x1b[1m";

/// Extract spec category from a spec_ref by removing trailing test number
/// e.g., "GRASP-01:event-acceptance:1.1" -> "GRASP-01:event-acceptance"
/// e.g., "NIP-01:basic:2" -> "NIP-01:basic"
fn extract_spec_category(spec_ref: &str) -> String {
    let parts: Vec<&str> = spec_ref.split(':').collect();
    if parts.len() >= 2 {
        // Check if the last part looks like a test number (starts with digit)
        if let Some(last) = parts.last() {
            if last.chars().next().map(|c| c.is_ascii_digit()).unwrap_or(false) {
                // Remove the trailing number part
                return parts[..parts.len() - 1].join(":");
            }
        }
    }
    // Return as-is if no trailing number found
    spec_ref.to_string()
}

/// Result of a single test
#[derive(Debug, Clone)]
pub struct TestResult {
    pub name: String,
    pub spec_ref: String,
    pub requirement: String,
    pub passed: bool,
    pub error: Option<String>,
    pub duration: Duration,
}

impl TestResult {
    /// Create a new test result
    pub fn new(name: &str, spec_ref: &str, requirement: &str) -> Self {
        TestResult {
            name: name.to_string(),
            spec_ref: spec_ref.to_string(),
            requirement: requirement.to_string(),
            passed: false,
            error: None,
            duration: Duration::default(),
        }
    }

    /// Run a test function and capture the result
    pub async fn run<F, Fut>(mut self, test_fn: F) -> Self
    where
        F: FnOnce() -> Fut,
        Fut: std::future::Future<Output = Result<(), String>>,
    {
        let start = Instant::now();

        match test_fn().await {
            Ok(()) => {
                self.passed = true;
            }
            Err(e) => {
                self.passed = false;
                self.error = Some(e);
            }
        }

        self.duration = start.elapsed();
        self
    }

    /// Mark test as passed
    pub fn pass(mut self) -> Self {
        self.passed = true;
        self
    }

    /// Mark test as failed with error
    pub fn fail(mut self, error: impl Into<String>) -> Self {
        self.passed = false;
        self.error = Some(error.into());
        self
    }
}

/// Collection of test results for a spec
#[derive(Debug, Clone)]
pub struct AuditResult {
    pub spec: String,
    pub results: Vec<TestResult>,
}

impl AuditResult {
    /// Create a new audit result
    pub fn new(spec: impl Into<String>) -> Self {
        Self {
            spec: spec.into(),
            results: Vec::new(),
        }
    }

    /// Add a test result
    pub fn add(&mut self, result: TestResult) {
        self.results.push(result);
    }

    /// Merge another audit result
    pub fn merge(&mut self, other: AuditResult) {
        self.results.extend(other.results);
    }

    /// Check if all tests passed
    pub fn all_passed(&self) -> bool {
        self.results.iter().all(|r| r.passed)
    }

    /// Get count of passed tests
    pub fn passed_count(&self) -> usize {
        self.results.iter().filter(|r| r.passed).count()
    }

    /// Get count of failed tests
    pub fn failed_count(&self) -> usize {
        self.results.iter().filter(|r| !r.passed).count()
    }

    /// Get total count of tests
    pub fn total_count(&self) -> usize {
        self.results.len()
    }

    /// Print a detailed report with tests grouped by spec_ref
    pub fn print_report(&self) {
        println!("\n{}{}{}", BOLD, self.spec, RESET);
        println!("{}", "═".repeat(60));

        let passed = self.passed_count();
        let total = self.total_count();

        // Group results by spec category (strip trailing test number like ":1.1")
        let mut grouped: BTreeMap<String, Vec<&TestResult>> = BTreeMap::new();
        for result in &self.results {
            // Extract category from spec_ref (e.g., "GRASP-01:event-acceptance:1.1" -> "GRASP-01:event-acceptance")
            let category = extract_spec_category(&result.spec_ref);
            grouped
                .entry(category)
                .or_default()
                .push(result);
        }

        // Print grouped results
        for (category, results) in &grouped {
            println!("\n{}[{}]{}", BOLD, category, RESET);

            for result in results {
                let (color, status) = if result.passed {
                    (GREEN, "✓")
                } else {
                    (RED, "✗")
                };

                println!("  {}{} {}{}", color, status, result.name, RESET);

                if let Some(error) = &result.error {
                    println!("    {}Error: {}{}", RED, error, RESET);
                }
            }
        }

        println!();
        let pass_rate = if total > 0 {
            (passed as f64 / total as f64) * 100.0
        } else {
            0.0
        };

        let summary_color = if passed == total { GREEN } else { RED };
        println!(
            "{}Results: {}/{} passed ({:.1}%){}",
            summary_color, passed, total, pass_rate, RESET
        );
        println!();
    }

    /// Get a summary string
    pub fn summary(&self) -> String {
        format!(
            "{}: {}/{} passed",
            self.spec,
            self.passed_count(),
            self.total_count()
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_result_pass() {
        let result = TestResult::new("test", "SPEC:1", "Must work")
            .run(|| async { Ok(()) })
            .await;

        assert!(result.passed);
        assert!(result.error.is_none());
    }

    #[tokio::test]
    async fn test_result_fail() {
        let result = TestResult::new("test", "SPEC:1", "Must work")
            .run(|| async { Err("Failed".to_string()) })
            .await;

        assert!(!result.passed);
        assert_eq!(result.error, Some("Failed".to_string()));
    }

    #[test]
    fn test_audit_result() {
        let mut audit = AuditResult::new("Test Spec");

        audit.add(TestResult::new("test1", "SPEC:1", "Req1").pass());
        audit.add(TestResult::new("test2", "SPEC:2", "Req2").fail("Error"));

        assert_eq!(audit.total_count(), 2);
        assert_eq!(audit.passed_count(), 1);
        assert_eq!(audit.failed_count(), 1);
        assert!(!audit.all_passed());
    }
}