2020-05-18 17:58:20 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
|
2022-05-02 18:32:37 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/consensus-types/interfaces"
|
2022-04-29 14:32:11 +00:00
|
|
|
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
2022-05-02 15:43:40 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/consensus-types/wrapper"
|
2021-09-23 15:23:37 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
2021-07-21 21:34:07 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
2021-09-23 18:53:46 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
2020-05-18 17:58:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSortedObj_SortBlocksRoots(t *testing.T) {
|
|
|
|
source := rand.NewSource(33)
|
|
|
|
randGen := rand.New(source)
|
2022-05-02 18:32:37 +00:00
|
|
|
var blks []interfaces.SignedBeaconBlock
|
2020-10-12 08:11:05 +00:00
|
|
|
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++ {
|
2021-02-16 07:45:34 +00:00
|
|
|
slot := types.Slot(randFunc())
|
2022-03-25 23:00:44 +00:00
|
|
|
newBlk, err := wrapper.WrappedSignedBeaconBlock(ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Slot: slot}})
|
|
|
|
require.NoError(t, err)
|
2020-05-18 17:58:20 +00:00
|
|
|
blks = append(blks, newBlk)
|
2021-02-16 07:45:34 +00:00
|
|
|
root := bytesutil.ToBytes32(bytesutil.Bytes32(uint64(slot)))
|
2020-05-18 17:58:20 +00:00
|
|
|
roots = append(roots, root)
|
|
|
|
}
|
|
|
|
|
|
|
|
r := &Service{}
|
|
|
|
|
|
|
|
newBlks, newRoots := r.sortBlocksAndRoots(blks, roots)
|
|
|
|
|
2021-02-16 07:45:34 +00:00
|
|
|
previousSlot := types.Slot(0)
|
2020-05-18 17:58:20 +00:00
|
|
|
for i, b := range newBlks {
|
2021-05-26 16:19:54 +00:00
|
|
|
if b.Block().Slot() < previousSlot {
|
|
|
|
t.Errorf("Block list is not sorted as %d is smaller than previousSlot %d", b.Block().Slot(), previousSlot)
|
2020-05-18 17:58:20 +00:00
|
|
|
}
|
2021-05-26 16:19:54 +00:00
|
|
|
if bytesutil.FromBytes8(newRoots[i][:]) != uint64(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][:]))
|
2020-05-18 17:58:20 +00:00
|
|
|
}
|
2021-05-26 16:19:54 +00:00
|
|
|
previousSlot = b.Block().Slot()
|
2020-05-18 17:58:20 +00:00
|
|
|
}
|
|
|
|
}
|
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)
|
2022-05-02 18:32:37 +00:00
|
|
|
var blks []interfaces.SignedBeaconBlock
|
2020-10-12 08:11:05 +00:00
|
|
|
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++ {
|
2021-02-16 07:45:34 +00:00
|
|
|
slot := types.Slot(randFunc())
|
2020-06-12 13:50:07 +00:00
|
|
|
newBlk := ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Slot: slot}}
|
|
|
|
// append twice
|
2022-03-25 23:00:44 +00:00
|
|
|
wsb, err := wrapper.WrappedSignedBeaconBlock(newBlk)
|
|
|
|
require.NoError(t, err)
|
|
|
|
blks = append(blks, wsb, wsb.Copy())
|
2020-06-12 13:50:07 +00:00
|
|
|
|
|
|
|
// append twice
|
2021-02-16 07:45:34 +00:00
|
|
|
root := bytesutil.ToBytes32(bytesutil.Bytes32(uint64(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
|
|
|
|
}
|
|
|
|
}
|