erigon-pulse/turbo/trie/intermediate_hashes_test.go
a 436493350e
Sentinel refactor (#8296)
1. changes sentinel to use an http-like interface

2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
2023-10-22 01:17:18 +02:00

39 lines
955 B
Go

package trie
import (
"fmt"
"github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon-lib/common/hexutil"
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
func TestCompressNibbles(t *testing.T) {
cases := []struct {
in string
expect string
}{
{in: "0000", expect: "00"},
{in: "0102", expect: "12"},
{in: "0102030405060708090f", expect: "123456789f"},
{in: "0f000101", expect: "f011"},
{in: "", expect: ""},
}
compressed := make([]byte, 64)
decompressed := make([]byte, 64)
for _, tc := range cases {
compressed = compressed[:0]
decompressed = decompressed[:0]
in := common.Hex2Bytes(tc.in)
hexutil.CompressNibbles(in, &compressed)
msg := "On: " + tc.in + " Len: " + strconv.Itoa(len(compressed))
assert.Equal(t, tc.expect, fmt.Sprintf("%x", compressed), msg)
hexutil.DecompressNibbles(compressed, &decompressed)
assert.Equal(t, tc.in, fmt.Sprintf("%x", decompressed), msg)
}
}