2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-07-05 15:16:27 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-07-05 15:16:27 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::H256;
|
2016-07-05 15:16:27 +02:00
|
|
|
use ethjson;
|
2018-07-02 18:50:05 +02:00
|
|
|
use ethtrie::RlpCodec;
|
2018-01-10 13:35:18 +01:00
|
|
|
use trie::{TrieFactory, TrieSpec};
|
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_file as run_generic_test_file, run_test_path as run_generic_test_path},
|
|
|
|
secure::{run_test_file as run_secure_test_file, run_test_path as run_secure_test_path},
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-25 11:21:45 +02:00
|
|
|
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![];
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
for (name, test) in tests.into_iter() {
|
2018-06-25 11:21:45 +02:00
|
|
|
start_stop_hook(&name, HookType::OnStart);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2019-02-20 19:09:34 +01:00
|
|
|
let mut memdb = journaldb::new_memory_db();
|
2016-07-05 15:16:27 +02:00
|
|
|
let mut root = H256::default();
|
|
|
|
let mut t = factory.create(&mut memdb, &mut root);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
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).expect(&format!(
|
2017-01-05 21:15:43 +01:00
|
|
|
"Trie test '{:?}' failed due to internal error",
|
|
|
|
name
|
|
|
|
));
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
if *t.root() != test.root.into() {
|
|
|
|
result.push(format!("Trie test '{:?}' failed.", name));
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-25 11:21:45 +02:00
|
|
|
start_stop_hook(&name, HookType::OnStop);
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
for i in &result {
|
|
|
|
println!("FAILED: {}", i);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
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"}
|
|
|
|
}
|