mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
33105f1bbc
* removed redundant args * Merge refs/heads/master into omit-redundant-make-args
163 lines
4.8 KiB
Go
163 lines
4.8 KiB
Go
package helpers
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/sliceutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestShuffleList_InvalidValidatorCount(t *testing.T) {
|
|
maxShuffleListSize = 20
|
|
list := make([]uint64, 21)
|
|
if _, err := ShuffleList(list, [32]byte{123, 125}); err == nil {
|
|
t.Error("Shuffle should have failed when validator count exceeds ModuloBias")
|
|
maxShuffleListSize = 1 << 40
|
|
}
|
|
maxShuffleListSize = 1 << 40
|
|
}
|
|
|
|
func TestShuffleList_OK(t *testing.T) {
|
|
var list1 []uint64
|
|
seed1 := [32]byte{1, 128, 12}
|
|
seed2 := [32]byte{2, 128, 12}
|
|
for i := 0; i < 10; i++ {
|
|
list1 = append(list1, uint64(i))
|
|
}
|
|
|
|
list2 := make([]uint64, len(list1))
|
|
copy(list2, list1)
|
|
|
|
list1, err := ShuffleList(list1, seed1)
|
|
assert.NoError(t, err, "Shuffle failed with")
|
|
|
|
list2, err = ShuffleList(list2, seed2)
|
|
assert.NoError(t, err, "Shuffle failed with")
|
|
|
|
if reflect.DeepEqual(list1, list2) {
|
|
t.Errorf("2 shuffled lists shouldn't be equal")
|
|
}
|
|
assert.DeepEqual(t, []uint64{0, 7, 8, 6, 3, 9, 4, 5, 2, 1}, list1, "List 1 was incorrectly shuffled got")
|
|
assert.DeepEqual(t, []uint64{0, 5, 2, 1, 6, 8, 7, 3, 4, 9}, list2, "List 2 was incorrectly shuffled got")
|
|
}
|
|
|
|
func TestSplitIndices_OK(t *testing.T) {
|
|
var l []uint64
|
|
numValidators := uint64(64000)
|
|
for i := uint64(0); i < numValidators; i++ {
|
|
l = append(l, i)
|
|
}
|
|
split := SplitIndices(l, params.BeaconConfig().SlotsPerEpoch)
|
|
assert.Equal(t, params.BeaconConfig().SlotsPerEpoch, uint64(len(split)), "Split list failed due to incorrect length")
|
|
|
|
for _, s := range split {
|
|
assert.Equal(t, numValidators/params.BeaconConfig().SlotsPerEpoch, uint64(len(s)), "Split list failed due to incorrect length")
|
|
}
|
|
}
|
|
|
|
func TestShuffleList_Vs_ShuffleIndex(t *testing.T) {
|
|
list := []uint64{}
|
|
listSize := uint64(1000)
|
|
seed := [32]byte{123, 42}
|
|
for i := uint64(0); i < listSize; i++ {
|
|
list = append(list, i)
|
|
}
|
|
shuffledListByIndex := make([]uint64, listSize)
|
|
for i := uint64(0); i < listSize; i++ {
|
|
si, err := ShuffledIndex(i, listSize, seed)
|
|
assert.NoError(t, err)
|
|
shuffledListByIndex[si] = i
|
|
}
|
|
shuffledList, err := ShuffleList(list, seed)
|
|
require.NoError(t, err, "Shuffled list error")
|
|
assert.DeepEqual(t, shuffledListByIndex, shuffledList, "Shuffled lists ar not equal")
|
|
}
|
|
|
|
func BenchmarkShuffledIndex(b *testing.B) {
|
|
listSizes := []uint64{4000000, 40000, 400}
|
|
seed := [32]byte{123, 42}
|
|
for _, listSize := range listSizes {
|
|
b.Run(fmt.Sprintf("ShuffledIndex_%d", listSize), func(ib *testing.B) {
|
|
for i := uint64(0); i < uint64(ib.N); i++ {
|
|
_, err := ShuffledIndex(i%listSize, listSize, seed)
|
|
assert.NoError(b, err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func BenchmarkIndexComparison(b *testing.B) {
|
|
listSizes := []uint64{400000, 40000, 400}
|
|
seed := [32]byte{123, 42}
|
|
for _, listSize := range listSizes {
|
|
b.Run(fmt.Sprintf("Indexwise_ShuffleList_%d", listSize), func(ib *testing.B) {
|
|
for i := 0; i < ib.N; i++ {
|
|
// Simulate a list-shuffle by running shuffle-index listSize times.
|
|
for j := uint64(0); j < listSize; j++ {
|
|
_, err := ShuffledIndex(j, listSize, seed)
|
|
assert.NoError(b, err)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func BenchmarkShuffleList(b *testing.B) {
|
|
listSizes := []uint64{400000, 40000, 400}
|
|
seed := [32]byte{123, 42}
|
|
for _, listSize := range listSizes {
|
|
testIndices := make([]uint64, listSize)
|
|
for i := uint64(0); i < listSize; i++ {
|
|
testIndices[i] = i
|
|
}
|
|
b.Run(fmt.Sprintf("ShuffleList_%d", listSize), func(ib *testing.B) {
|
|
for i := 0; i < ib.N; i++ {
|
|
_, err := ShuffleList(testIndices, seed)
|
|
assert.NoError(b, err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestShuffledIndex(t *testing.T) {
|
|
list := []uint64{}
|
|
listSize := uint64(399)
|
|
for i := uint64(0); i < listSize; i++ {
|
|
list = append(list, i)
|
|
}
|
|
shuffledList := make([]uint64, listSize)
|
|
unShuffledList := make([]uint64, listSize)
|
|
seed := [32]byte{123, 42}
|
|
for i := uint64(0); i < listSize; i++ {
|
|
si, err := ShuffledIndex(i, listSize, seed)
|
|
assert.NoError(t, err)
|
|
shuffledList[si] = i
|
|
}
|
|
for i := uint64(0); i < listSize; i++ {
|
|
ui, err := UnShuffledIndex(i, listSize, seed)
|
|
assert.NoError(t, err)
|
|
unShuffledList[ui] = shuffledList[i]
|
|
}
|
|
assert.DeepEqual(t, list, unShuffledList)
|
|
}
|
|
|
|
func TestSplitIndicesAndOffset_OK(t *testing.T) {
|
|
var l []uint64
|
|
validators := uint64(64000)
|
|
for i := uint64(0); i < validators; i++ {
|
|
l = append(l, i)
|
|
}
|
|
chunks := uint64(6)
|
|
split := SplitIndices(l, chunks)
|
|
for i := uint64(0); i < chunks; i++ {
|
|
if !reflect.DeepEqual(split[i], l[sliceutil.SplitOffset(uint64(len(l)), chunks, i):sliceutil.SplitOffset(uint64(len(l)), chunks, i+1)]) {
|
|
t.Errorf("Want: %v got: %v", l[sliceutil.SplitOffset(uint64(len(l)), chunks, i):sliceutil.SplitOffset(uint64(len(l)), chunks, i+1)], split[i])
|
|
break
|
|
}
|
|
}
|
|
}
|