mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-01 00:31:21 +00:00
59d810650c
* cleanup obsolete code for bin-commitment-trie * renamed back test functions for hex, renamed test file for bin trie for consistency
234 lines
6.9 KiB
Go
234 lines
6.9 KiB
Go
package commitment
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/common/length"
|
|
"github.com/stretchr/testify/require"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
func Test_BinPatriciaTrie_UniqueRepresentation(t *testing.T) {
|
|
t.Skip()
|
|
|
|
ms := NewMockState(t)
|
|
ms2 := NewMockState(t)
|
|
|
|
trie := NewBinPatriciaHashed(length.Addr, ms.branchFn, ms.accountFn, ms.storageFn)
|
|
trieBatch := NewBinPatriciaHashed(length.Addr, ms2.branchFn, ms2.accountFn, ms2.storageFn)
|
|
|
|
plainKeys, hashedKeys, updates := NewUpdateBuilder().
|
|
Balance("e25652aaa6b9417973d325f9a1246b48ff9420bf", 12).
|
|
Balance("cdd0a12034e978f7eccda72bd1bd89a8142b704e", 120000).
|
|
Nonce("5bb6abae12c87592b940458437526cb6cad60d50", 152512).
|
|
Balance("2fcb355beb0ea2b5fcf3b62a24e2faaff1c8d0c0", 100000).
|
|
Balance("463510be61a7ccde354509c0ab813e599ee3fc8a", 200000).
|
|
Storage("cd3e804beea486038609f88f399140dfbe059ef3", "02", "98").
|
|
Balance("82c88c189d5deeba0ad11463b80b44139bd519c1", 300000).
|
|
Balance("0647e43e8f9ba3fb8b14ad30796b7553d667c858", 400000).
|
|
Delete("cdd0a12034e978f7eccda72bd1bd89a8142b704e").
|
|
Balance("06548d648c23b12f2e9bfd1bae274b658be208f4", 500000).
|
|
Balance("e5417f49640cf8a0b1d6e38f9dfdc00196e99e8b", 600000).
|
|
Nonce("825ac9fa5d015ec7c6b4cbbc50f78d619d255ea7", 184).
|
|
Build()
|
|
|
|
for i := 0; i < len(updates); i++ {
|
|
_, err := trie.ProcessUpdates(plainKeys[i:i+1], hashedKeys[i:i+1], updates[i:i+1])
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
trieBatch.ProcessUpdates(plainKeys, hashedKeys, updates)
|
|
|
|
sequentialHash, _ := trie.RootHash()
|
|
require.Len(t, sequentialHash, 32)
|
|
|
|
batchHash, _ := trieBatch.RootHash()
|
|
require.EqualValues(t, sequentialHash, batchHash)
|
|
}
|
|
|
|
func Test_BinPatriciaTrie_EmptyState(t *testing.T) {
|
|
ms := NewMockState(t)
|
|
hph := NewBinPatriciaHashed(1, ms.branchFn, ms.accountFn, ms.storageFn)
|
|
hph.SetTrace(false)
|
|
|
|
plainKeys, hashedKeys, updates := NewUpdateBuilder().
|
|
Balance("00", 4).
|
|
Balance("01", 5).
|
|
Balance("02", 6).
|
|
Balance("03", 7).
|
|
Balance("04", 8).
|
|
Storage("04", "01", "0401").
|
|
Storage("03", "56", "050505").
|
|
Storage("03", "57", "060606").
|
|
Balance("05", 9).
|
|
Storage("05", "02", "8989").
|
|
Storage("05", "04", "9898").
|
|
Build()
|
|
if err := ms.applyPlainUpdates(plainKeys, updates); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
branchNodeUpdates, err := hph.ProcessUpdates(plainKeys, hashedKeys, updates)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ms.applyBranchNodeUpdates(branchNodeUpdates)
|
|
fmt.Printf("1. Generated updates\n")
|
|
var keys []string
|
|
for key := range branchNodeUpdates {
|
|
keys = append(keys, key)
|
|
}
|
|
slices.Sort(keys)
|
|
for _, key := range keys {
|
|
branchNodeUpdate := branchNodeUpdates[key]
|
|
fmt.Printf("%x => %s\n", CompactToHex([]byte(key)), branchToString(branchNodeUpdate))
|
|
}
|
|
// More updates
|
|
hph.Reset()
|
|
hph.SetTrace(false)
|
|
plainKeys, hashedKeys, updates = NewUpdateBuilder().
|
|
Storage("03", "58", "050505").
|
|
Build()
|
|
if err := ms.applyPlainUpdates(plainKeys, updates); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
branchNodeUpdates, err = hph.ProcessUpdates(plainKeys, hashedKeys, updates)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ms.applyBranchNodeUpdates(branchNodeUpdates)
|
|
fmt.Printf("2. Generated updates\n")
|
|
keys = keys[:0]
|
|
for key := range branchNodeUpdates {
|
|
keys = append(keys, key)
|
|
}
|
|
slices.Sort(keys)
|
|
for _, key := range keys {
|
|
branchNodeUpdate := branchNodeUpdates[key]
|
|
fmt.Printf("%x => %s\n", CompactToHex([]byte(key)), branchToString(branchNodeUpdate))
|
|
}
|
|
// More updates
|
|
hph.Reset()
|
|
hph.SetTrace(false)
|
|
plainKeys, hashedKeys, updates = NewUpdateBuilder().
|
|
Storage("03", "58", "070807").
|
|
Build()
|
|
if err := ms.applyPlainUpdates(plainKeys, updates); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
branchNodeUpdates, err = hph.ProcessUpdates(plainKeys, hashedKeys, updates)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ms.applyBranchNodeUpdates(branchNodeUpdates)
|
|
fmt.Printf("3. Generated updates\n")
|
|
keys = keys[:0]
|
|
for key := range branchNodeUpdates {
|
|
keys = append(keys, key)
|
|
}
|
|
slices.Sort(keys)
|
|
for _, key := range keys {
|
|
branchNodeUpdate := branchNodeUpdates[key]
|
|
fmt.Printf("%x => %s\n", CompactToHex([]byte(key)), branchToString(branchNodeUpdate))
|
|
}
|
|
}
|
|
|
|
func Test_BinPatriciaHashed_ProcessUpdates_UniqueRepresentation(t *testing.T) {
|
|
t.Skip()
|
|
|
|
ms := NewMockState(t)
|
|
ms2 := NewMockState(t)
|
|
|
|
plainKeys, hashedKeys, updates := NewUpdateBuilder().
|
|
Balance("f4", 4).
|
|
Storage("04", "01", "0401").
|
|
Balance("ba", 065606).
|
|
Balance("00", 4).
|
|
Balance("01", 5).
|
|
Balance("02", 6).
|
|
Balance("03", 7).
|
|
Storage("03", "56", "050505").
|
|
Balance("05", 9).
|
|
Storage("03", "57", "060606").
|
|
Balance("b9", 6).
|
|
Nonce("ff", 169356).
|
|
Storage("05", "02", "8989").
|
|
Storage("f5", "04", "9898").
|
|
Build()
|
|
|
|
renderUpdates := func(branchNodeUpdates map[string][]byte) {
|
|
var keys []string
|
|
for key := range branchNodeUpdates {
|
|
keys = append(keys, key)
|
|
}
|
|
slices.Sort(keys)
|
|
for _, key := range keys {
|
|
branchNodeUpdate := branchNodeUpdates[key]
|
|
fmt.Printf("%x => %s\n", CompactToHex([]byte(key)), branchToString(branchNodeUpdate))
|
|
}
|
|
}
|
|
|
|
trieOne := NewBinPatriciaHashed(1, ms.branchFn, ms.accountFn, ms.storageFn)
|
|
trieTwo := NewBinPatriciaHashed(1, ms2.branchFn, ms2.accountFn, ms2.storageFn)
|
|
|
|
trieTwo.Reset()
|
|
trieOne.Reset()
|
|
|
|
trieOne.SetTrace(true)
|
|
trieTwo.SetTrace(true)
|
|
|
|
// single sequential update
|
|
roots := make([][]byte, 0)
|
|
branchNodeUpdatesOne := make(map[string][]byte)
|
|
for i := 0; i < len(updates); i++ {
|
|
if err := ms.applyPlainUpdates(plainKeys[i:i+1], updates[i:i+1]); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
branchNodeUpdates, err := trieOne.ProcessUpdates(plainKeys[i:i+1], hashedKeys[i:i+1], updates[i:i+1])
|
|
require.NoError(t, err)
|
|
|
|
sequentialRoot, err := trieOne.RootHash()
|
|
require.NoError(t, err)
|
|
roots = append(roots, sequentialRoot)
|
|
|
|
ms.applyBranchNodeUpdates(branchNodeUpdates)
|
|
|
|
for br, upd := range branchNodeUpdates {
|
|
branchNodeUpdatesOne[br] = upd
|
|
}
|
|
renderUpdates(branchNodeUpdatesOne)
|
|
}
|
|
|
|
fmt.Printf("1. Trie sequential update generated following branch updates\n")
|
|
renderUpdates(branchNodeUpdatesOne)
|
|
|
|
err := ms2.applyPlainUpdates(plainKeys, updates)
|
|
require.NoError(t, err)
|
|
fmt.Printf("\n\n")
|
|
|
|
// batch update
|
|
branchNodeUpdatesTwo, err := trieTwo.ProcessUpdates(plainKeys, hashedKeys, updates)
|
|
require.NoError(t, err)
|
|
|
|
ms2.applyBranchNodeUpdates(branchNodeUpdatesTwo)
|
|
|
|
fmt.Printf("2. Trie batch update generated following branch updates\n")
|
|
renderUpdates(branchNodeUpdatesTwo)
|
|
|
|
sequentialRoot, err := trieOne.RootHash()
|
|
require.NoError(t, err)
|
|
|
|
for i, root := range roots {
|
|
fmt.Printf("%d [%s]\n", i, hex.EncodeToString(root))
|
|
}
|
|
require.NotContainsf(t, roots[:len(roots)-1], sequentialRoot, "sequential root %s found in previous hashes", hex.EncodeToString(sequentialRoot))
|
|
|
|
batchRoot, err := trieTwo.RootHash()
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, batchRoot, sequentialRoot,
|
|
"expected equal roots, got sequential [%v] != batch [%v]", hex.EncodeToString(sequentialRoot), hex.EncodeToString(batchRoot))
|
|
require.Lenf(t, batchRoot, 32, "root hash length should be equal to 32 bytes")
|
|
}
|