-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcryptocurrency_test.go
115 lines (103 loc) · 2.67 KB
/
cryptocurrency_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
package goiex
import (
"log"
"net/http"
"testing"
"github.com/dnaeon/go-vcr/recorder"
)
func TestNewCryptocurrency(t *testing.T) {
cry := NewCryptocurrency("test_token", "", sandboxURL, nil)
expected = "https://sandbox.iexapis.com/"
actual = cry.URL().String()
if expected != actual {
t.Errorf("\nExpected: %s\nActual: %s\n", expected, actual)
}
expected = "crypto/"
actual = cry.APIURL().String()
if expected != actual {
t.Errorf("\nExpected: %s\nActual: %s\n", expected, actual)
}
expected = "test_token"
actual = cry.Token()
if expected != actual {
t.Errorf("\nExpected: %s\nActual: %s\n", expected, actual)
}
}
func TestCryptoBook(t *testing.T) {
rec, err := recorder.New("cassettes/cryptocurrency/book")
if err != nil {
log.Fatal(err)
} else {
rec.SetMatcher(matchWithoutToken)
httpClient = &http.Client{Transport: rec}
}
rec.AddFilter(removeToken)
defer rec.Stop()
cli := NewCryptocurrency(testToken, DefaultVersion, sandboxURL, httpClient)
book, err := cli.CryptoBook("btcusd")
if err != nil {
t.Error(err)
}
expected = false
actual = len(book.Bids) == 0
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
expected = false
actual = len(book.Asks) == 0
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
}
func TestCryptoPrice(t *testing.T) {
rec, err := recorder.New("cassettes/cryptocurrency/price")
if err != nil {
log.Fatal(err)
} else {
rec.SetMatcher(matchWithoutToken)
httpClient = &http.Client{Transport: rec}
}
rec.AddFilter(removeToken)
defer rec.Stop()
cli := NewCryptocurrency(testToken, DefaultVersion, sandboxURL, httpClient)
price, err := cli.CryptoPrice("btcusd")
if err != nil {
t.Error(err)
}
expected = "BTCUSD"
actual = price.Symbol
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
expected = 7734.85
actual = price.Price
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
}
func TestCryptoQuote(t *testing.T) {
rec, err := recorder.New("cassettes/cryptocurrency/quote")
if err != nil {
log.Fatal(err)
} else {
rec.SetMatcher(matchWithoutToken)
httpClient = &http.Client{Transport: rec}
}
rec.AddFilter(removeToken)
defer rec.Stop()
cli := NewCryptocurrency(testToken, DefaultVersion, sandboxURL, httpClient)
quote, err := cli.CryptoQuote("btcusd")
if err != nil {
t.Error(err)
}
expected = "BTCUSD"
actual = quote.Symbol
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
expected = 7563.71
actual = quote.LatestPrice
if expected != actual {
t.Errorf("\nExpected: %v\nActual: %v\n", expected, actual)
}
}