Add shuffling ef_tests

This commit is contained in:
Paul Hauner 2019-05-23 23:22:54 +10:00
parent ffcd1e6409
commit 5ed3c8bec3
No known key found for this signature in database
GPG Key ID: 5E2CFF9B75FA63DF
6 changed files with 65 additions and 1 deletions

View File

@ -20,6 +20,7 @@ ssz = { path = "../../eth2/utils/ssz" }
tree_hash = { path = "../../eth2/utils/tree_hash" }
cached_tree_hash = { path = "../../eth2/utils/cached_tree_hash" }
state_processing = { path = "../../eth2/state_processing" }
swap_or_not_shuffle = { path = "../../eth2/utils/swap_or_not_shuffle" }
types = { path = "../../eth2/types" }
walkdir = "2"
yaml-rust = { git = "https://github.com/sigp/yaml-rust", branch = "escape_all_str"}

View File

@ -10,6 +10,7 @@ mod bls_sign_msg;
mod operations_deposit;
mod operations_exit;
mod operations_transfer;
mod shuffling;
mod ssz_generic;
mod ssz_static;
@ -22,6 +23,7 @@ pub use bls_sign_msg::*;
pub use operations_deposit::*;
pub use operations_exit::*;
pub use operations_transfer::*;
pub use shuffling::*;
pub use ssz_generic::*;
pub use ssz_static::*;

View File

@ -0,0 +1,48 @@
use super::*;
use crate::case_result::compare_result;
use serde_derive::Deserialize;
use std::marker::PhantomData;
use swap_or_not_shuffle::{get_permutated_index, shuffle_list};
#[derive(Debug, Clone, Deserialize)]
pub struct Shuffling<T> {
pub seed: String,
pub count: usize,
pub shuffled: Vec<usize>,
#[serde(skip)]
_phantom: PhantomData<T>,
}
impl<T> YamlDecode for Shuffling<T> {
fn yaml_decode(yaml: &String) -> Result<Self, Error> {
Ok(serde_yaml::from_str(&yaml.as_str()).unwrap())
}
}
impl<T: EthSpec> Case for Shuffling<T> {
fn result(&self, _case_index: usize) -> Result<(), Error> {
if self.count == 0 {
compare_result::<_, Error>(&Ok(vec![]), &Some(self.shuffled.clone()))?;
} else {
let spec = T::spec();
let seed = hex::decode(&self.seed[2..])
.map_err(|e| Error::FailedToParseTest(format!("{:?}", e)))?;
// Test get_permuted_index
let shuffling = (0..self.count)
.into_iter()
.map(|i| {
get_permutated_index(i, self.count, &seed, spec.shuffle_round_count).unwrap()
})
.collect();
compare_result::<_, Error>(&Ok(shuffling), &Some(self.shuffled.clone()))?;
// Test "shuffle_list"
let input: Vec<usize> = (0..self.count).collect();
let shuffling = shuffle_list(input, spec.shuffle_round_count, &seed, false).unwrap();
compare_result::<_, Error>(&Ok(shuffling), &Some(self.shuffled.clone()))?;
}
Ok(())
}
}

View File

@ -41,6 +41,8 @@ impl Doc {
("ssz", "uint", _) => run_test::<SszGeneric>(self),
("ssz", "static", "minimal") => run_test::<SszStatic<MinimalEthSpec>>(self),
("ssz", "static", "mainnet") => run_test::<SszStatic<MainnetEthSpec>>(self),
("shuffling", "core", "minimal") => run_test::<Shuffling<MinimalEthSpec>>(self),
("shuffling", "core", "mainnet") => run_test::<Shuffling<MainnetEthSpec>>(self),
("bls", "aggregate_pubkeys", "mainnet") => run_test::<BlsAggregatePubkeys>(self),
("bls", "aggregate_sigs", "mainnet") => run_test::<BlsAggregateSigs>(self),
("bls", "msg_hash_compressed", "mainnet") => run_test::<BlsG2Compressed>(self),

View File

@ -21,7 +21,9 @@ impl EthSpec for MinimalEthSpec {
fn spec() -> ChainSpec {
// TODO: this spec is likely incorrect!
FewValidatorsEthSpec::spec()
let mut spec = FewValidatorsEthSpec::spec();
spec.shuffle_round_count = 10;
spec
}
}

View File

@ -60,6 +60,15 @@ fn ssz_static() {
});
}
#[test]
fn shuffling() {
yaml_files_in_test_dir(&Path::new("shuffling").join("core"))
.into_par_iter()
.for_each(|file| {
Doc::assert_tests_pass(file);
});
}
#[test]
#[cfg(not(feature = "fake_crypto"))]
fn operations_deposit() {