mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
127 lines
3.0 KiB
Go
127 lines
3.0 KiB
Go
package currency
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGetDefaultExchangeRates(t *testing.T) {
|
|
rates, err := GetDefaultExchangeRates()
|
|
if err != nil {
|
|
t.Error("Test failed - GetDefaultExchangeRates() err", err)
|
|
}
|
|
|
|
for _, val := range rates {
|
|
if !val.IsFiat() {
|
|
t.Errorf("Test failed - GetDefaultExchangeRates() %s is not fiat pair",
|
|
val)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGetExchangeRates(t *testing.T) {
|
|
rates, err := GetExchangeRates()
|
|
if err != nil {
|
|
t.Error("Test failed - GetExchangeRates() err", err)
|
|
}
|
|
|
|
for _, val := range rates {
|
|
if !val.IsFiat() {
|
|
t.Errorf("Test failed - GetExchangeRates() %s is not fiat pair",
|
|
val)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestUpdateBaseCurrency(t *testing.T) {
|
|
err := UpdateBaseCurrency(AUD)
|
|
if err != nil {
|
|
t.Error("Test failed - UpdateBaseCurrency() err", err)
|
|
}
|
|
|
|
err = UpdateBaseCurrency(LTC)
|
|
if err == nil {
|
|
t.Error("Test failed - UpdateBaseCurrency() cannot be nil")
|
|
}
|
|
|
|
if GetBaseCurrency() != AUD {
|
|
t.Errorf("Test failed - GetBaseCurrency() expected %s but received %s",
|
|
AUD, GetBaseCurrency())
|
|
}
|
|
}
|
|
|
|
func TestGetDefaultBaseCurrency(t *testing.T) {
|
|
if GetDefaultBaseCurrency() != USD {
|
|
t.Errorf("Test failed - GetDefaultBaseCurrency() expected %s but received %s",
|
|
USD, GetDefaultBaseCurrency())
|
|
}
|
|
}
|
|
|
|
func TestGetDefaulCryptoCurrencies(t *testing.T) {
|
|
expected := Currencies{BTC, LTC, ETH, DOGE, DASH, XRP, XMR}
|
|
if !GetDefaultCryptocurrencies().Match(expected) {
|
|
t.Errorf("Test failed - GetDefaultCryptocurrencies() expected %s but received %s",
|
|
expected, GetDefaultCryptocurrencies())
|
|
}
|
|
}
|
|
|
|
func TestGetDefaultFiatCurrencies(t *testing.T) {
|
|
expected := Currencies{USD, AUD, EUR, CNY}
|
|
if !GetDefaultFiatCurrencies().Match(expected) {
|
|
t.Errorf("Test failed - GetDefaultFiatCurrencies() expected %s but received %s",
|
|
expected, GetDefaultFiatCurrencies())
|
|
}
|
|
}
|
|
|
|
func TestUpdateCurrencies(t *testing.T) {
|
|
fiat := Currencies{HKN, JPY}
|
|
UpdateCurrencies(fiat, false)
|
|
rFiat := GetFiatCurrencies()
|
|
if !rFiat.Contains(HKN) || !rFiat.Contains(JPY) {
|
|
t.Error("Test failed - UpdateCurrencies() currencies did not update")
|
|
}
|
|
|
|
crypto := Currencies{ZAR, ZCAD, B2}
|
|
UpdateCurrencies(crypto, true)
|
|
rCrypto := GetCryptocurrencies()
|
|
if !rCrypto.Contains(ZAR) || !rCrypto.Contains(ZCAD) || !rCrypto.Contains(B2) {
|
|
t.Error("Test failed - UpdateCurrencies() currencies did not update")
|
|
}
|
|
}
|
|
|
|
func TestConvertCurrency(t *testing.T) {
|
|
_, err := ConvertCurrency(100, AUD, USD)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
r, err := ConvertCurrency(100, AUD, AUD)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if r != 100 {
|
|
t.Errorf("Test Failed - ConvertCurrency error, incorrect rate return %2.f but received %2.f",
|
|
100.00, r)
|
|
}
|
|
|
|
_, err = ConvertCurrency(100, USD, AUD)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
_, err = ConvertCurrency(100, CNY, AUD)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
_, err = ConvertCurrency(100, LTC, USD)
|
|
if err == nil {
|
|
t.Fatal("Expected err on non-existent currency")
|
|
}
|
|
|
|
_, err = ConvertCurrency(100, USD, LTC)
|
|
if err == nil {
|
|
t.Fatal("Expected err on non-existent currency")
|
|
}
|
|
}
|