mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-06 07:26:47 +00:00
Split common package more and QA
This commit is contained in:
@@ -7,6 +7,7 @@ import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
@@ -16,6 +17,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/thrasher-/gocryptotrader/common"
|
||||
"github.com/thrasher-/gocryptotrader/common/convert"
|
||||
"github.com/thrasher-/gocryptotrader/connchecker"
|
||||
"github.com/thrasher-/gocryptotrader/currency"
|
||||
"github.com/thrasher-/gocryptotrader/currency/forexprovider"
|
||||
@@ -947,7 +949,7 @@ func (c *Config) CheckExchangeConfigValues() error {
|
||||
}
|
||||
}
|
||||
if !c.Exchanges[i].Features.Supports.RESTCapabilities.AutoPairUpdates && !c.Exchanges[i].Features.Supports.WebsocketCapabilities.AutoPairUpdates {
|
||||
lastUpdated := common.UnixTimestampToTime(c.Exchanges[i].CurrencyPairs.LastUpdated)
|
||||
lastUpdated := convert.UnixTimestampToTime(c.Exchanges[i].CurrencyPairs.LastUpdated)
|
||||
lastUpdated = lastUpdated.AddDate(0, 0, configPairsLastUpdatedWarningThreshold)
|
||||
if lastUpdated.Unix() <= time.Now().Unix() {
|
||||
log.Warnf(WarningPairsLastUpdatedThresholdExceeded, c.Exchanges[i].Name, configPairsLastUpdatedWarningThreshold)
|
||||
@@ -1125,8 +1127,8 @@ func (c *Config) CheckCurrencyConfigValues() error {
|
||||
}
|
||||
|
||||
if c.Currency.Cryptocurrencies.Join() == "" {
|
||||
if c.Cryptocurrencies.Join() != "" {
|
||||
c.Currency.Cryptocurrencies = c.Cryptocurrencies
|
||||
if c.Cryptocurrencies != nil {
|
||||
c.Currency.Cryptocurrencies = *c.Cryptocurrencies
|
||||
c.Cryptocurrencies = nil
|
||||
} else {
|
||||
c.Currency.Cryptocurrencies = currency.GetDefaultCryptocurrencies()
|
||||
@@ -1146,13 +1148,19 @@ func (c *Config) CheckCurrencyConfigValues() error {
|
||||
}
|
||||
|
||||
if c.Currency.FiatDisplayCurrency.IsEmpty() {
|
||||
if c.FiatDisplayCurrency.IsEmpty() {
|
||||
c.Currency.FiatDisplayCurrency = c.FiatDisplayCurrency
|
||||
c.FiatDisplayCurrency = currency.NewCode("")
|
||||
if c.FiatDisplayCurrency != nil {
|
||||
c.Currency.FiatDisplayCurrency = *c.FiatDisplayCurrency
|
||||
c.FiatDisplayCurrency = nil
|
||||
} else {
|
||||
c.Currency.FiatDisplayCurrency = currency.USD
|
||||
}
|
||||
}
|
||||
|
||||
// Flush old setting which still exists
|
||||
if c.FiatDisplayCurrency != nil {
|
||||
c.FiatDisplayCurrency = nil
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -1376,7 +1384,7 @@ func GetFilePath(file string) (string, error) {
|
||||
continue
|
||||
}
|
||||
|
||||
data, err := common.ReadFile(newDirs[x])
|
||||
data, err := ioutil.ReadFile(newDirs[x])
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
@@ -1416,7 +1424,7 @@ func (c *Config) ReadConfig(configPath string) error {
|
||||
return err
|
||||
}
|
||||
|
||||
file, err := common.ReadFile(defaultPath)
|
||||
file, err := ioutil.ReadFile(defaultPath)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"testing"
|
||||
|
||||
"github.com/thrasher-/gocryptotrader/common"
|
||||
)
|
||||
|
||||
func TestPromptForConfigEncryption(t *testing.T) {
|
||||
@@ -87,7 +86,7 @@ func TestDecryptConfigFile(t *testing.T) {
|
||||
|
||||
func TestConfirmConfigJSON(t *testing.T) {
|
||||
var result interface{}
|
||||
testConfirmJSON, err := common.ReadFile(ConfigTestFile)
|
||||
testConfirmJSON, err := ioutil.ReadFile(ConfigTestFile)
|
||||
if err != nil {
|
||||
t.Errorf("Test failed. testConfirmJSON: %s", err)
|
||||
}
|
||||
|
||||
@@ -682,7 +682,8 @@ func TestCheckExchangeConfigValues(t *testing.T) {
|
||||
}
|
||||
|
||||
checkExchangeConfigValues.Exchanges = checkExchangeConfigValues.Exchanges[:0]
|
||||
checkExchangeConfigValues.Cryptocurrencies = currency.NewCurrenciesFromStringArray([]string{"TESTYTEST"})
|
||||
cryptos := currency.NewCurrenciesFromStringArray([]string{"TESTYTEST"})
|
||||
checkExchangeConfigValues.Cryptocurrencies = &cryptos
|
||||
err = checkExchangeConfigValues.CheckExchangeConfigValues()
|
||||
if err == nil {
|
||||
t.Errorf(
|
||||
|
||||
@@ -30,8 +30,8 @@ type Config struct {
|
||||
// Deprecated config settings, will be removed at a future date
|
||||
Webserver *WebserverConfig `json:"webserver,omitempty"`
|
||||
CurrencyPairFormat *CurrencyPairFormatConfig `json:"currencyPairFormat,omitempty"`
|
||||
FiatDisplayCurrency currency.Code `json:"fiatDispayCurrency,omitempty"`
|
||||
Cryptocurrencies currency.Currencies `json:"cryptocurrencies,omitempty"`
|
||||
FiatDisplayCurrency *currency.Code `json:"fiatDispayCurrency,omitempty"`
|
||||
Cryptocurrencies *currency.Currencies `json:"cryptocurrencies,omitempty"`
|
||||
SMS *SMSGlobalConfig `json:"smsGlobal,omitempty"`
|
||||
}
|
||||
|
||||
@@ -328,9 +328,9 @@ type APIConfig struct {
|
||||
AuthenticatedSupport bool `json:"authenticatedSupport"`
|
||||
PEMKeySupport bool `json:"pemKeySupport,omitempty"`
|
||||
|
||||
Endpoints APIEndpointsConfig `json:"endpoints"`
|
||||
Credentials APICredentialsConfig `json:"credentials"`
|
||||
CredentialsValidator APICredentialsValidatorConfig `json:"credentialsValidator"`
|
||||
Endpoints APIEndpointsConfig `json:"endpoints"`
|
||||
Credentials APICredentialsConfig `json:"credentials"`
|
||||
CredentialsValidator *APICredentialsValidatorConfig `json:"credentialsValidator,omitempty"`
|
||||
}
|
||||
|
||||
// HTTPRateConfig stores the exchanges HTTP rate limiter config
|
||||
|
||||
Reference in New Issue
Block a user