mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
7cc32c4dda
* remove unused code * remove defer use in loop * Remove unused methods and constants * gofmt and gaz * nilness check * remove unused args * Add TODO for refactoring subscribeWithBase to remove unused arg. It seems too involved to include in this sweeping PR. https://github.com/prysmaticlabs/prysm/issues/7437 * replace empty slice declaration * Remove unnecessary type conversions * remove redundant type declaration * rename receivers to be consistent * Remove bootnode query tool. It is now obsolete by discv5 * Remove relay node. It is no longer used or supported * Revert "Remove relay node. It is no longer used or supported" This reverts commit 4bd7717334dad85ef4766ed9bc4da711fb5fa810. * Delete unused test directory * Delete unsupported gcp startup script * Delete old k8s script * build fixes * fix build * go mod tidy * revert slasher/db/kv/block_header.go * fix build * remove redundant nil check * combine func args Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
78 lines
2.0 KiB
Go
78 lines
2.0 KiB
Go
package sync
|
|
|
|
import (
|
|
"math/rand"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestSortedObj_SortBlocksRoots(t *testing.T) {
|
|
source := rand.NewSource(33)
|
|
randGen := rand.New(source)
|
|
var blks []*ethpb.SignedBeaconBlock
|
|
var roots [][32]byte
|
|
randFunc := func() int64 {
|
|
return randGen.Int63n(50)
|
|
}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
slot := uint64(randFunc())
|
|
newBlk := ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Slot: slot}}
|
|
blks = append(blks, newBlk)
|
|
root := bytesutil.ToBytes32(bytesutil.Bytes32(slot))
|
|
roots = append(roots, root)
|
|
}
|
|
|
|
r := &Service{}
|
|
|
|
newBlks, newRoots := r.sortBlocksAndRoots(blks, roots)
|
|
|
|
previousSlot := uint64(0)
|
|
for i, b := range newBlks {
|
|
if b.Block.Slot < previousSlot {
|
|
t.Errorf("Block list is not sorted as %d is smaller than previousSlot %d", b.Block.Slot, previousSlot)
|
|
}
|
|
if bytesutil.FromBytes8(newRoots[i][:]) != b.Block.Slot {
|
|
t.Errorf("root doesn't match stored slot in block: wanted %d but got %d", b.Block.Slot, bytesutil.FromBytes8(newRoots[i][:]))
|
|
}
|
|
previousSlot = b.Block.Slot
|
|
}
|
|
}
|
|
|
|
func TestSortedObj_NoDuplicates(t *testing.T) {
|
|
source := rand.NewSource(33)
|
|
randGen := rand.New(source)
|
|
var blks []*ethpb.SignedBeaconBlock
|
|
var roots [][32]byte
|
|
randFunc := func() int64 {
|
|
return randGen.Int63n(50)
|
|
}
|
|
|
|
for i := 0; i < 10; i++ {
|
|
slot := uint64(randFunc())
|
|
newBlk := ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Slot: slot}}
|
|
// append twice
|
|
blks = append(blks, newBlk, newBlk)
|
|
|
|
// append twice
|
|
root := bytesutil.ToBytes32(bytesutil.Bytes32(slot))
|
|
roots = append(roots, root, root)
|
|
}
|
|
|
|
r := &Service{}
|
|
|
|
newBlks, newRoots, err := r.dedupBlocksAndRoots(blks, roots)
|
|
require.NoError(t, err)
|
|
|
|
rootMap := make(map[[32]byte]bool)
|
|
for i, b := range newBlks {
|
|
if rootMap[newRoots[i]] {
|
|
t.Errorf("Duplicated root exists %#x with block %v", newRoots[i], b)
|
|
}
|
|
rootMap[newRoots[i]] = true
|
|
}
|
|
}
|