2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-07-05 15:16:27 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
use ethjson;
|
2017-09-06 20:47:45 +02:00
|
|
|
use trie::{TrieFactory, TrieSpec};
|
2018-07-02 18:50:05 +02:00
|
|
|
use ethtrie::RlpCodec;
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
2017-09-06 20:47:45 +02:00
|
|
|
use memorydb::MemoryDB;
|
2018-07-02 18:50:05 +02:00
|
|
|
use keccak_hasher::KeccakHasher;
|
2018-10-09 22:07:25 +02:00
|
|
|
use kvdb::DBValue;
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2018-06-25 11:21:45 +02:00
|
|
|
use super::HookType;
|
|
|
|
|
|
|
|
pub use self::generic::run_test_path as run_generic_test_path;
|
|
|
|
pub use self::generic::run_test_file as run_generic_test_file;
|
|
|
|
pub use self::secure::run_test_path as run_secure_test_path;
|
|
|
|
pub use self::secure::run_test_file as run_secure_test_file;
|
|
|
|
|
|
|
|
fn test_trie<H: FnMut(&str, HookType)>(json: &[u8], trie: TrieSpec, start_stop_hook: &mut H) -> Vec<String> {
|
2016-07-05 15:16:27 +02:00
|
|
|
let tests = ethjson::trie::Test::load(json).unwrap();
|
2018-07-02 18:50:05 +02:00
|
|
|
let factory = TrieFactory::<_, RlpCodec>::new(trie);
|
2016-07-05 15:16:27 +02:00
|
|
|
let mut result = vec![];
|
|
|
|
|
|
|
|
for (name, test) in tests.into_iter() {
|
2018-06-25 11:21:45 +02:00
|
|
|
start_stop_hook(&name, HookType::OnStart);
|
|
|
|
|
2018-10-09 22:07:25 +02:00
|
|
|
let mut memdb = MemoryDB::<KeccakHasher, DBValue>::new();
|
2016-07-05 15:16:27 +02:00
|
|
|
let mut root = H256::default();
|
|
|
|
let mut t = factory.create(&mut memdb, &mut root);
|
|
|
|
|
|
|
|
for (key, value) in test.input.data.into_iter() {
|
|
|
|
let key: Vec<u8> = key.into();
|
|
|
|
let value: Vec<u8> = value.map_or_else(Vec::new, Into::into);
|
2016-08-03 18:35:48 +02:00
|
|
|
t.insert(&key, &value)
|
2017-01-05 21:15:43 +01:00
|
|
|
.expect(&format!("Trie test '{:?}' failed due to internal error", name));
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if *t.root() != test.root.into() {
|
|
|
|
result.push(format!("Trie test '{:?}' failed.", name));
|
|
|
|
}
|
2018-06-25 11:21:45 +02:00
|
|
|
|
|
|
|
start_stop_hook(&name, HookType::OnStop);
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for i in &result {
|
|
|
|
println!("FAILED: {}", i);
|
|
|
|
}
|
|
|
|
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
|
|
|
mod generic {
|
2018-06-25 11:21:45 +02:00
|
|
|
use std::path::Path;
|
2017-09-06 20:47:45 +02:00
|
|
|
use trie::TrieSpec;
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2018-06-25 11:21:45 +02:00
|
|
|
use super::HookType;
|
|
|
|
|
|
|
|
/// Run generic trie jsontests on a given folder.
|
|
|
|
pub fn run_test_path<H: FnMut(&str, HookType)>(p: &Path, skip: &[&'static str], h: &mut H) {
|
|
|
|
::json_tests::test_common::run_test_path(p, skip, do_json_test, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Run generic trie jsontests on a given file.
|
|
|
|
pub fn run_test_file<H: FnMut(&str, HookType)>(p: &Path, h: &mut H) {
|
|
|
|
::json_tests::test_common::run_test_file(p, do_json_test, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn do_json_test<H: FnMut(&str, HookType)>(json: &[u8], h: &mut H) -> Vec<String> {
|
|
|
|
super::test_trie(json, TrieSpec::Generic, h)
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_test!{TrieTests_trietest, "TrieTests/trietest"}
|
|
|
|
declare_test!{TrieTests_trieanyorder, "TrieTests/trieanyorder"}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod secure {
|
2018-06-25 11:21:45 +02:00
|
|
|
use std::path::Path;
|
2017-09-06 20:47:45 +02:00
|
|
|
use trie::TrieSpec;
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2018-06-25 11:21:45 +02:00
|
|
|
use super::HookType;
|
|
|
|
|
|
|
|
/// Run secure trie jsontests on a given folder.
|
|
|
|
pub fn run_test_path<H: FnMut(&str, HookType)>(p: &Path, skip: &[&'static str], h: &mut H) {
|
|
|
|
::json_tests::test_common::run_test_path(p, skip, do_json_test, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Run secure trie jsontests on a given file.
|
|
|
|
pub fn run_test_file<H: FnMut(&str, HookType)>(p: &Path, h: &mut H) {
|
|
|
|
::json_tests::test_common::run_test_file(p, do_json_test, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn do_json_test<H: FnMut(&str, HookType)>(json: &[u8], h: &mut H) -> Vec<String> {
|
|
|
|
super::test_trie(json, TrieSpec::Secure, h)
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_test!{TrieTests_hex_encoded_secure, "TrieTests/hex_encoded_securetrie_test"}
|
|
|
|
declare_test!{TrieTests_trietest_secure, "TrieTests/trietest_secureTrie"}
|
|
|
|
declare_test!{TrieTests_trieanyorder_secure, "TrieTests/trieanyorder_secureTrie"}
|
|
|
|
}
|