-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaccount_rest_api_test.go
125 lines (103 loc) · 2.87 KB
/
account_rest_api_test.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package okex
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetAccountCurrencies(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountCurrencies()
fmt.Printf("%+v, %+v", ac, err)
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountWallet(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountWallet()
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountWithdrawalFeeByCurrency(t *testing.T) {
c := NewTestClient()
currency := "btc"
ac, err := c.GetAccountWithdrawalFeeByCurrency(¤cy)
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
ac, err = c.GetAccountWithdrawalFeeByCurrency(nil)
assert.True(t, err == nil)
jstr, _ = Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountWithdrawalHistory(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountWithdrawalHistory()
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestClient_GetAccountWithdrawalHistoryByCurrency(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountWithdrawalHistoryByCurrency("btc")
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountDepositAddress(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountDepositAddress("btc")
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountDepositHistory(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountDepositHistory()
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountDepositHistoryByCurrency(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountDepositHistoryByCurrency("btc")
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountLeger(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountLeger(nil)
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
optionals := NewParams()
optionals["type"] = "37"
ac, err = c.GetAccountLeger(&optionals)
assert.True(t, err == nil)
jstr, _ = Struct2JsonString(ac)
println(jstr)
}
func TestGetAccountWalletByCurrency(t *testing.T) {
c := NewTestClient()
ac, err := c.GetAccountWalletByCurrency("btc")
assert.True(t, err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestPostAccountWithdrawal(t *testing.T) {
c := NewTestClient()
_, ac, err := c.PostAccountWithdrawal("btc", "17DKe3kkkkiiiiTvAKKi2vMPbm1Bz3CMKw", "123456",
4, 1, 0.0005)
assert.True(t, ac != nil && err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}
func TestPostAccountTransfer(t *testing.T) {
c := NewTestClient()
_, ac, err := c.PostAccountTransfer("eos", 6, 5, 0.0001, nil)
assert.True(t, ac != nil && err == nil)
jstr, _ := Struct2JsonString(ac)
println(jstr)
}