mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 21:27:19 +00:00
c1c3b75867
* Functions that are to be moved to //shared/htrutils captured in separate file. * Move files into new //shared/htutils package hash_function.go renamed to hashers.go * Refactor to reference moved methods in new package - Added import for htrutils to state and stateutil packages - Update references to imported funcs (append "htrutils.") - Updated funcs in htrutils to be exported where necessary * Add tests
81 lines
2.5 KiB
Go
81 lines
2.5 KiB
Go
package htrutils_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/hashutil"
|
|
"github.com/prysmaticlabs/prysm/shared/htrutils"
|
|
)
|
|
|
|
func TestUint64Root(t *testing.T) {
|
|
uintVal := uint64(1234567890)
|
|
expected := [32]byte{210, 2, 150, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
|
|
|
|
result := htrutils.Uint64Root(uintVal)
|
|
if expected != result {
|
|
t.Errorf("Expected result to be %d, received %d", expected, result)
|
|
}
|
|
}
|
|
|
|
func TestForkRoot(t *testing.T) {
|
|
testFork := pb.Fork{
|
|
PreviousVersion: []byte{123},
|
|
CurrentVersion: []byte{124},
|
|
Epoch: uint64(1234567890),
|
|
}
|
|
expected := [32]byte{19, 46, 77, 103, 92, 175, 247, 33, 100, 64, 17, 111, 199, 145, 69, 38, 217, 112, 6, 16, 149, 201, 225, 144, 192, 228, 197, 172, 157, 78, 114, 140}
|
|
|
|
result, err := htrutils.ForkRoot(&testFork)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if expected != result {
|
|
t.Errorf("Expected result to be %d, received %d", expected, result)
|
|
}
|
|
}
|
|
|
|
func TestCheckPointRoot(t *testing.T) {
|
|
testHasher := hashutil.CustomSHA256Hasher()
|
|
testCheckpoint := ethpb.Checkpoint{
|
|
Epoch: uint64(1234567890),
|
|
Root: []byte{222},
|
|
}
|
|
expected := [32]byte{228, 65, 39, 109, 183, 249, 167, 232, 125, 239, 25, 155, 207, 4, 84, 174, 176, 229, 175, 224, 62, 33, 215, 254, 170, 220, 132, 65, 246, 128, 68, 194}
|
|
|
|
result, err := htrutils.CheckpointRoot(testHasher, &testCheckpoint)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if expected != result {
|
|
t.Errorf("Expected result to be %d, received %d", expected, result)
|
|
}
|
|
}
|
|
|
|
func TestHistoricalRootsRoot(t *testing.T) {
|
|
testHistoricalRoots := [][]byte{{123}, {234}}
|
|
expected := [32]byte{70, 204, 150, 196, 89, 138, 190, 205, 65, 207, 120, 166, 179, 247, 147, 20, 29, 133, 117, 116, 151, 234, 129, 32, 22, 15, 79, 178, 98, 73, 132, 152}
|
|
|
|
result, err := htrutils.HistoricalRootsRoot(testHistoricalRoots)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if expected != result {
|
|
t.Errorf("Expected result to be %d, received %d", expected, result)
|
|
}
|
|
}
|
|
|
|
func TestSlashingsRoot(t *testing.T) {
|
|
testSlashingsRoot := []uint64{123, 234}
|
|
expected := [32]byte{123, 0, 0, 0, 0, 0, 0, 0, 234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
|
|
|
|
result, err := htrutils.SlashingsRoot(testSlashingsRoot)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if expected != result {
|
|
t.Errorf("Expected result to be %d, received %d", expected, result)
|
|
}
|
|
}
|