2020-05-18 17:58:20 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
2020-08-16 23:48:39 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
2020-05-18 17:58:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSortedObj_SortBlocksRoots(t *testing.T) {
|
|
|
|
source := rand.NewSource(33)
|
|
|
|
randGen := rand.New(source)
|
2020-10-12 08:11:05 +00:00
|
|
|
var blks []*ethpb.SignedBeaconBlock
|
|
|
|
var roots [][32]byte
|
2020-05-18 17:58:20 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2020-06-06 01:54:44 +00:00
|
|
|
|
2020-06-12 13:50:07 +00:00
|
|
|
func TestSortedObj_NoDuplicates(t *testing.T) {
|
|
|
|
source := rand.NewSource(33)
|
|
|
|
randGen := rand.New(source)
|
2020-10-12 08:11:05 +00:00
|
|
|
var blks []*ethpb.SignedBeaconBlock
|
|
|
|
var roots [][32]byte
|
2020-06-12 13:50:07 +00:00
|
|
|
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
|
2020-10-04 15:03:10 +00:00
|
|
|
blks = append(blks, newBlk, newBlk)
|
2020-06-12 13:50:07 +00:00
|
|
|
|
|
|
|
// append twice
|
|
|
|
root := bytesutil.ToBytes32(bytesutil.Bytes32(slot))
|
2020-10-04 15:03:10 +00:00
|
|
|
roots = append(roots, root, root)
|
2020-06-12 13:50:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
r := &Service{}
|
|
|
|
|
2020-08-16 23:48:39 +00:00
|
|
|
newBlks, newRoots, err := r.dedupBlocksAndRoots(blks, roots)
|
|
|
|
require.NoError(t, err)
|
2020-06-12 13:50:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|