mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-29 17:18:08 -05:00
58 lines
1.7 KiB
Rust
58 lines
1.7 KiB
Rust
//! Abstractions for groups of tests.
|
|
|
|
use crate::{
|
|
case::{Case, Cases},
|
|
result::assert_tests_pass,
|
|
};
|
|
use std::path::{Path, PathBuf};
|
|
use walkdir::{DirEntry, WalkDir};
|
|
|
|
/// A collection of tests.
|
|
pub trait Suite {
|
|
/// The type of test cases in this suite.
|
|
type Case: Case;
|
|
|
|
/// The name of the test suite used to locate the individual test cases.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// - `GeneralStateTests`
|
|
/// - `BlockchainTests/InvalidBlocks`
|
|
/// - `BlockchainTests/TransitionTests`
|
|
fn suite_name(&self) -> String;
|
|
|
|
/// Load an run each contained test case.
|
|
///
|
|
/// # Note
|
|
///
|
|
/// This recursively finds every test description in the resulting path.
|
|
fn run(&self) {
|
|
let suite_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
|
.join("ethereum-tests")
|
|
.join(self.suite_name());
|
|
|
|
// todo: assert that the path exists
|
|
let test_cases = find_all_files_with_extension(&suite_path, ".json")
|
|
.into_iter()
|
|
.map(|test_case_path| {
|
|
let case = Self::Case::load(&test_case_path).expect("test case should load");
|
|
(test_case_path, case)
|
|
})
|
|
.collect();
|
|
|
|
let results = Cases { test_cases }.run();
|
|
|
|
assert_tests_pass(&self.suite_name(), &suite_path, &results);
|
|
}
|
|
}
|
|
|
|
/// Recursively find all files with a given extension.
|
|
fn find_all_files_with_extension(path: &Path, extension: &str) -> Vec<PathBuf> {
|
|
WalkDir::new(path)
|
|
.into_iter()
|
|
.filter_map(Result::ok)
|
|
.filter(|e| e.file_name().to_string_lossy().ends_with(extension))
|
|
.map(DirEntry::into_path)
|
|
.collect::<_>()
|
|
}
|