Files
nanoreth/crates/trie/db/tests/walker.rs

137 lines
4.8 KiB
Rust

use reth_db::tables;
use reth_db_api::{cursor::DbCursorRW, transaction::DbTxMut};
use reth_primitives::B256;
use reth_provider::test_utils::create_test_provider_factory;
use reth_trie::{
prefix_set::PrefixSetMut, trie_cursor::TrieCursor, walker::TrieWalker, StorageTrieEntry,
};
use reth_trie_common::{BranchNodeCompact, Nibbles};
use reth_trie_db::{DatabaseAccountTrieCursor, DatabaseStorageTrieCursor};
#[test]
fn walk_nodes_with_common_prefix() {
let inputs = vec![
(vec![0x5u8], BranchNodeCompact::new(0b1_0000_0101, 0b1_0000_0100, 0, vec![], None)),
(vec![0x5u8, 0x2, 0xC], BranchNodeCompact::new(0b1000_0111, 0, 0, vec![], None)),
(vec![0x5u8, 0x8], BranchNodeCompact::new(0b0110, 0b0100, 0, vec![], None)),
];
let expected = vec![
vec![0x5, 0x0],
// The [0x5, 0x2] prefix is shared by the first 2 nodes, however:
// 1. 0x2 for the first node points to the child node path
// 2. 0x2 for the second node is a key.
// So to proceed to add 1 and 3, we need to push the sibling first (0xC).
vec![0x5, 0x2],
vec![0x5, 0x2, 0xC, 0x0],
vec![0x5, 0x2, 0xC, 0x1],
vec![0x5, 0x2, 0xC, 0x2],
vec![0x5, 0x2, 0xC, 0x7],
vec![0x5, 0x8],
vec![0x5, 0x8, 0x1],
vec![0x5, 0x8, 0x2],
];
let factory = create_test_provider_factory();
let tx = factory.provider_rw().unwrap();
let mut account_cursor = tx.tx_ref().cursor_write::<tables::AccountsTrie>().unwrap();
for (k, v) in &inputs {
account_cursor.upsert(k.clone().into(), v.clone()).unwrap();
}
let account_trie = DatabaseAccountTrieCursor::new(account_cursor);
test_cursor(account_trie, &expected);
let hashed_address = B256::random();
let mut storage_cursor = tx.tx_ref().cursor_dup_write::<tables::StoragesTrie>().unwrap();
for (k, v) in &inputs {
storage_cursor
.upsert(hashed_address, StorageTrieEntry { nibbles: k.clone().into(), node: v.clone() })
.unwrap();
}
let storage_trie = DatabaseStorageTrieCursor::new(storage_cursor, hashed_address);
test_cursor(storage_trie, &expected);
}
fn test_cursor<T>(mut trie: T, expected: &[Vec<u8>])
where
T: TrieCursor,
{
let mut walker = TrieWalker::new(&mut trie, Default::default());
assert!(walker.key().unwrap().is_empty());
// We're traversing the path in lexicographical order.
for expected in expected {
let got = walker.advance().unwrap();
assert_eq!(got.unwrap(), Nibbles::from_nibbles_unchecked(expected.clone()));
}
// There should be 8 paths traversed in total from 3 branches.
let got = walker.advance().unwrap();
assert!(got.is_none());
}
#[test]
fn cursor_rootnode_with_changesets() {
let factory = create_test_provider_factory();
let tx = factory.provider_rw().unwrap();
let mut cursor = tx.tx_ref().cursor_dup_write::<tables::StoragesTrie>().unwrap();
let nodes = vec![
(
vec![],
BranchNodeCompact::new(
// 2 and 4 are set
0b10100,
0b00100,
0,
vec![],
Some(B256::random()),
),
),
(
vec![0x2],
BranchNodeCompact::new(
// 1 is set
0b00010,
0,
0b00010,
vec![B256::random()],
None,
),
),
];
let hashed_address = B256::random();
for (k, v) in nodes {
cursor.upsert(hashed_address, StorageTrieEntry { nibbles: k.into(), node: v }).unwrap();
}
let mut trie = DatabaseStorageTrieCursor::new(cursor, hashed_address);
// No changes
let mut cursor = TrieWalker::new(&mut trie, Default::default());
assert_eq!(cursor.key().cloned(), Some(Nibbles::new())); // root
assert!(cursor.can_skip_current_node); // due to root_hash
cursor.advance().unwrap(); // skips to the end of trie
assert_eq!(cursor.key().cloned(), None);
// We insert something that's not part of the existing trie/prefix.
let mut changed = PrefixSetMut::default();
changed.insert(Nibbles::from_nibbles([0xF, 0x1]));
let mut cursor = TrieWalker::new(&mut trie, changed.freeze());
// Root node
assert_eq!(cursor.key().cloned(), Some(Nibbles::new()));
// Should not be able to skip state due to the changed values
assert!(!cursor.can_skip_current_node);
cursor.advance().unwrap();
assert_eq!(cursor.key().cloned(), Some(Nibbles::from_nibbles([0x2])));
cursor.advance().unwrap();
assert_eq!(cursor.key().cloned(), Some(Nibbles::from_nibbles([0x2, 0x1])));
cursor.advance().unwrap();
assert_eq!(cursor.key().cloned(), Some(Nibbles::from_nibbles([0x4])));
cursor.advance().unwrap();
assert_eq!(cursor.key().cloned(), None); // the end of trie
}