2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-07-05 15:16:27 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. 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;
|
2020-09-08 02:48:09 +02:00
|
|
|
use std::path::Path;
|
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;
|
|
|
|
|
2020-09-08 02:48:09 +02:00
|
|
|
pub fn json_trie_test<H: FnMut(&str, HookType)>(
|
|
|
|
path: &Path,
|
2018-06-25 11:21:45 +02:00
|
|
|
json: &[u8],
|
|
|
|
trie: TrieSpec,
|
|
|
|
start_stop_hook: &mut H,
|
|
|
|
) -> Vec<String> {
|
2020-09-08 02:48:09 +02:00
|
|
|
let tests = ethjson::trie::Test::load(json).expect(&format!(
|
|
|
|
"Could not parse JSON trie test data from {}",
|
|
|
|
path.display()
|
|
|
|
));
|
2018-07-02 18:50:05 +02:00
|
|
|
let factory = TrieFactory::<_, RlpCodec>::new(trie);
|
2020-09-08 02:48:09 +02:00
|
|
|
let mut failed = vec![];
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-05 15:16:27 +02:00
|
|
|
for (name, test) in tests.into_iter() {
|
2020-09-10 08:04:14 +02:00
|
|
|
if !super::debug_include_test(&name) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
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();
|
2020-09-08 02:48:09 +02:00
|
|
|
let mut root = H256::zero();
|
2016-07-05 15:16:27 +02:00
|
|
|
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
|
|
|
|
2020-09-08 02:48:09 +02:00
|
|
|
if *t.root() == test.root.into() {
|
|
|
|
println!(" - trie: {}...OK", name);
|
|
|
|
} else {
|
|
|
|
println!(" - trie: {}...FAILED ({:?})", name, path);
|
|
|
|
failed.push(format!("{}", name));
|
2016-07-05 15:16:27 +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
|
|
|
|
2020-09-08 02:48:09 +02:00
|
|
|
failed
|
2016-07-05 15:16:27 +02:00
|
|
|
}
|