mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package components_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/components"
|
|
e2eparams "github.com/prysmaticlabs/prysm/v4/testing/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
|
)
|
|
|
|
func TestWeb3RemoteSigner_StartsAndReturnsPublicKeys(t *testing.T) {
|
|
require.NoError(t, e2eparams.Init(t, 0))
|
|
|
|
wsc := components.NewWeb3RemoteSigner()
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
defer cancel()
|
|
|
|
go func() {
|
|
if err := wsc.Start(ctx); err != nil {
|
|
t.Error(err)
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
t.Fatal("Web3RemoteSigner did not start within timeout")
|
|
case <-wsc.Started():
|
|
t.Log("Web3RemoteSigner started")
|
|
break
|
|
}
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
keys, err := wsc.PublicKeys(ctx)
|
|
require.NoError(t, err)
|
|
|
|
if uint64(len(keys)) != params.BeaconConfig().MinGenesisActiveValidatorCount {
|
|
t.Fatalf("Expected %d keys, got %d", params.BeaconConfig().MinGenesisActiveValidatorCount, len(keys))
|
|
}
|
|
}
|