mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
33 lines
967 B
Go
33 lines
967 B
Go
package binance
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestExchange_QueryTickers_AllSymbols(t *testing.T) {
|
|
e := New("mock_key", "mock_secret")
|
|
got, err := e.QueryTickers(context.Background())
|
|
if assert.NoError(t, err) {
|
|
assert.True(t, len(got) > 1, "binance: attempting to get all symbol tickers, but get 1 or less")
|
|
}
|
|
}
|
|
|
|
func TestExchange_QueryTickers_SomeSymbols(t *testing.T) {
|
|
e := New("mock_key", "mock_secret")
|
|
got, err := e.QueryTickers(context.Background(), "BTCUSDT", "ETHUSDT")
|
|
if assert.NoError(t, err) {
|
|
assert.Len(t, got, 2, "binance: attempting to get two symbols, but number of tickers do not match")
|
|
}
|
|
}
|
|
|
|
func TestExchange_QueryTickers_SingleSymbol(t *testing.T) {
|
|
e := New("mock_key", "mock_secret")
|
|
got, err := e.QueryTickers(context.Background(), "BTCUSDT")
|
|
if assert.NoError(t, err) {
|
|
assert.Len(t, got, 1, "binance: attempting to get one symbol, but number of tickers do not match")
|
|
}
|
|
}
|