mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
114 lines
2.5 KiB
Go
114 lines
2.5 KiB
Go
package max
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAccountService_GetAccountsRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.AccountService.NewGetAccountsRequest()
|
|
accounts, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, accounts)
|
|
assert.NotEmpty(t, accounts)
|
|
|
|
t.Logf("accounts: %+v", accounts)
|
|
}
|
|
|
|
func TestAccountService_GetAccountRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.AccountService.NewGetAccountRequest()
|
|
req.Currency("twd")
|
|
account, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, account)
|
|
t.Logf("account: %+v", account)
|
|
|
|
req2 := client.AccountService.NewGetAccountRequest()
|
|
req2.Currency("usdt")
|
|
account, err = req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, account)
|
|
t.Logf("account: %+v", account)
|
|
}
|
|
|
|
func TestAccountService_GetVipLevelRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.AccountService.NewGetVipLevelRequest()
|
|
vipLevel, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, vipLevel)
|
|
t.Logf("vipLevel: %+v", vipLevel)
|
|
}
|
|
|
|
func TestAccountService_GetWithdrawHistoryRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.AccountService.NewGetWithdrawalHistoryRequest()
|
|
req.Currency("usdt")
|
|
withdraws, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, withdraws)
|
|
assert.NotEmpty(t, withdraws)
|
|
t.Logf("withdraws: %+v", withdraws)
|
|
}
|
|
|
|
func TestAccountService_NewGetDepositHistoryRequest(t *testing.T) {
|
|
key, secret, ok := integrationTestConfigured(t, "MAX")
|
|
if !ok {
|
|
t.SkipNow()
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
client := NewRestClient(ProductionAPIURL)
|
|
client.Auth(key, secret)
|
|
|
|
req := client.AccountService.NewGetDepositHistoryRequest()
|
|
req.Currency("usdt")
|
|
deposits, err := req.Do(ctx)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, deposits)
|
|
assert.NotEmpty(t, deposits)
|
|
t.Logf("deposits: %+v", deposits)
|
|
}
|
|
|