mirror of
https://github.com/wealdtech/ethdo.git
synced 2026-01-08 05:34:01 -05:00
127 lines
3.5 KiB
Go
127 lines
3.5 KiB
Go
// Copyright © 2019, 2020 Weald Technology Trading
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package blockinfo
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/wealdtech/ethdo/testutil"
|
|
e2types "github.com/wealdtech/go-eth2-types/v2"
|
|
e2wallet "github.com/wealdtech/go-eth2-wallet"
|
|
keystorev4 "github.com/wealdtech/go-eth2-wallet-encryptor-keystorev4"
|
|
nd "github.com/wealdtech/go-eth2-wallet-nd/v2"
|
|
scratch "github.com/wealdtech/go-eth2-wallet-store-scratch"
|
|
e2wtypes "github.com/wealdtech/go-eth2-wallet-types/v2"
|
|
)
|
|
|
|
func TestInput(t *testing.T) {
|
|
if os.Getenv("ETHDO_TEST_CONNECTION") == "" {
|
|
t.Skip("ETHDO_TEST_CONNECTION not configured; cannot run tests")
|
|
}
|
|
|
|
require.NoError(t, e2types.InitBLS())
|
|
|
|
store := scratch.New()
|
|
require.NoError(t, e2wallet.UseStore(store))
|
|
testWallet, err := nd.CreateWallet(context.Background(), "Test wallet", store, keystorev4.New())
|
|
require.NoError(t, err)
|
|
require.NoError(t, testWallet.(e2wtypes.WalletLocker).Unlock(context.Background(), nil))
|
|
viper.Set("passphrase", "pass")
|
|
_, err = testWallet.(e2wtypes.WalletAccountImporter).ImportAccount(context.Background(),
|
|
"Interop 0",
|
|
testutil.HexToBytes("0x25295f0d1d592a90b333e26e85149708208e9f8e8bc18f6c77bd62f8ad7a6866"),
|
|
[]byte("pass"),
|
|
)
|
|
require.NoError(t, err)
|
|
|
|
tests := []struct {
|
|
name string
|
|
vars map[string]interface{}
|
|
res *dataIn
|
|
err string
|
|
}{
|
|
{
|
|
name: "TimeoutMissing",
|
|
vars: map[string]interface{}{},
|
|
err: "timeout is required",
|
|
},
|
|
{
|
|
name: "ConnectionMissing",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
},
|
|
err: "failed to connect to Ethereum 2 beacon node: failed to connect to beacon node: problem with parameters: no address specified",
|
|
},
|
|
{
|
|
name: "ConnectionBad",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"connection": "localhost:1",
|
|
"blockid": "justified",
|
|
},
|
|
res: &dataIn{
|
|
timeout: 5 * time.Second,
|
|
blockID: "justified",
|
|
},
|
|
err: "failed to connect to Ethereum 2 beacon node: failed to connect to beacon node: failed to connect to Ethereum 2 client with any known method",
|
|
},
|
|
{
|
|
name: "BlockIDNil",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"connection": os.Getenv("ETHDO_TEST_CONNECTION"),
|
|
},
|
|
res: &dataIn{
|
|
timeout: 5 * time.Second,
|
|
blockID: "head",
|
|
},
|
|
},
|
|
{
|
|
name: "BlockIDSpecific",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"connection": os.Getenv("ETHDO_TEST_CONNECTION"),
|
|
"blockid": "justified",
|
|
},
|
|
res: &dataIn{
|
|
timeout: 5 * time.Second,
|
|
blockID: "justified",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
viper.Reset()
|
|
|
|
for k, v := range test.vars {
|
|
viper.Set(k, v)
|
|
}
|
|
res, err := input(context.Background())
|
|
if test.err != "" {
|
|
require.EqualError(t, err, test.err)
|
|
} else {
|
|
require.NoError(t, err)
|
|
require.Equal(t, test.res.timeout, res.timeout)
|
|
require.Equal(t, test.res.blockID, res.blockID)
|
|
}
|
|
})
|
|
}
|
|
}
|