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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
//! Test runner for Seq test files
//!
//! Discovers and executes tests in `test-*.seq` files, reporting results.
use crate::parser::Parser;
use crate::{CompilerConfig, compile_file_with_config};
use std::fs;
use std::path::{Path, PathBuf};
use std::process::Command;
use std::time::Instant;
/// Result of running a single test
#[derive(Debug)]
pub struct TestResult {
/// Name of the test function
pub name: String,
/// Whether the test passed
pub passed: bool,
/// Duration in milliseconds
pub duration_ms: u64,
/// Error output if test failed
pub error_output: Option<String>,
}
/// Summary of all test results
#[derive(Debug, Default)]
pub struct TestSummary {
/// Total tests run
pub total: usize,
/// Tests passed
pub passed: usize,
/// Tests failed
pub failed: usize,
/// Files that failed to compile
pub compile_failures: usize,
/// Results by file
pub file_results: Vec<FileTestResults>,
}
impl TestSummary {
/// Returns true if any tests failed or any files failed to compile
pub fn has_failures(&self) -> bool {
self.failed > 0 || self.compile_failures > 0
}
}
/// Results for a single test file
#[derive(Debug)]
pub struct FileTestResults {
/// Path to the test file
pub path: PathBuf,
/// Individual test results
pub tests: Vec<TestResult>,
/// Compilation error if file failed to compile
pub compile_error: Option<String>,
}
/// Test runner configuration
pub struct TestRunner {
/// Show verbose output
pub verbose: bool,
/// Filter pattern for test names
pub filter: Option<String>,
/// Compiler configuration
pub config: CompilerConfig,
}
impl TestRunner {
pub fn new(verbose: bool, filter: Option<String>) -> Self {
Self {
verbose,
filter,
config: CompilerConfig::default(),
}
}
/// Discover test files in the given paths
pub fn discover_test_files(&self, paths: &[PathBuf]) -> Vec<PathBuf> {
let mut test_files = Vec::new();
for path in paths {
if path.is_file() {
if self.is_test_file(path) {
test_files.push(path.clone());
}
} else if path.is_dir() {
self.discover_in_directory(path, &mut test_files);
}
}
test_files.sort();
test_files
}
fn is_test_file(&self, path: &Path) -> bool {
if let Some(name) = path.file_name().and_then(|n| n.to_str()) {
name.starts_with("test-") && name.ends_with(".seq")
} else {
false
}
}
fn discover_in_directory(&self, dir: &Path, files: &mut Vec<PathBuf>) {
if let Ok(entries) = fs::read_dir(dir) {
for entry in entries.flatten() {
let path = entry.path();
if path.is_file() && self.is_test_file(&path) {
files.push(path);
} else if path.is_dir() {
self.discover_in_directory(&path, files);
}
}
}
}
/// Discover test functions in a source file
/// Returns (test_names, has_main) - test names and whether file has its own main
pub fn discover_test_functions(&self, source: &str) -> Result<(Vec<String>, bool), String> {
let mut parser = Parser::new(source);
let program = parser.parse()?;
let has_main = program.words.iter().any(|w| w.name == "main");
let mut test_names: Vec<String> = program
.words
.iter()
.filter(|w| w.name.starts_with("test-"))
.filter(|w| self.matches_filter(&w.name))
.map(|w| w.name.clone())
.collect();
test_names.sort();
Ok((test_names, has_main))
}
fn matches_filter(&self, name: &str) -> bool {
match &self.filter {
Some(pattern) => name.contains(pattern),
None => true,
}
}
/// Run all tests in a file
pub fn run_file(&self, path: &Path) -> FileTestResults {
let source = match fs::read_to_string(path) {
Ok(s) => s,
Err(e) => {
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: Some(format!("Failed to read file: {}", e)),
};
}
};
let (test_names, has_main) = match self.discover_test_functions(&source) {
Ok(result) => result,
Err(e) => {
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: Some(format!("Parse error: {}", e)),
};
}
};
// Skip files that have their own main - they are standalone test suites
if has_main {
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: None,
};
}
if test_names.is_empty() {
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: None,
};
}
// Compile once and run all tests in the file
self.run_all_tests_in_file(path, &source, &test_names)
}
fn run_all_tests_in_file(
&self,
path: &Path,
source: &str,
test_names: &[String],
) -> FileTestResults {
let start = Instant::now();
// Generate wrapper main that runs ALL tests in sequence.
//
// `test.set-name` after the user's test word guarantees the
// `test.finish` header matches the word name the parser discovered,
// even if the user called `test.init` with a different friendly
// name inside their test word. Without this, `collect_failure_block`
// (which keys on the word name) would orphan detail lines.
let mut test_calls = String::new();
for test_name in test_names {
test_calls.push_str(&format!(
" \"{0}\" test.init {0} \"{0}\" test.set-name test.finish\n",
test_name
));
}
let wrapper = format!(
r#"{}
: main ( -- )
{} test.has-failures if
1 os.exit
then
;
"#,
source, test_calls
);
// Create temp file for the wrapper
let temp_dir = std::env::temp_dir();
let file_id = sanitize_name(&path.to_string_lossy());
let wrapper_path = temp_dir.join(format!("seq_test_{}.seq", file_id));
let binary_path = temp_dir.join(format!("seq_test_{}", file_id));
if let Err(e) = fs::write(&wrapper_path, &wrapper) {
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: Some(format!("Failed to write temp file: {}", e)),
};
}
// Compile the wrapper (ONE compilation for all tests in file)
if let Err(e) = compile_file_with_config(&wrapper_path, &binary_path, false, &self.config) {
let _ = fs::remove_file(&wrapper_path);
return FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: Some(format!("Compilation error: {}", e)),
};
}
// Run the compiled tests
let output = Command::new(&binary_path).output();
// Clean up temp files
let _ = fs::remove_file(&wrapper_path);
let _ = fs::remove_file(&binary_path);
let compile_time = start.elapsed().as_millis() as u64;
match output {
Ok(output) => {
let stdout = String::from_utf8_lossy(&output.stdout);
let stderr = String::from_utf8_lossy(&output.stderr);
// Parse output to determine which tests passed/failed
// Output format: "test-name ... ok" or "test-name ... FAILED"
let results = self.parse_test_output(&stdout, test_names, compile_time);
// If we couldn't parse results but process failed, mark all as failed
if results.iter().all(|r| r.passed) && !output.status.success() {
return FileTestResults {
path: path.to_path_buf(),
tests: test_names
.iter()
.map(|name| TestResult {
name: name.clone(),
passed: false,
duration_ms: 0,
error_output: Some(format!("{}{}", stderr, stdout)),
})
.collect(),
compile_error: None,
};
}
FileTestResults {
path: path.to_path_buf(),
tests: results,
compile_error: None,
}
}
Err(e) => FileTestResults {
path: path.to_path_buf(),
tests: vec![],
compile_error: Some(format!("Failed to run tests: {}", e)),
},
}
}
fn parse_test_output(
&self,
output: &str,
test_names: &[String],
_compile_time: u64,
) -> Vec<TestResult> {
let mut results = Vec::new();
for test_name in test_names {
// Look for "test-name ... ok" or "test-name ... FAILED"
let passed = output
.lines()
.any(|line| line.contains(test_name) && line.contains("... ok"));
// For failures, capture the FAILED header line plus any
// indented detail lines that immediately follow it (runtime
// emits `expected X, got Y`-style lines indented under the
// header on the same stdout stream).
let error_output = if !passed {
collect_failure_block(output, test_name)
} else {
None
};
results.push(TestResult {
name: test_name.clone(),
passed,
duration_ms: 0, // Individual timing not available in batch mode
error_output,
});
}
results
}
/// Run tests and return summary
pub fn run(&self, paths: &[PathBuf]) -> TestSummary {
let test_files = self.discover_test_files(paths);
let mut summary = TestSummary::default();
for path in test_files {
let file_results = self.run_file(&path);
// Track compilation failures
if file_results.compile_error.is_some() {
summary.compile_failures += 1;
}
for test in &file_results.tests {
summary.total += 1;
if test.passed {
summary.passed += 1;
} else {
summary.failed += 1;
}
}
summary.file_results.push(file_results);
}
summary
}
/// Print test results
pub fn print_results(&self, summary: &TestSummary) {
for file_result in &summary.file_results {
if let Some(ref error) = file_result.compile_error {
eprintln!("\nFailed to process {}:", file_result.path.display());
eprintln!(" {}", error);
continue;
}
if file_result.tests.is_empty() {
continue;
}
println!("\nRunning tests in {}...", file_result.path.display());
for test in &file_result.tests {
let status = if test.passed { "ok" } else { "FAILED" };
if self.verbose {
println!(" {} ... {} ({}ms)", test.name, status, test.duration_ms);
} else {
println!(" {} ... {}", test.name, status);
}
}
}
// Print summary
println!("\n========================================");
if summary.compile_failures > 0 {
println!(
"Results: {} passed, {} failed, {} failed to compile",
summary.passed, summary.failed, summary.compile_failures
);
} else {
println!(
"Results: {} passed, {} failed",
summary.passed, summary.failed
);
}
// Print test failures in detail
let failures: Vec<_> = summary
.file_results
.iter()
.flat_map(|fr| fr.tests.iter().filter(|t| !t.passed).map(|t| (&fr.path, t)))
.collect();
if !failures.is_empty() {
println!("\nTEST FAILURES:\n");
for (path, test) in failures {
println!("{}::{}", path.display(), test.name);
if let Some(ref error) = test.error_output {
for line in error.lines() {
println!(" {}", line);
}
}
println!();
}
}
// Print compilation failures in detail
let compile_failures: Vec<_> = summary
.file_results
.iter()
.filter(|fr| fr.compile_error.is_some())
.collect();
if !compile_failures.is_empty() {
println!("\nCOMPILATION FAILURES:\n");
for fr in compile_failures {
println!("{}:", fr.path.display());
if let Some(ref error) = fr.compile_error {
for line in error.lines() {
println!(" {}", line);
}
}
println!();
}
}
}
}
/// Sanitize a test name for use as a filename
fn sanitize_name(name: &str) -> String {
name.chars()
.map(|c| if c.is_alphanumeric() { c } else { '_' })
.collect()
}
/// Given the full test-wrapper stdout and a test name, find the
/// `<name> ... FAILED` header line plus any indented detail lines
/// that immediately follow it, and return them as a single block.
///
/// An indented detail line is any line that begins with whitespace.
/// Collection stops at the next non-indented line (typically the next
/// test's header, or the pass/fail summary).
///
/// Matches the header exactly (`{name} ... FAILED`) so one test name
/// being a substring of another (e.g. `add` vs `add-overflow`) cannot
/// cross-attribute the block.
fn collect_failure_block(output: &str, test_name: &str) -> Option<String> {
let header = format!("{} ... FAILED", test_name);
let mut lines = output.lines().peekable();
while let Some(line) = lines.next() {
if line == header {
let mut block = String::from(line);
while let Some(next) = lines.peek() {
if next.starts_with(char::is_whitespace) {
block.push('\n');
block.push_str(next);
lines.next();
} else {
break;
}
}
return Some(block);
}
}
None
}
#[cfg(test)]
mod tests;