mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
42 lines
917 B
Go
42 lines
917 B
Go
package max
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAllSymbols(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")
|
|
}
|
|
|
|
}
|
|
|
|
func TestSomeSymbols(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")
|
|
|
|
}
|
|
}
|
|
|
|
func TestSingleSymbol(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")
|
|
|
|
}
|
|
}
|