mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
7cc32c4dda
* remove unused code * remove defer use in loop * Remove unused methods and constants * gofmt and gaz * nilness check * remove unused args * Add TODO for refactoring subscribeWithBase to remove unused arg. It seems too involved to include in this sweeping PR. https://github.com/prysmaticlabs/prysm/issues/7437 * replace empty slice declaration * Remove unnecessary type conversions * remove redundant type declaration * rename receivers to be consistent * Remove bootnode query tool. It is now obsolete by discv5 * Remove relay node. It is no longer used or supported * Revert "Remove relay node. It is no longer used or supported" This reverts commit 4bd7717334dad85ef4766ed9bc4da711fb5fa810. * Delete unused test directory * Delete unsupported gcp startup script * Delete old k8s script * build fixes * fix build * go mod tidy * revert slasher/db/kv/block_header.go * fix build * remove redundant nil check * combine func args Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
ptypes "github.com/gogo/protobuf/types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
pb "github.com/prysmaticlabs/prysm/proto/validator/accounts/v2"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/prysmaticlabs/prysm/validator/client"
|
|
)
|
|
|
|
type mockSyncChecker struct {
|
|
syncing bool
|
|
}
|
|
|
|
func (m *mockSyncChecker) Syncing(_ context.Context) (bool, error) {
|
|
return m.syncing, nil
|
|
}
|
|
|
|
type mockGenesisFetcher struct{}
|
|
|
|
func (m *mockGenesisFetcher) GenesisInfo(_ context.Context) (*ethpb.Genesis, error) {
|
|
genesis, err := ptypes.TimestampProto(time.Unix(0, 0))
|
|
if err != nil {
|
|
log.Info(err)
|
|
return nil, err
|
|
}
|
|
return ðpb.Genesis{
|
|
GenesisTime: genesis,
|
|
}, nil
|
|
}
|
|
|
|
func TestServer_GetBeaconNodeConnection(t *testing.T) {
|
|
ctx := context.Background()
|
|
endpoint := "localhost:90210"
|
|
vs, err := client.NewValidatorService(ctx, &client.Config{})
|
|
require.NoError(t, err)
|
|
s := &Server{
|
|
walletInitialized: true,
|
|
validatorService: vs,
|
|
syncChecker: &mockSyncChecker{syncing: false},
|
|
genesisFetcher: &mockGenesisFetcher{},
|
|
nodeGatewayEndpoint: endpoint,
|
|
}
|
|
got, err := s.GetBeaconNodeConnection(ctx, &ptypes.Empty{})
|
|
require.NoError(t, err)
|
|
want := &pb.NodeConnectionResponse{
|
|
BeaconNodeEndpoint: endpoint,
|
|
Connected: false,
|
|
Syncing: false,
|
|
GenesisTime: uint64(time.Unix(0, 0).Unix()),
|
|
}
|
|
require.DeepEqual(t, want, got)
|
|
}
|