Files
gocryptotrader/exchanges/poloniex/currency_details_test.go
Samuael A. 3f534a15f1 cmd/exchange_template, exchanges: Update templates and propogate to exchanges (#1777)
* Added TimeInForce type and updated related files

* Linter issue fix and minor coinbasepro type update

* Bitrex consts update

* added unit test and minor changes in bittrex

* Unit tests update

* Fix minor linter issues

* Update TestStringToTimeInForce unit test

* Exchange test template change

* A different approach

* fix conflict with gateio timeInForce

* minor exchange template update

* Minor fix to test_files template

* Update order tests

* Complete updating the order unit tests

* Updating exchange wrapper and test template files

* update kucoin and deribit wrapper to match the time in force change

* minor comment update

* fix time-in-force related test errors

* linter issue fix

* ADD_NEW_EXCHANGE documentation update

* time in force constants, functions and unit tests update

* shift tif policies to TimeInForce

* Update time-in-force, related functions, and unit tests

* fix linter issue and time-in-force processing

* added a good till crossing tif value

* order type fix and fix related tim-in-force entries

* update time-in-force unmarshaling and unit test

* consistency guideline added

* fix time-in-force error in gateio

* linter issue fix

* update based on review comments

* add unit test and fix missing issues

* minor fix and added benchmark unit test

* change GTT to GTC for limit

* fix linter issue

* added time-in-force value to place order param

* fix minor issues based on review comment and move tif code to separate files

* update on exchanges linked to time-in-force

* resolve missing review comments

* minor linter issues fix

* added time-in-force handler and update timeInForce parametered endpoint

* minor fixes based on review

* nits fix

* update based on review

* linter fix

* rm getTimeInForce func and minor change to time-in-force

* minor change

* update based on review comments

* wrappers and time-in-force calling approach

* minor change

* update gateio string to timeInForce conversion and unit test

* update exchange template

* update wrapper template file

* policy comments, and template files update

* rename all exchange types name to Exchange

* update on template files and template generation

* templates and generation code and other updates

* linter issue fix

* added subscriptions and websocket templates

* update ADD_NEW_EXCHANGE.md with recent binance functions and implementations

* rename template files and update unit tests

* minor template and unit test fix

* rename templates and fix on unit tests

* update on template files and documentation

* removed unnecessary tag fix and update templates

* fix Add_NEW_EXCHANGE.md doc file

* formatting, comments, and error checks update on template files

* rename exchange receivers to e and ex for consistency

* rename unit test exchange receiver and minor updates

* linter issues fix

* fix deribit issue and minor style update

* fix test issues caused by receiver change

* raname local variables exchange declaration variables

* update templates comments

* update templates and related comments

* renamed ex to e

* update template comments

* toggle WS to false to improve coverage

* template comments update

* added test coverage to Ws enabled and minor changes

---------

Co-authored-by: Samuel Reid <43227667+cranktakular@users.noreply.github.com>
2025-07-17 10:46:36 +10:00

158 lines
3.4 KiB
Go

package poloniex
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/thrasher-corp/gocryptotrader/currency"
)
func TestWsCurrencyMap(t *testing.T) {
var m CurrencyDetails
if !m.isInitial() {
t.Fatal("unexpected value")
}
err := m.loadPairs(nil)
require.ErrorIs(t, err, errCannotLoadNoData)
err = m.loadCodes(nil)
require.ErrorIs(t, err, errCannotLoadNoData)
_, err = m.GetPair(1337)
require.ErrorIs(t, err, errPairMapIsNil)
_, err = m.GetCode(1337)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.GetWithdrawalTXFee(currency.EMPTYCODE)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.GetDepositAddress(currency.EMPTYCODE)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.IsWithdrawAndDepositsEnabled(currency.EMPTYCODE)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.IsTradingEnabledForCurrency(currency.EMPTYCODE)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.IsTradingEnabledForPair(currency.EMPTYPAIR)
require.ErrorIs(t, err, errCodeMapIsNil)
_, err = m.IsPostOnlyForPair(currency.EMPTYPAIR)
require.ErrorIs(t, err, errCodeMapIsNil)
c, err := e.GetCurrencies(t.Context())
if err != nil {
t.Fatal(err)
}
err = m.loadCodes(c)
if err != nil {
t.Fatal(err)
}
tick, err := e.GetTicker(t.Context())
if err != nil {
t.Fatal(err)
}
err = m.loadPairs(tick)
if err != nil {
t.Fatal(err)
}
pTest, err := m.GetPair(1337)
require.ErrorIs(t, err, errIDNotFoundInPairMap)
if pTest.String() != "1337" {
t.Fatal("unexpected value")
}
_, err = m.GetCode(1337)
require.ErrorIs(t, err, errIDNotFoundInCodeMap)
btcusdt, err := m.GetPair(121)
require.NoError(t, err)
if btcusdt.String() != "USDT_BTC" {
t.Fatal("expecting USDT_BTC pair")
}
eth, err := m.GetCode(267)
require.NoError(t, err)
if eth.String() != "ETH" {
t.Fatal("unexpected value")
}
txFee, err := m.GetWithdrawalTXFee(eth)
if err != nil {
t.Fatal(err)
}
if txFee == 0 {
t.Fatal("unexpected value")
}
_, err = m.GetDepositAddress(eth)
require.ErrorIs(t, err, errNoDepositAddress)
dAddr, err := m.GetDepositAddress(currency.NewCode("BCN"))
require.NoError(t, err)
if dAddr != "25cZNQYVAi3issDCoa6fWA2Aogd4FgPhYdpX3p8KLfhKC6sN8s6Q9WpcW4778TPwcUS5jEM25JrQvjD3XjsvXuNHSWhYUsu" {
t.Fatal("unexpected deposit address")
}
wdEnabled, err := m.IsWithdrawAndDepositsEnabled(eth)
require.NoError(t, err)
if !wdEnabled {
t.Fatal("unexpected results")
}
tEnabled, err := m.IsTradingEnabledForCurrency(eth)
require.NoError(t, err)
if !tEnabled {
t.Fatal("unexpected results")
}
cp := currency.NewPair(currency.USDT, currency.BTC)
tEnabled, err = m.IsTradingEnabledForPair(cp)
require.NoError(t, err)
if !tEnabled {
t.Fatal("unexpected results")
}
postOnly, err := m.IsPostOnlyForPair(cp)
require.NoError(t, err)
if postOnly {
t.Fatal("unexpected results")
}
_, err = m.GetWithdrawalTXFee(currency.EMPTYCODE)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
_, err = m.GetDepositAddress(currency.EMPTYCODE)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
_, err = m.IsWithdrawAndDepositsEnabled(currency.EMPTYCODE)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
_, err = m.IsTradingEnabledForCurrency(currency.EMPTYCODE)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
_, err = m.IsTradingEnabledForPair(currency.EMPTYPAIR)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
_, err = m.IsPostOnlyForPair(currency.EMPTYPAIR)
require.ErrorIs(t, err, errCurrencyNotFoundInMap)
}