prysm-pulse/beacon-chain/core/helpers/randao_test.go
Nishant Das c48f9c96e0
Allow Simulated Backend to Advance Chain (#1445)
* initialize beacon state separately

* extracting out testcase into another func

* creating function for simulated objects

* creating simulated object struct

* final clean up

* documentation

* lint

* adding chain advancer

* review comments

* replacing lib

* adding initialization for chain and new vars in struct

* added func

* fixing tests and all other bugs

* fixing tests

* docs

* adding a new nil block function

* adding test

* remove check for nil blocks

* godoc

* fixing merge conflicts, tests

* fix test
2019-02-06 10:18:55 +08:00

150 lines
4.2 KiB
Go

package helpers
import (
"bytes"
"encoding/binary"
"fmt"
"strings"
"testing"
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
"github.com/prysmaticlabs/prysm/shared/params"
)
func TestRandaoMix_Ok(t *testing.T) {
randaoMixes := make([][]byte, params.BeaconConfig().LatestRandaoMixesLength)
for i := 0; i < len(randaoMixes); i++ {
intInBytes := make([]byte, 32)
binary.BigEndian.PutUint64(intInBytes, uint64(i))
randaoMixes[i] = intInBytes
}
state := &pb.BeaconState{LatestRandaoMixesHash32S: randaoMixes}
tests := []struct {
epoch uint64
randaoMix []byte
}{
{
epoch: 10,
randaoMix: randaoMixes[10],
},
{
epoch: 2344,
randaoMix: randaoMixes[2344],
},
{
epoch: 99999,
randaoMix: randaoMixes[99999%params.BeaconConfig().LatestRandaoMixesLength],
},
}
for _, test := range tests {
state.Slot = (test.epoch + 1) * params.BeaconConfig().EpochLength
mix, err := RandaoMix(state, test.epoch)
if err != nil {
t.Fatalf("Could not get randao mix: %v", err)
}
if !bytes.Equal(test.randaoMix, mix) {
t.Errorf("Incorrect randao mix. Wanted: %#x, got: %#x",
test.randaoMix, mix)
}
}
}
func TestRandaoMix_OutOfBound(t *testing.T) {
wanted := fmt.Sprintf(
"input randaoMix epoch %d out of bounds: %d <= epoch < %d",
100, 0, 0,
)
if _, err := RandaoMix(&pb.BeaconState{}, 100); !strings.Contains(err.Error(), wanted) {
t.Errorf("Expected: %s, received: %s", wanted, err.Error())
}
}
func TestActiveIndexRoot_Ok(t *testing.T) {
activeIndexRoots := make([][]byte, params.BeaconConfig().LatestIndexRootsLength)
for i := 0; i < len(activeIndexRoots); i++ {
intInBytes := make([]byte, 32)
binary.BigEndian.PutUint64(intInBytes, uint64(i))
activeIndexRoots[i] = intInBytes
}
state := &pb.BeaconState{LatestIndexRootHash32S: activeIndexRoots}
tests := []struct {
epoch uint64
indexRoot []byte
}{
{
epoch: 34,
indexRoot: activeIndexRoots[34],
},
{
epoch: 3444,
indexRoot: activeIndexRoots[3444],
},
{
epoch: 999999,
indexRoot: activeIndexRoots[999999%params.BeaconConfig().LatestIndexRootsLength],
},
}
for _, test := range tests {
state.Slot = (test.epoch + 1) * params.BeaconConfig().EpochLength
indexRoot, err := ActiveIndexRoot(state, test.epoch)
if err != nil {
t.Fatalf("Could not get index root: %v", err)
}
if !bytes.Equal(test.indexRoot, indexRoot) {
t.Errorf("Incorrect index root. Wanted: %#x, got: %#x",
test.indexRoot, indexRoot)
}
}
}
func TestActiveIndexRoot_OutOfBound(t *testing.T) {
wanted := fmt.Sprintf(
"input indexRoot epoch %d out of bounds: %d <= epoch < %d",
100, 0, 0,
)
if _, err := ActiveIndexRoot(&pb.BeaconState{}, 100); !strings.Contains(err.Error(), wanted) {
t.Errorf("Expected: %s, received: %s", wanted, err.Error())
}
}
func TestGenerateSeed_OutOfBound(t *testing.T) {
wanted := fmt.Sprintf(
"input randaoMix epoch %d out of bounds: %d <= epoch < %d",
100-params.BeaconConfig().SeedLookahead, 0, 0,
)
if _, err := GenerateSeed(&pb.BeaconState{}, 100); !strings.Contains(err.Error(), wanted) {
t.Errorf("Expected: %s, received: %s", wanted, err.Error())
}
}
func TestGenerateSeed_Ok(t *testing.T) {
activeIndexRoots := make([][]byte, params.BeaconConfig().LatestIndexRootsLength)
for i := 0; i < len(activeIndexRoots); i++ {
intInBytes := make([]byte, 32)
binary.BigEndian.PutUint64(intInBytes, uint64(i))
activeIndexRoots[i] = intInBytes
}
randaoMixes := make([][]byte, params.BeaconConfig().LatestRandaoMixesLength)
for i := 0; i < len(randaoMixes); i++ {
intInBytes := make([]byte, 32)
binary.BigEndian.PutUint64(intInBytes, uint64(i))
randaoMixes[i] = intInBytes
}
slot := 10 * params.BeaconConfig().SeedLookahead * params.BeaconConfig().EpochLength
state := &pb.BeaconState{
LatestIndexRootHash32S: activeIndexRoots,
LatestRandaoMixesHash32S: randaoMixes,
Slot: slot}
got, err := GenerateSeed(state, 10)
if err != nil {
t.Fatalf("Could not generate seed: %v", err)
}
wanted := [32]byte{248, 115, 47, 108, 244, 57, 89, 71, 186, 71, 181, 177, 17, 131, 75, 206, 67, 185, 184, 241,
97, 97, 248, 165, 161, 124, 236, 14, 150, 98, 179, 249}
if got != wanted {
t.Errorf("Incorrect generated seeds. Got: %v, wanted: %v",
got, wanted)
}
}