max: fix query ticker tests

This commit is contained in:
c9s 2021-12-05 01:08:50 +08:00
parent 715363298f
commit 062f9243c6

View File

@ -7,35 +7,26 @@ import (
"github.com/stretchr/testify/assert"
)
func TestAllSymbols(t *testing.T) {
func TestExchange_QueryTickers_AllSymbols(t *testing.T) {
e := New("mock_key", "mock_secret")
got, err := e.QueryTickers(context.Background())
assert.NoError(t, err)
if len(got) <= 1 {
t.Errorf("Max Exchange: Attempting to get all symbol tickers, but get 1 or less")
if assert.NoError(t, err) {
assert.True(t, len(got) > 1, "max: attempting to get all symbol tickers, but get 1 or less")
}
}
func TestSomeSymbols(t *testing.T) {
func TestExchange_QueryTickers_SomeSymbols(t *testing.T) {
e := New("mock_key", "mock_secret")
got, err := e.QueryTickers(context.Background(), "BTCUSDT", "ETHUSDT")
assert.NoError(t, err)
if len(got) != 2 {
t.Errorf("Max Exchange: Attempting to get two symbols, but number of tickers do not match")
if assert.NoError(t, err) {
assert.Len(t, got, 2, "max: attempting to get two symbols, but number of tickers do not match")
}
}
func TestSingleSymbol(t *testing.T) {
func TestExchange_QueryTickers_SingleSymbol(t *testing.T) {
e := New("mock_key", "mock_secret")
got, err := e.QueryTickers(context.Background(), "BTCUSDT")
assert.NoError(t, err)
if len(got) != 1 {
t.Errorf("Max Exchange: Attempting to get one symbol, but number of tickers do not match")
if assert.NoError(t, err) {
assert.Len(t, got, 1, "max: attempting to get 1 symbols, but number of tickers do not match")
}
}