1657e43931
core, eth, les, trie: rework snap sync
102 lines
3.7 KiB
Go
102 lines
3.7 KiB
Go
// Copyright 2022 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library 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 Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package snap
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
)
|
|
|
|
func hexToNibbles(s string) []byte {
|
|
if len(s) >= 2 && s[0] == '0' && s[1] == 'x' {
|
|
s = s[2:]
|
|
}
|
|
var s2 []byte
|
|
for _, ch := range []byte(s) {
|
|
s2 = append(s2, '0')
|
|
s2 = append(s2, ch)
|
|
}
|
|
return common.Hex2Bytes(string(s2))
|
|
}
|
|
|
|
func TestRequestSorting(t *testing.T) {
|
|
// - Path 0x9 -> {0x19}
|
|
// - Path 0x99 -> {0x0099}
|
|
// - Path 0x01234567890123456789012345678901012345678901234567890123456789019 -> {0x0123456789012345678901234567890101234567890123456789012345678901, 0x19}
|
|
// - Path 0x012345678901234567890123456789010123456789012345678901234567890199 -> {0x0123456789012345678901234567890101234567890123456789012345678901, 0x0099}
|
|
var f = func(path string) string {
|
|
data := hexToNibbles(path)
|
|
return string(data)
|
|
}
|
|
var (
|
|
hashes []common.Hash
|
|
paths []string
|
|
)
|
|
for _, x := range []string{
|
|
"0x9",
|
|
"0x012345678901234567890123456789010123456789012345678901234567890195",
|
|
"0x012345678901234567890123456789010123456789012345678901234567890197",
|
|
"0x012345678901234567890123456789010123456789012345678901234567890196",
|
|
"0x99",
|
|
"0x012345678901234567890123456789010123456789012345678901234567890199",
|
|
"0x01234567890123456789012345678901012345678901234567890123456789019",
|
|
"0x0123456789012345678901234567890101234567890123456789012345678901",
|
|
"0x01234567890123456789012345678901012345678901234567890123456789010",
|
|
"0x01234567890123456789012345678901012345678901234567890123456789011",
|
|
} {
|
|
paths = append(paths, f(x))
|
|
hashes = append(hashes, common.Hash{})
|
|
}
|
|
_, _, syncPaths, pathsets := sortByAccountPath(paths, hashes)
|
|
{
|
|
var b = new(bytes.Buffer)
|
|
for i := 0; i < len(syncPaths); i++ {
|
|
fmt.Fprintf(b, "\n%d. paths %x", i, syncPaths[i])
|
|
}
|
|
want := `
|
|
0. paths [0099]
|
|
1. paths [0123456789012345678901234567890101234567890123456789012345678901 00]
|
|
2. paths [0123456789012345678901234567890101234567890123456789012345678901 0095]
|
|
3. paths [0123456789012345678901234567890101234567890123456789012345678901 0096]
|
|
4. paths [0123456789012345678901234567890101234567890123456789012345678901 0097]
|
|
5. paths [0123456789012345678901234567890101234567890123456789012345678901 0099]
|
|
6. paths [0123456789012345678901234567890101234567890123456789012345678901 10]
|
|
7. paths [0123456789012345678901234567890101234567890123456789012345678901 11]
|
|
8. paths [0123456789012345678901234567890101234567890123456789012345678901 19]
|
|
9. paths [19]`
|
|
if have := b.String(); have != want {
|
|
t.Errorf("have:%v\nwant:%v\n", have, want)
|
|
}
|
|
}
|
|
{
|
|
var b = new(bytes.Buffer)
|
|
for i := 0; i < len(pathsets); i++ {
|
|
fmt.Fprintf(b, "\n%d. pathset %x", i, pathsets[i])
|
|
}
|
|
want := `
|
|
0. pathset [0099]
|
|
1. pathset [0123456789012345678901234567890101234567890123456789012345678901 00 0095 0096 0097 0099 10 11 19]
|
|
2. pathset [19]`
|
|
if have := b.String(); have != want {
|
|
t.Errorf("have:%v\nwant:%v\n", have, want)
|
|
}
|
|
}
|
|
}
|