bbgo_origin/pkg/exchange/max/maxapi/account_test.go

55 lines
1.1 KiB
Go
Raw Normal View History

2022-04-20 05:28:39 +00:00
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)
}