mirror of
https://github.com/wealdtech/ethdo.git
synced 2026-01-09 14:07:56 -05:00
132 lines
3.2 KiB
Go
132 lines
3.2 KiB
Go
// Copyright © 2021, 2022 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 walletsharedimport
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
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) {
|
|
require.NoError(t, e2types.InitBLS())
|
|
|
|
dir, err := os.MkdirTemp("", "")
|
|
require.NoError(t, err)
|
|
datFile := filepath.Join(dir, "backup.dat")
|
|
require.NoError(t, os.WriteFile(datFile, []byte("dummy"), 0o600))
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := scratch.New()
|
|
require.NoError(t, e2wallet.UseStore(store))
|
|
wallet, err := nd.CreateWallet(context.Background(), "Test wallet", store, keystorev4.New())
|
|
require.NoError(t, err)
|
|
data, err := wallet.(e2wtypes.WalletExporter).Export(context.Background(), []byte("ce%NohGhah4ye5ra"))
|
|
require.NoError(t, err)
|
|
require.NoError(t, e2wallet.UseStore(scratch.New()))
|
|
|
|
tests := []struct {
|
|
name string
|
|
vars map[string]interface{}
|
|
res *dataIn
|
|
err string
|
|
}{
|
|
{
|
|
name: "TimeoutMissing",
|
|
vars: map[string]interface{}{
|
|
"data": fmt.Sprintf("%#x", data),
|
|
},
|
|
err: "timeout is required",
|
|
},
|
|
{
|
|
name: "FileMissing",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
},
|
|
err: "file is required",
|
|
},
|
|
{
|
|
name: "Remote",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"file": "test.dat",
|
|
"remote": "remoteaddress",
|
|
},
|
|
err: "wallet import not available for remote wallets",
|
|
},
|
|
{
|
|
name: "FilMissing",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
},
|
|
err: "file is required",
|
|
},
|
|
{
|
|
name: "FileBad",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"file": "bad.dat",
|
|
},
|
|
err: "failed to read wallet import file: open bad.dat: no such file or directory",
|
|
},
|
|
{
|
|
name: "SharesMissing",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"file": datFile,
|
|
},
|
|
err: "failed to obtain shares",
|
|
},
|
|
{
|
|
name: "Good",
|
|
vars: map[string]interface{}{
|
|
"timeout": "5s",
|
|
"file": datFile,
|
|
"shares": "01 02 03",
|
|
},
|
|
res: &dataIn{
|
|
timeout: 5 * time.Second,
|
|
},
|
|
},
|
|
}
|
|
|
|
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.NotNil(t, res)
|
|
}
|
|
})
|
|
}
|
|
}
|