mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 11:52:42 +00:00
* Move tests -> testing * Directory restructure * Update Cargo.toml during restructure * Update Makefile during restructure * Fix arbitrary path
106 lines
3.4 KiB
Rust
106 lines
3.4 KiB
Rust
use super::*;
|
|
use crate::case_result::compare_result;
|
|
use crate::cases::common::SszStaticType;
|
|
use crate::decode::yaml_decode_file;
|
|
use cached_tree_hash::{CacheArena, CachedTreeHash};
|
|
use serde_derive::Deserialize;
|
|
use std::fs;
|
|
use std::marker::PhantomData;
|
|
use types::Hash256;
|
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
struct SszStaticRoots {
|
|
root: String,
|
|
signing_root: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct SszStatic<T> {
|
|
roots: SszStaticRoots,
|
|
serialized: Vec<u8>,
|
|
value: T,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct SszStaticTHC<T, C> {
|
|
roots: SszStaticRoots,
|
|
serialized: Vec<u8>,
|
|
value: T,
|
|
_phantom: PhantomData<C>,
|
|
}
|
|
|
|
fn load_from_dir<T: SszStaticType>(path: &Path) -> Result<(SszStaticRoots, Vec<u8>, T), Error> {
|
|
let roots = yaml_decode_file(&path.join("roots.yaml"))?;
|
|
let serialized = fs::read(&path.join("serialized.ssz")).expect("serialized.ssz exists");
|
|
let value = yaml_decode_file(&path.join("value.yaml"))?;
|
|
|
|
Ok((roots, serialized, value))
|
|
}
|
|
|
|
impl<T: SszStaticType> LoadCase for SszStatic<T> {
|
|
fn load_from_dir(path: &Path) -> Result<Self, Error> {
|
|
load_from_dir(path).map(|(roots, serialized, value)| Self {
|
|
roots,
|
|
serialized,
|
|
value,
|
|
})
|
|
}
|
|
}
|
|
|
|
impl<T: SszStaticType + CachedTreeHash<C>, C: Debug + Sync> LoadCase for SszStaticTHC<T, C> {
|
|
fn load_from_dir(path: &Path) -> Result<Self, Error> {
|
|
load_from_dir(path).map(|(roots, serialized, value)| Self {
|
|
roots,
|
|
serialized,
|
|
value,
|
|
_phantom: PhantomData,
|
|
})
|
|
}
|
|
}
|
|
|
|
pub fn check_serialization<T: SszStaticType>(value: &T, serialized: &[u8]) -> Result<(), Error> {
|
|
// Check serialization
|
|
let serialized_result = value.as_ssz_bytes();
|
|
compare_result::<usize, Error>(&Ok(value.ssz_bytes_len()), &Some(serialized.len()))?;
|
|
compare_result::<Vec<u8>, Error>(&Ok(serialized_result), &Some(serialized.to_vec()))?;
|
|
|
|
// Check deserialization
|
|
let deserialized_result = T::from_ssz_bytes(serialized);
|
|
compare_result(&deserialized_result, &Some(value.clone()))?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn check_tree_hash(expected_str: &str, actual_root: &[u8]) -> Result<(), Error> {
|
|
let expected_root = hex::decode(&expected_str[2..])
|
|
.map_err(|e| Error::FailedToParseTest(format!("{:?}", e)))?;
|
|
let expected_root = Hash256::from_slice(&expected_root);
|
|
let tree_hash_root = Hash256::from_slice(actual_root);
|
|
compare_result::<Hash256, Error>(&Ok(tree_hash_root), &Some(expected_root))
|
|
}
|
|
|
|
impl<T: SszStaticType> Case for SszStatic<T> {
|
|
fn result(&self, _case_index: usize) -> Result<(), Error> {
|
|
check_serialization(&self.value, &self.serialized)?;
|
|
check_tree_hash(&self.roots.root, self.value.tree_hash_root().as_bytes())?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<T: SszStaticType + CachedTreeHash<C>, C: Debug + Sync> Case for SszStaticTHC<T, C> {
|
|
fn result(&self, _case_index: usize) -> Result<(), Error> {
|
|
check_serialization(&self.value, &self.serialized)?;
|
|
check_tree_hash(&self.roots.root, self.value.tree_hash_root().as_bytes())?;
|
|
|
|
let arena = &mut CacheArena::default();
|
|
let mut cache = self.value.new_tree_hash_cache(arena);
|
|
let cached_tree_hash_root = self
|
|
.value
|
|
.recalculate_tree_hash_root(arena, &mut cache)
|
|
.unwrap();
|
|
check_tree_hash(&self.roots.root, cached_tree_hash_root.as_bytes())?;
|
|
|
|
Ok(())
|
|
}
|
|
}
|