ricecoder-execution 0.1.71

Execution engine for workflows and agent tasks
Documentation
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
//! Test runner for executing tests and parsing results
//!
//! Provides test framework detection, test execution, and result parsing.
//! Supports Rust (cargo test), TypeScript (npm test), and Python (pytest).

use crate::error::{ExecutionError, ExecutionResult};
use crate::models::{TestFailure, TestFramework, TestResults};
use std::path::Path;
use std::process::Command;
use tracing::{debug, error, info};

/// Test runner for executing tests with framework detection
pub struct TestRunner {
    /// Project root directory
    project_root: std::path::PathBuf,
}

impl TestRunner {
    /// Create a new test runner for the given project root
    pub fn new(project_root: impl AsRef<Path>) -> Self {
        Self {
            project_root: project_root.as_ref().to_path_buf(),
        }
    }

    /// Create a test runner for the current directory
    pub fn current_dir() -> ExecutionResult<Self> {
        let project_root = std::env::current_dir().map_err(|e| {
            ExecutionError::ValidationError(format!("Failed to get current dir: {}", e))
        })?;
        Ok(Self { project_root })
    }

    /// Detect the test framework based on project structure
    pub fn detect_framework(&self) -> ExecutionResult<TestFramework> {
        debug!(project_root = ?self.project_root, "Detecting test framework");

        // Check for Rust (Cargo.toml)
        if self.project_root.join("Cargo.toml").exists() {
            debug!("Detected Rust project");
            return Ok(TestFramework::Rust);
        }

        // Check for TypeScript/Node.js (package.json)
        if self.project_root.join("package.json").exists() {
            debug!("Detected TypeScript/Node.js project");
            return Ok(TestFramework::TypeScript);
        }

        // Check for Python (pytest.ini or setup.py)
        if self.project_root.join("pytest.ini").exists()
            || self.project_root.join("setup.py").exists()
        {
            debug!("Detected Python project");
            return Ok(TestFramework::Python);
        }

        Err(ExecutionError::ValidationError(
            "Could not detect test framework".to_string(),
        ))
    }

    /// Run tests with optional pattern filtering
    ///
    /// # Arguments
    /// * `pattern` - Optional test pattern to filter tests
    ///
    /// # Returns
    /// Test results including pass/fail counts and failure details
    pub fn run_tests(&self, pattern: Option<&str>) -> ExecutionResult<TestResults> {
        let framework = self.detect_framework()?;
        info!(framework = ?framework, pattern = ?pattern, "Running tests");

        let (command, args) = self.build_test_command(&framework, pattern)?;

        // Execute the test command
        let output = Command::new(&command)
            .args(&args)
            .current_dir(&self.project_root)
            .output()
            .map_err(|e| {
                ExecutionError::StepFailed(format!(
                    "Failed to execute test command {}: {}",
                    command, e
                ))
            })?;

        // Parse test results
        let test_output = String::from_utf8_lossy(&output.stdout);
        let test_stderr = String::from_utf8_lossy(&output.stderr);

        let mut results = TestResults {
            passed: 0,
            failed: 0,
            skipped: 0,
            failures: Vec::new(),
            framework,
        };

        // Parse results based on framework
        match framework {
            TestFramework::Rust => {
                self.parse_rust_output(&test_output, &test_stderr, &mut results)?;
            }
            TestFramework::TypeScript => {
                self.parse_typescript_output(&test_output, &test_stderr, &mut results)?;
            }
            TestFramework::Python => {
                self.parse_python_output(&test_output, &test_stderr, &mut results)?;
            }
            TestFramework::Other => {
                debug!("Unknown test framework, skipping output parsing");
            }
        }

        // Check if tests failed
        if results.failed > 0 {
            error!(failed = results.failed, "Tests failed");
            return Err(ExecutionError::TestsFailed(results.failed));
        }

        info!(passed = results.passed, "Tests passed");
        Ok(results)
    }

    /// Build test command for the detected framework
    pub fn build_test_command(
        &self,
        framework: &TestFramework,
        pattern: Option<&str>,
    ) -> ExecutionResult<(String, Vec<String>)> {
        match framework {
            TestFramework::Rust => {
                let mut args = vec![
                    "test".to_string(),
                    "--".to_string(),
                    "--nocapture".to_string(),
                ];
                if let Some(p) = pattern {
                    args.push(p.to_string());
                }
                Ok(("cargo".to_string(), args))
            }
            TestFramework::TypeScript => {
                let mut args = vec!["test".to_string()];
                if let Some(p) = pattern {
                    args.push("--".to_string());
                    args.push(p.to_string());
                }
                Ok(("npm".to_string(), args))
            }
            TestFramework::Python => {
                let mut args = vec![];
                if let Some(p) = pattern {
                    args.push(p.to_string());
                }
                Ok(("pytest".to_string(), args))
            }
            TestFramework::Other => Err(ExecutionError::ValidationError(
                "Cannot build test command for unknown framework".to_string(),
            )),
        }
    }

    /// Parse Rust test output
    fn parse_rust_output(
        &self,
        stdout: &str,
        _stderr: &str,
        results: &mut TestResults,
    ) -> ExecutionResult<()> {
        debug!("Parsing Rust test output");

        // Parse test results from cargo test output
        // Format: "test result: ok. X passed; Y failed; Z ignored"
        for line in stdout.lines() {
            if line.contains("test result:") {
                if line.contains("ok.") {
                    // Extract counts from the line
                    if let Some(passed_str) = line.split("passed;").next() {
                        if let Some(num_str) = passed_str.split_whitespace().last() {
                            if let Ok(num) = num_str.parse::<usize>() {
                                results.passed = num;
                            }
                        }
                    }
                } else if line.contains("FAILED") {
                    // Extract failure counts
                    if let Some(failed_str) = line.split("failed;").next() {
                        if let Some(num_str) = failed_str.split_whitespace().last() {
                            if let Ok(num) = num_str.parse::<usize>() {
                                results.failed = num;
                            }
                        }
                    }
                }
            }

            // Parse individual test failures
            if line.contains("FAILED") && line.contains("::") {
                let test_name = line.split("FAILED").nth(1).unwrap_or("").trim().to_string();
                results.failures.push(TestFailure {
                    name: test_name,
                    message: "Test failed".to_string(),
                    location: None,
                });
            }
        }

        Ok(())
    }

    /// Parse TypeScript test output
    fn parse_typescript_output(
        &self,
        stdout: &str,
        _stderr: &str,
        results: &mut TestResults,
    ) -> ExecutionResult<()> {
        debug!("Parsing TypeScript test output");

        // Parse Jest/npm test output
        // Look for patterns like "Tests: X passed, Y failed"
        for line in stdout.lines() {
            if line.contains("passed") && line.contains("failed") {
                // Try to extract pass/fail counts
                if let Some(passed_part) = line.split("passed").next() {
                    if let Some(num_str) = passed_part.split_whitespace().last() {
                        if let Ok(num) = num_str.parse::<usize>() {
                            results.passed = num;
                        }
                    }
                }

                if let Some(failed_part) = line.split("failed").next() {
                    if let Some(num_str) = failed_part.split_whitespace().last() {
                        if let Ok(num) = num_str.parse::<usize>() {
                            results.failed = num;
                        }
                    }
                }
            }

            // Parse individual test failures
            if line.contains("✕") || line.contains("FAIL") {
                let test_name = line.trim().to_string();
                results.failures.push(TestFailure {
                    name: test_name,
                    message: "Test failed".to_string(),
                    location: None,
                });
            }
        }

        Ok(())
    }

    /// Parse Python test output
    fn parse_python_output(
        &self,
        stdout: &str,
        _stderr: &str,
        results: &mut TestResults,
    ) -> ExecutionResult<()> {
        debug!("Parsing Python test output");

        // Parse pytest output
        // Look for patterns like "X passed, Y failed"
        for line in stdout.lines() {
            if line.contains("passed") || line.contains("failed") {
                // Try to extract pass/fail counts
                if let Some(passed_part) = line.split("passed").next() {
                    if let Some(num_str) = passed_part.split_whitespace().last() {
                        if let Ok(num) = num_str.parse::<usize>() {
                            results.passed = num;
                        }
                    }
                }

                if let Some(failed_part) = line.split("failed").next() {
                    if let Some(num_str) = failed_part.split_whitespace().last() {
                        if let Ok(num) = num_str.parse::<usize>() {
                            results.failed = num;
                        }
                    }
                }
            }

            // Parse individual test failures
            if line.contains("FAILED") {
                let test_name = line.trim().to_string();
                results.failures.push(TestFailure {
                    name: test_name,
                    message: "Test failed".to_string(),
                    location: None,
                });
            }
        }

        Ok(())
    }
}

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

    #[test]
    fn test_detect_rust_framework() {
        let temp_dir = TempDir::new().unwrap();
        std::fs::write(temp_dir.path().join("Cargo.toml"), "").unwrap();

        let runner = TestRunner::new(temp_dir.path());
        let framework = runner.detect_framework().unwrap();
        assert_eq!(framework, TestFramework::Rust);
    }

    #[test]
    fn test_detect_typescript_framework() {
        let temp_dir = TempDir::new().unwrap();
        std::fs::write(temp_dir.path().join("package.json"), "").unwrap();

        let runner = TestRunner::new(temp_dir.path());
        let framework = runner.detect_framework().unwrap();
        assert_eq!(framework, TestFramework::TypeScript);
    }

    #[test]
    fn test_detect_python_framework_pytest() {
        let temp_dir = TempDir::new().unwrap();
        std::fs::write(temp_dir.path().join("pytest.ini"), "").unwrap();

        let runner = TestRunner::new(temp_dir.path());
        let framework = runner.detect_framework().unwrap();
        assert_eq!(framework, TestFramework::Python);
    }

    #[test]
    fn test_detect_python_framework_setup() {
        let temp_dir = TempDir::new().unwrap();
        std::fs::write(temp_dir.path().join("setup.py"), "").unwrap();

        let runner = TestRunner::new(temp_dir.path());
        let framework = runner.detect_framework().unwrap();
        assert_eq!(framework, TestFramework::Python);
    }

    #[test]
    fn test_detect_no_framework() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());
        let result = runner.detect_framework();
        assert!(result.is_err());
    }

    #[test]
    fn test_build_rust_test_command() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let (cmd, args) = runner
            .build_test_command(&TestFramework::Rust, None)
            .unwrap();
        assert_eq!(cmd, "cargo");
        assert!(args.contains(&"test".to_string()));
    }

    #[test]
    fn test_build_rust_test_command_with_pattern() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let (cmd, args) = runner
            .build_test_command(&TestFramework::Rust, Some("my_test"))
            .unwrap();
        assert_eq!(cmd, "cargo");
        assert!(args.contains(&"my_test".to_string()));
    }

    #[test]
    fn test_build_typescript_test_command() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let (cmd, args) = runner
            .build_test_command(&TestFramework::TypeScript, None)
            .unwrap();
        assert_eq!(cmd, "npm");
        assert!(args.contains(&"test".to_string()));
    }

    #[test]
    fn test_build_python_test_command() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let (cmd, _args) = runner
            .build_test_command(&TestFramework::Python, None)
            .unwrap();
        assert_eq!(cmd, "pytest");
    }

    #[test]
    fn test_parse_rust_output() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let stdout = "test result: ok. 5 passed; 0 failed; 1 ignored";
        let mut results = TestResults {
            passed: 0,
            failed: 0,
            skipped: 0,
            failures: Vec::new(),
            framework: TestFramework::Rust,
        };

        runner.parse_rust_output(stdout, "", &mut results).unwrap();
        assert_eq!(results.passed, 5);
        assert_eq!(results.failed, 0);
    }

    #[test]
    fn test_parse_typescript_output() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let stdout = "Tests: 3 passed, 0 failed";
        let mut results = TestResults {
            passed: 0,
            failed: 0,
            skipped: 0,
            failures: Vec::new(),
            framework: TestFramework::TypeScript,
        };

        runner
            .parse_typescript_output(stdout, "", &mut results)
            .unwrap();
        assert_eq!(results.passed, 3);
        assert_eq!(results.failed, 0);
    }

    #[test]
    fn test_parse_python_output() {
        let temp_dir = TempDir::new().unwrap();
        let runner = TestRunner::new(temp_dir.path());

        let stdout = "4 passed, 0 failed";
        let mut results = TestResults {
            passed: 0,
            failed: 0,
            skipped: 0,
            failures: Vec::new(),
            framework: TestFramework::Python,
        };

        runner
            .parse_python_output(stdout, "", &mut results)
            .unwrap();
        assert_eq!(results.passed, 4);
        assert_eq!(results.failed, 0);
    }
}