mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* Initial rework of rework of requester - WIP * Implementing and checking rate limits - WIP * implemented coinbene rate limiting shenanigans * add in remaining WIP * fixy * use authenticated rate limit * drop ceiling as this can be done with a counter later * add functionality to struct * purge config options for rate limiting so as to keep things minimal * prepare futures and swap rate limiting for implementation * Address linter issues * Addressed nits, fixed race * fix linter issue * remove global var as this was only setting when newrequester was called * moved rate limit functionality into its own file * Update Bitfinex with correct rate limit and test endpoints (WIP) * finish off bitfinex adjustments * fixes * fix linter issues * slowed rate for coinbasepro * drop rate limit for huobi as the doc times have intermittent 429 issues. * Set MACOSX_DEPLOYMENT_TARGET to remove linking warning * Addr Thrasher nits * Addr glorious nits * unexport do request function * fixed nitorinos * Fixed something I missed * move disabled rate limiter into loadexchange and use interface functionality * Add temp quick fix
130 lines
2.2 KiB
Go
130 lines
2.2 KiB
Go
package account
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/dispatch"
|
|
)
|
|
|
|
func TestHoldings(t *testing.T) {
|
|
err := dispatch.Start(dispatch.DefaultMaxWorkers, dispatch.DefaultJobsLimit)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
err = Process(nil)
|
|
if err == nil {
|
|
t.Error("error cannot be nil")
|
|
}
|
|
|
|
err = Process(&Holdings{})
|
|
if err == nil {
|
|
t.Error("error cannot be nil")
|
|
}
|
|
|
|
holdings := Holdings{
|
|
Exchange: "Test",
|
|
}
|
|
|
|
err = Process(&holdings)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
err = Process(&Holdings{
|
|
Exchange: "Test",
|
|
Accounts: []SubAccount{{
|
|
ID: "1337",
|
|
Currencies: []Balance{
|
|
{
|
|
CurrencyName: currency.BTC,
|
|
TotalValue: 100,
|
|
Hold: 20,
|
|
},
|
|
},
|
|
}},
|
|
})
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = GetHoldings("")
|
|
if err == nil {
|
|
t.Error("error cannot be nil")
|
|
}
|
|
|
|
_, err = GetHoldings("bla")
|
|
if err == nil {
|
|
t.Error("error cannot be nil")
|
|
}
|
|
|
|
u, err := GetHoldings("Test")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if u.Accounts[0].ID != "1337" {
|
|
t.Errorf("expecting 1337 but receieved %s", u.Accounts[0].ID)
|
|
}
|
|
|
|
if u.Accounts[0].Currencies[0].CurrencyName != currency.BTC {
|
|
t.Errorf("expecting BTC but receieved %s",
|
|
u.Accounts[0].Currencies[0].CurrencyName)
|
|
}
|
|
|
|
if u.Accounts[0].Currencies[0].TotalValue != 100 {
|
|
t.Errorf("expecting 100 but receieved %f",
|
|
u.Accounts[0].Currencies[0].TotalValue)
|
|
}
|
|
|
|
if u.Accounts[0].Currencies[0].Hold != 20 {
|
|
t.Errorf("expecting 20 but receieved %f",
|
|
u.Accounts[0].Currencies[0].Hold)
|
|
}
|
|
|
|
_, err = SubscribeToExchangeAccount("nonsense")
|
|
if err == nil {
|
|
t.Fatal("error cannot be nil")
|
|
}
|
|
|
|
p, err := SubscribeToExchangeAccount("Test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
wg.Add(1)
|
|
go func(p dispatch.Pipe, wg *sync.WaitGroup) {
|
|
for i := 0; i < 2; i++ {
|
|
c := time.NewTimer(time.Second)
|
|
select {
|
|
case <-p.C:
|
|
case <-c.C:
|
|
}
|
|
}
|
|
|
|
wg.Done()
|
|
}(p, &wg)
|
|
|
|
err = Process(&Holdings{
|
|
Exchange: "Test",
|
|
Accounts: []SubAccount{{
|
|
ID: "1337",
|
|
Currencies: []Balance{
|
|
{
|
|
CurrencyName: currency.BTC,
|
|
TotalValue: 100000,
|
|
Hold: 20,
|
|
},
|
|
},
|
|
}},
|
|
})
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
wg.Wait()
|
|
}
|