-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasset_test.go
55 lines (47 loc) · 1.25 KB
/
asset_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
package cryptowatch
import (
"context"
"io"
"net/http"
"net/http/httptest"
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestListAssets(t *testing.T) {
data, err := os.Open("testdata/assets.json")
if err != nil {
t.Error(err)
}
defer data.Close()
hs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = io.Copy(w, data)
}))
defer hs.Close()
c := NewClient()
assets, err := c.ListAssets(context.Background(), withURL(hs.URL))
assert.NoError(t, err)
assert.NotNil(t, assets)
assert.Len(t, assets, 1031)
assert.Equal(t, uint64(3971498809), c.Remaining())
assert.Equal(t, uint64(0), c.RemainingPaid())
}
func TestGetAssetBySymbol(t *testing.T) {
data, err := os.Open("testdata/asset.json")
if err != nil {
t.Error(err)
}
defer data.Close()
hs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = io.Copy(w, data)
}))
defer hs.Close()
c := NewClient()
asset, err := c.GetAssetBySymbol(context.Background(), "btc", withURL(hs.URL))
assert.NoError(t, err)
assert.NotNil(t, asset)
assert.Equal(t, uint64(3001498809), c.Remaining())
assert.Equal(t, uint64(3232), c.RemainingPaid())
}