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
135 lines (112 loc) · 2.4 KB
/
client_test.go
File metadata and controls
135 lines (112 loc) · 2.4 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
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")
}
}
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")
}
}