mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
1de230110d
* add in cors for web ui in val client and gateway flag * Merge branch 'master' into add-default-beacon-gateway * gateway cors value * Merge branch 'add-default-beacon-gateway' of github.com:prysmaticlabs/prysm into add-default-beacon-gateway * fix tests * Merge refs/heads/master into add-default-beacon-gateway
42 lines
1.0 KiB
Go
42 lines
1.0 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
ptypes "github.com/gogo/protobuf/types"
|
|
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(ctx context.Context) (bool, error) {
|
|
return m.syncing, 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: true},
|
|
nodeGatewayEndpoint: endpoint,
|
|
}
|
|
got, err := s.GetBeaconNodeConnection(ctx, &ptypes.Empty{})
|
|
require.NoError(t, err)
|
|
|
|
want := &pb.NodeConnectionResponse{
|
|
BeaconNodeEndpoint: endpoint,
|
|
Connected: false,
|
|
Syncing: true,
|
|
}
|
|
require.DeepEqual(t, want, got)
|
|
}
|