-
Notifications
You must be signed in to change notification settings - Fork 17
/
futures_test.go
92 lines (73 loc) · 1.93 KB
/
futures_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
package goftx
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/grishinsana/goftx/models"
)
func TestFutures_GetFutures(t *testing.T) {
ftx := New()
futures, err := ftx.Futures.GetFutures()
assert.NoError(t, err)
assert.NotNil(t, futures)
}
func TestFutures_GetFuture(t *testing.T) {
ftx := New()
req := require.New(t)
t.Run("success", func(t *testing.T) {
expected := &models.Future{
Name: "BTC-PERP",
Enabled: true,
}
futures, err := ftx.Futures.GetFuture(expected.Name)
req.NoError(err)
req.NotNil(futures)
req.Equal(expected.Name, futures.Name)
req.Equal(expected.Enabled, futures.Enabled)
})
t.Run("not_found", func(t *testing.T) {
expected := &models.Future{
Name: "incorrect",
Enabled: true,
}
futures, err := ftx.Markets.GetMarketByName(expected.Name)
req.Error(err)
req.Nil(futures)
})
}
func TestFutures_GetFutureStats(t *testing.T) {
ftx := New()
futures, err := ftx.Futures.GetFutureStats("BTC-PERP")
assert.NoError(t, err)
assert.NotNil(t, futures)
}
func TestFutures_GetFundingRates(t *testing.T) {
ftx := New()
req := require.New(t)
t.Run("success", func(t *testing.T) {
rate, err := ftx.Futures.GetFundingRates(nil)
req.NoError(err)
req.NotNil(rate)
})
t.Run("success_with_market", func(t *testing.T) {
future := "BTC-PERP"
rates, err := ftx.Futures.GetFundingRates(&models.GetFundingRatesParams{
Future: &future,
})
req.NoError(err)
req.NotNil(rates)
for _, rate := range rates {
req.Equal(rate.Future, future)
}
})
t.Run("success_with_params", func(t *testing.T) {
rates, err := ftx.Futures.GetFundingRates(&models.GetFundingRatesParams{
StartTime: PtrInt(int(time.Now().Add(-5 * time.Hour).Unix())),
EndTime: PtrInt(int(time.Now().Unix())),
})
req.NoError(err)
req.NotNil(rates)
req.GreaterOrEqual(rates[0].Time.Unix(), time.Now().Add(-5*time.Hour).Unix())
})
}