-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtypes_test.go
114 lines (110 loc) · 2.11 KB
/
types_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
package kraken
import (
"reflect"
"testing"
)
func TestTickerValues_Ticker(t *testing.T) {
tests := []struct {
name string
tr TickerValues
wantTicker Ticker
}{
{
name: "invalid ticker",
tr: TickerValues{},
},
{
name: "tick with invalid values",
tr: TickerValues{"0", 1, 2, 3, 4, 5, 6, "7"},
},
{
name: "tick with valid values",
tr: TickerValues{
1688671200,
"30306.1",
"30306.2",
"30305.7",
"30305.7",
"30306.1",
"3.39243896",
23,
},
wantTicker: Ticker{
Time: 1688671200,
Open: "30306.1",
High: "30306.2",
Low: "30305.7",
Close: "30305.7",
Vwap: "30306.1",
Volume: "3.39243896",
Count: 23,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.tr.Ticker(); !reflect.DeepEqual(got, tt.wantTicker) {
t.Errorf("TickerValues.Ticker() = %v, want %v", got, tt.wantTicker)
}
})
}
}
func TestOrderBookEntries_OrderBookEntry(t *testing.T) {
tests := []struct {
name string
o OrderBookEntries
want OrderBookEntry
}{
{
name: "invalid order book entry",
},
{
name: "order book entry with invalid values",
o: OrderBookEntries{
1, 2, "fake",
},
},
{
name: "order book entry with valid values",
o: OrderBookEntries{
"30306.1", "30306.2", 3242,
},
want: OrderBookEntry{
Price: "30306.1",
Volume: "30306.2",
Timestamp: 3242,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.o.OrderBookEntry(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("OrderBookEntries.OrderBookEntry() = %v, want %v", got, tt.want)
}
})
}
}
func TestBalance_Float64(t *testing.T) {
tests := []struct {
name string
b Balance
want float64
}{
{
name: "invalid balance",
b: "fake",
},
{
name: "valid balance",
b: "1.2345678901",
want: 1.2345678901,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.b.Float64(); got != tt.want {
t.Errorf("Balance.Float64() = %v, want %v", got, tt.want)
}
})
}
}