opencrates 3.0.1

Enterprise-grade AI-powered Rust development companion with comprehensive automation, monitoring, and deployment capabilities
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
//! Testing utilities for OpenCrates

use anyhow::Result;
use std::collections::HashMap;
use std::fmt::Debug;
use std::path::{Path, PathBuf};
use std::process::Command;
use tracing::{debug, error, info};

/// Test runner for executing various types of tests
#[derive(Debug, Clone)]
// TODO: document this
// TODO: document this
// TODO: document this
pub struct TestRunner {
    /// Configuration for the test runner.
    config: TestConfig,
}

/// Configuration for test execution
#[derive(Debug, Clone)]
// TODO: document this
// TODO: document this
// TODO: document this
pub struct TestConfig {
    /// Timeout for each test case in seconds.
    // TODO: document this
    // TODO: document this
    pub timeout_seconds: u64,
    /// Whether to run tests in parallel.
    // TODO: document this
    // TODO: document this
    pub parallel: bool,
    /// Whether to show verbose output.
    // TODO: document this
    // TODO: document this
    pub verbose: bool,
    /// Patterns to match for selecting tests to run.
    // TODO: document this
    // TODO: document this
    pub test_patterns: Vec<String>,
}

/// Test execution results
#[derive(Debug, Clone)]
// TODO: document this
// TODO: document this
// TODO: document this
pub struct TestResults {
    /// Number of tests that passed.
    // TODO: document this
    // TODO: document this
    pub passed: usize,
    /// Number of tests that failed.
    // TODO: document this
    // TODO: document this
    pub failed: usize,
    /// Number of tests that were ignored.
    // TODO: document this
    // TODO: document this
    pub ignored: usize,
    /// Total number of tests.
    // TODO: document this
    // TODO: document this
    pub total: usize,
    /// Total duration of the test run in milliseconds.
    // TODO: document this
    // TODO: document this
    pub duration_ms: u64,
    /// Detailed results for each individual test.
    // TODO: document this
    // TODO: document this
    pub details: Vec<TestDetail>,
}

/// Individual test result details
#[derive(Debug, Clone)]
// TODO: document this
// TODO: document this
// TODO: document this
pub struct TestDetail {
    /// Name of the test.
    // TODO: document this
    // TODO: document this
    pub name: String,
    /// Status of the test execution.
    // TODO: document this
    // TODO: document this
    pub status: TestStatus,
    /// Duration of the test in milliseconds.
    // TODO: document this
    // TODO: document this
    pub duration_ms: u64,
    /// Standard output from the test.
    // TODO: document this
    // TODO: document this
    pub output: Option<String>,
    /// Standard error from the test.
    // TODO: document this
    // TODO: document this
    pub error: Option<String>,
}

/// Test execution status
#[derive(Debug, Clone, PartialEq)]
// TODO: document this
// TODO: document this
// TODO: document this
pub enum TestStatus {
    /// The test passed.
    Passed,
    /// The test failed.
    Failed,
    /// The test was ignored.
    Ignored,
    /// The test timed out.
    Timeout,
}

impl Default for TestConfig {
    fn default() -> Self {
        Self {
            timeout_seconds: 60,
            parallel: true,
            verbose: false,
            test_patterns: vec!["test".to_string()],
        }
    }
}

impl TestRunner {
    /// Create a new test runner with default configuration
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    #[must_use]
    pub fn new() -> Self {
        Self {
            config: TestConfig::default(),
        }
    }

    /// Create a new test runner with custom configuration
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    #[must_use]
    pub fn with_config(config: TestConfig) -> Self {
        Self { config }
    }

    /// Run unit tests for a crate
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub async fn run_unit_tests(&self, crate_path: &PathBuf) -> Result<TestResults> {
        info!("Running unit tests for crate at: {:?}", crate_path);

        let mut cmd = Command::new("cargo");
        let mut cmd = cmd.arg("test").current_dir(crate_path);

        if self.config.verbose {
            cmd = cmd.arg("--verbose");
        }

        if !self.config.parallel {
            cmd = cmd.arg("--test-threads=1");
        }

        // Add test patterns
        for pattern in &self.config.test_patterns {
            cmd = cmd.arg(pattern);
        }

        debug!("Executing command: {:?}", cmd);

        let output = cmd.output()?;
        let stdout = String::from_utf8_lossy(&output.stdout);
        let stderr = String::from_utf8_lossy(&output.stderr);

        debug!("Test output: {}", stdout);
        if !stderr.is_empty() {
            debug!("Test stderr: {}", stderr);
        }

        self.parse_test_output(&stdout, &stderr)
    }

    /// Run integration tests for a crate
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub async fn run_integration_tests(&self, crate_path: &PathBuf) -> Result<TestResults> {
        info!("Running integration tests for crate at: {:?}", crate_path);

        let mut cmd = Command::new("cargo");
        let mut cmd = cmd
            .arg("test")
            .arg("--test")
            .arg("*")
            .current_dir(crate_path);

        if self.config.verbose {
            cmd = cmd.arg("--verbose");
        }

        let output = cmd.output()?;
        let stdout = String::from_utf8_lossy(&output.stdout);
        let stderr = String::from_utf8_lossy(&output.stderr);

        self.parse_test_output(&stdout, &stderr)
    }

    /// Run doc tests for a crate
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub async fn run_doc_tests(&self, crate_path: &PathBuf) -> Result<TestResults> {
        info!("Running doc tests for crate at: {:?}", crate_path);

        let mut cmd = Command::new("cargo");
        let mut cmd = cmd.arg("test").arg("--doc").current_dir(crate_path);

        if self.config.verbose {
            cmd = cmd.arg("--verbose");
        }

        let output = cmd.output()?;
        let stdout = String::from_utf8_lossy(&output.stdout);
        let stderr = String::from_utf8_lossy(&output.stderr);

        self.parse_test_output(&stdout, &stderr)
    }

    /// Run benchmarks for a crate
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub async fn run_benchmarks(&self, crate_path: &PathBuf) -> Result<TestResults> {
        info!("Running benchmarks for crate at: {:?}", crate_path);

        let mut cmd = Command::new("cargo");
        let mut cmd = cmd.arg("bench").current_dir(crate_path);

        if self.config.verbose {
            cmd = cmd.arg("--verbose");
        }

        let output = cmd.output()?;
        let stdout = String::from_utf8_lossy(&output.stdout);
        let stderr = String::from_utf8_lossy(&output.stderr);

        self.parse_test_output(&stdout, &stderr)
    }

    /// Run all tests (unit, integration, doc) for a crate
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub async fn run_all_tests(
        &self,
        crate_path: &PathBuf,
    ) -> Result<HashMap<String, TestResults>> {
        info!("Running all tests for crate at: {:?}", crate_path);

        let mut results = HashMap::new();

        // Run unit tests
        match self.run_unit_tests(crate_path).await {
            Ok(unit_results) => {
                let _ = results.insert("unit".to_string(), unit_results);
            }
            Err(e) => {
                error!("Failed to run unit tests: {}", e);
            }
        }

        // Run integration tests
        match self.run_integration_tests(crate_path).await {
            Ok(integration_results) => {
                let _ = results.insert("integration".to_string(), integration_results);
            }
            Err(e) => {
                error!("Failed to run integration tests: {}", e);
            }
        }

        // Run doc tests
        match self.run_doc_tests(crate_path).await {
            Ok(doc_results) => {
                let _ = results.insert("doc".to_string(), doc_results);
            }
            Err(e) => {
                error!("Failed to run doc tests: {}", e);
            }
        }

        Ok(results)
    }

    /// Parse cargo test output into structured results
    fn parse_test_output(&self, stdout: &str, stderr: &str) -> Result<TestResults> {
        let mut passed = 0;
        let mut failed = 0;
        let mut ignored = 0;
        let mut details = Vec::new();

        // Parse the output line by line
        for line in stdout.lines() {
            if line.contains("test result:") {
                // Extract summary line: "test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s"
                if let Some(summary) = self.parse_summary_line(line) {
                    passed = summary.0;
                    failed = summary.1;
                    ignored = summary.2;
                }
            } else if line.starts_with("test ") {
                // Parse individual test lines: "test tests::test_example ... ok"
                if let Some(detail) = self.parse_test_line(line) {
                    details.push(detail);
                }
            }
        }

        // If stderr has errors, include them
        if !stderr.is_empty() && failed == 0 {
            failed = 1; // Mark as failed if there are compile errors
        }

        let total = passed + failed + ignored;

        Ok(TestResults {
            passed,
            failed,
            ignored,
            total,
            duration_ms: 0, // TODO: Parse duration from output
            details,
        })
    }

    /// Parse test summary line
    fn parse_summary_line(&self, line: &str) -> Option<(usize, usize, usize)> {
        // Simple regex-free parsing
        if let Some(start) = line.find("test result:") {
            let rest = &line[start..];
            let parts: Vec<&str> = rest.split_whitespace().collect();

            let mut passed = 0;
            let mut failed = 0;
            let mut ignored = 0;

            for (i, part) in parts.iter().enumerate() {
                if *part == "passed;" && i > 0 {
                    if let Ok(num) = parts[i - 1].parse::<usize>() {
                        passed = num;
                    }
                } else if *part == "failed;" && i > 0 {
                    if let Ok(num) = parts[i - 1].parse::<usize>() {
                        failed = num;
                    }
                } else if *part == "ignored;" && i > 0 {
                    if let Ok(num) = parts[i - 1].parse::<usize>() {
                        ignored = num;
                    }
                }
            }

            return Some((passed, failed, ignored));
        }
        None
    }

    /// Parse individual test line
    fn parse_test_line(&self, line: &str) -> Option<TestDetail> {
        if line.starts_with("test ") {
            let parts: Vec<&str> = line.split_whitespace().collect();
            if parts.len() >= 4 {
                let name = parts[1].to_string();
                let status = match parts[parts.len() - 1] {
                    "ok" => TestStatus::Passed,
                    "FAILED" => TestStatus::Failed,
                    "ignored" => TestStatus::Ignored,
                    _ => TestStatus::Failed,
                };

                return Some(TestDetail {
                    name,
                    status,
                    duration_ms: 0, // TODO: Parse duration if available
                    output: None,
                    error: None,
                });
            }
        }
        None
    }

    /// Check if tests can be run in the given directory
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    #[must_use]
    pub fn can_run_tests(&self, crate_path: &Path) -> bool {
        crate_path.join("Cargo.toml").exists()
    }

    /// Get test configuration
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    #[must_use]
    pub fn config(&self) -> &TestConfig {
        &self.config
    }

    /// Update test configuration
    // TODO: document this
    // TODO: document this
    // TODO: document this
    // TODO: document this
    pub fn set_config(&mut self, config: TestConfig) {
        self.config = config;
    }
}

impl Default for TestRunner {
    fn default() -> Self {
        Self::new()
    }
}