mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 04:00:05 +00:00
2060f876b1
* Code cleanup in `blockchain` module * revert comment fix * remove test * forkchoice test fix Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
22 lines
800 B
Go
22 lines
800 B
Go
package debug
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/forkchoice/protoarray"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestServer_GetForkChoice_ProtoArray(t *testing.T) {
|
|
store := protoarray.New(0, 0, [32]byte{'a'})
|
|
bs := &Server{ForkFetcher: &mock.ChainService{ForkChoiceStore: store}}
|
|
res, err := bs.GetForkChoice(context.Background(), &empty.Empty{})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, store.JustifiedEpoch(), res.JustifiedEpoch, "Did not get wanted justified epoch")
|
|
assert.Equal(t, store.FinalizedEpoch(), res.FinalizedEpoch, "Did not get wanted finalized epoch")
|
|
}
|