2021-03-29 21:04:35 +00:00
|
|
|
package debugv1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2021-04-14 17:01:24 +00:00
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
|
|
blockchainmock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
2021-03-29 21:04:35 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/rpc/testutil"
|
2021-06-02 23:49:52 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1"
|
2021-04-14 17:01:24 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
2021-03-29 21:04:35 +00:00
|
|
|
sharedtestutil "github.com/prysmaticlabs/prysm/shared/testutil"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
2021-05-17 18:32:04 +00:00
|
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
2021-03-29 21:04:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetBeaconState(t *testing.T) {
|
|
|
|
fakeState, err := sharedtestutil.NewBeaconState()
|
|
|
|
require.NoError(t, err)
|
|
|
|
server := &Server{
|
|
|
|
StateFetcher: &testutil.MockFetcher{
|
|
|
|
BeaconState: fakeState,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
resp, err := server.GetBeaconState(context.Background(), ðpb.StateRequest{
|
|
|
|
StateId: make([]byte, 0),
|
|
|
|
})
|
|
|
|
require.NoError(t, err)
|
|
|
|
assert.NotNil(t, resp)
|
|
|
|
}
|
2021-04-14 17:01:24 +00:00
|
|
|
|
|
|
|
func TestListForkChoiceHeads(t *testing.T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
expectedSlotsAndRoots := []struct {
|
|
|
|
Slot types.Slot
|
|
|
|
Root [32]byte
|
|
|
|
}{{
|
|
|
|
Slot: 0,
|
|
|
|
Root: bytesutil.ToBytes32(bytesutil.PadTo([]byte("foo"), 32)),
|
|
|
|
}, {
|
|
|
|
Slot: 1,
|
|
|
|
Root: bytesutil.ToBytes32(bytesutil.PadTo([]byte("bar"), 32)),
|
|
|
|
}}
|
|
|
|
|
|
|
|
server := &Server{
|
|
|
|
HeadFetcher: &blockchainmock.ChainService{},
|
|
|
|
}
|
2021-05-17 18:32:04 +00:00
|
|
|
resp, err := server.ListForkChoiceHeads(ctx, &emptypb.Empty{})
|
2021-04-14 17:01:24 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, 2, len(resp.Data))
|
|
|
|
for _, sr := range expectedSlotsAndRoots {
|
|
|
|
found := false
|
|
|
|
for _, h := range resp.Data {
|
|
|
|
if h.Slot == sr.Slot {
|
|
|
|
found = true
|
|
|
|
assert.DeepEqual(t, sr.Root[:], h.Root)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert.Equal(t, true, found, "Expected head not found")
|
|
|
|
}
|
|
|
|
}
|