-
Notifications
You must be signed in to change notification settings - Fork 182
/
test_helpers.go
56 lines (47 loc) · 1.06 KB
/
test_helpers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package server
import (
"fmt"
"io/ioutil"
"net"
"os"
"testing"
"github.com/okex/exchain/libs/cosmos-sdk/client/flags"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"
)
// Get a free address for a test tendermint server
// protocol is either tcp, http, etc
func FreeTCPAddr() (addr, port string, err error) {
l, err := net.Listen("tcp", "localhost:0")
if err != nil {
return "", "", err
}
closer := func() {
err := l.Close()
if err != nil {
// TODO: Handle with #870
panic(err)
}
}
defer closer()
portI := l.Addr().(*net.TCPAddr).Port
port = fmt.Sprintf("%d", portI)
addr = fmt.Sprintf("tcp://0.0.0.0:%s", port)
return
}
// SetupViper creates a homedir to run inside,
// and returns a cleanup function to defer
func SetupViper(t *testing.T) func() {
rootDir, err := ioutil.TempDir("", "mock-sdk-cmd")
require.Nil(t, err)
viper.Set(flags.FlagHome, rootDir)
viper.Set(flags.FlagName, "moniker")
return func() {
err := os.RemoveAll(rootDir)
if err != nil {
// TODO: Handle with #870
panic(err)
}
}
}
// DONTCOVER