forked from timpalpant/go-iex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_test.go
More file actions
152 lines (126 loc) · 2.81 KB
/
client_test.go
File metadata and controls
152 lines (126 loc) · 2.81 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package iex
import (
"net/http"
"testing"
"time"
)
func setupTestClient() *Client {
return NewClient(&http.Client{
Timeout: 5 * time.Second,
})
}
func testTOPS(t *testing.T, symbols []string) {
c := setupTestClient()
result, err := c.GetTOPS(symbols)
if err != nil {
t.Fatal(err)
}
if len(result) != len(symbols) {
t.Fatalf("Received %v results, expected %v", len(result), len(symbols))
}
// TODO(palpant): Test parsing with a mock http client.
}
func TestTOPS_OneSymbol(t *testing.T) {
testTOPS(t, []string{"SPY"})
}
func TestTOPS_TwoSymbols(t *testing.T) {
testTOPS(t, []string{"SPY", "AAPL"})
}
func TestTOPS_AllSymbols(t *testing.T) {
c := setupTestClient()
result, err := c.GetTOPS(nil)
if err != nil {
t.Fatal(err)
}
if len(result) == 0 {
t.Fatalf("Received %v results", len(result))
}
}
func TestLast(t *testing.T) {
c := setupTestClient()
symbols := []string{"SPY", "AAPL"}
result, err := c.GetLast(symbols)
if err != nil {
t.Fatal(err)
}
if len(result) != len(symbols) {
t.Fatalf("Received %v results, expected %v", len(result), len(symbols))
}
}
func TestHIST_OneDate(t *testing.T) {
c := setupTestClient()
testDate := time.Date(2017, time.June, 6, 0, 0, 0, 0, time.UTC)
result, err := c.GetHIST(testDate)
if err != nil {
t.Fatal(err)
}
if len(result) == 0 {
t.Fatalf("Received zero results")
}
}
func TestHIST_AllDates(t *testing.T) {
c := setupTestClient()
result, err := c.GetAllAvailableHIST()
if err != nil {
t.Fatal(err)
}
if len(result) == 0 {
t.Fatalf("Received zero results")
}
}
func TestDEEP(t *testing.T) {
c := setupTestClient()
result, err := c.GetDEEP("SPY")
if err != nil {
t.Fatal(err)
}
if result.Symbol != "SPY" {
t.Fatalf("Expected symbol = %v, got %v", "SPY", result.Symbol)
}
}
func TestBook(t *testing.T) {
c := setupTestClient()
symbols := []string{"SPY"}
result, err := c.GetBook(symbols)
if err != nil {
t.Fatal(err)
}
if len(result) != len(symbols) {
t.Log(result)
t.Fatalf("Received %v results, expected %v", len(result), len(symbols))
}
}
func TestSymbols(t *testing.T) {
c := setupTestClient()
symbols, err := c.GetSymbols()
if err != nil {
t.Fatal(err)
}
if len(symbols) == 0 {
t.Fatal("Received zero symbols")
}
symbol := symbols[0]
if symbol.Symbol == "" || symbol.Name == "" || symbol.Date == "" {
t.Fatal("Failed to decode symbol correctly")
}
}
func TestMarkets(t *testing.T) {
c := setupTestClient()
markets, err := c.GetMarkets()
if err != nil {
t.Fatal(err)
}
if len(markets) == 0 {
t.Fatal("Received zero markets")
}
}
func TestGetHistoricalDaily(t *testing.T) {
c := setupTestClient()
stats, err := c.GetHistoricalDaily(&HistoricalDailyRequest{Last: 5})
if err != nil {
t.Fatal(err)
}
if len(stats) != 5 {
t.Fatalf("Received %d historical daily stats, expected %d", len(stats), 5)
}
}