-
Notifications
You must be signed in to change notification settings - Fork 17
/
account_test.go
59 lines (46 loc) · 1.25 KB
/
account_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
package goftx
import (
"os"
"testing"
"github.com/joho/godotenv"
"github.com/shopspring/decimal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestAccount_GetAccountInformation(t *testing.T) {
_ = godotenv.Load()
ftx := New(
WithAuth(os.Getenv("FTX_KEY"), os.Getenv("FTX_SECRET")),
)
err := ftx.SetServerTimeDiff()
require.NoError(t, err)
account, err := ftx.Account.GetAccountInformation()
assert.NoError(t, err)
assert.NotNil(t, account)
}
func TestAccount_GetPositions(t *testing.T) {
_ = godotenv.Load()
ftx := New(
WithAuth(os.Getenv("FTX_KEY"), os.Getenv("FTX_SECRET")),
)
err := ftx.SetServerTimeDiff()
require.NoError(t, err)
positions, err := ftx.Account.GetPositions()
assert.NoError(t, err)
assert.NotNil(t, positions)
}
func TestAccount_ChangeAccountLeverage(t *testing.T) {
_ = godotenv.Load()
ftx := New(
WithAuth(os.Getenv("FTX_KEY"), os.Getenv("FTX_SECRET")),
)
err := ftx.SetServerTimeDiff()
require.NoError(t, err)
leverage := decimal.New(10, 0)
err = ftx.Account.ChangeAccountLeverage(leverage)
assert.NoError(t, err)
account, err := ftx.Account.GetAccountInformation()
assert.NoError(t, err)
assert.NotNil(t, account)
assert.True(t, leverage.Equal(account.Leverage))
}