20339ade01
## Issue Addressed Closes #1873 ## Proposed Changes Fixes the bug in slashing protection import (#1873) by pruning the database upon import. Also expands the test generator to cover this case and a few others which are under discussion here: https://ethereum-magicians.org/t/eip-3076-validator-client-interchange-format-slashing-protection/4883 ## Additional Info Depending on the outcome of the discussion on Eth Magicians, we can either wait for consensus before merging, or merge our preferred solution and patch things later.
24 lines
566 B
Rust
24 lines
566 B
Rust
use slashing_protection::interchange_test::MultiTestCase;
|
|
use std::fs::File;
|
|
use std::path::PathBuf;
|
|
|
|
fn test_root_dir() -> PathBuf {
|
|
PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
|
.join("interchange-tests")
|
|
.join("tests")
|
|
}
|
|
|
|
#[test]
|
|
fn generated() {
|
|
for entry in test_root_dir()
|
|
.join("generated")
|
|
.read_dir()
|
|
.unwrap()
|
|
.map(Result::unwrap)
|
|
{
|
|
let file = File::open(entry.path()).unwrap();
|
|
let test_case: MultiTestCase = serde_json::from_reader(&file).unwrap();
|
|
test_case.run();
|
|
}
|
|
}
|