mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-17 15:09:59 +00:00
* Attempts to update orderbook so it doesn't need to sort * Reverts the ws ob stuff. Gets rid of sorting because it happens later. Adds some exchange features * update existing feature lists. Expands list definition to match my emotions * Adds bithumb bitmex and bitstamp. adds a couple more types * Features for you, features for me, features for bittrex, btcmarkets, btse, coinbasepro, coinut, exmo, gateio and gemini * Features for hitbtc, huobi, itbit, kraken, lakebtc, lbank, localbitcoins, okcoin, okex, poloniex, yobit, zb * Who can forget good old alphapoint? * Adds btcmarksets websocket :glitch_crab: fixes alphapoint features * Adds extra data not in the documentation :/ * Replaces websocket features by using protocol features. However, it breaks it due to import cycles. I'm not sure what I'll do just yet * Removes import cycle via duplicate structs. * Increases coverage of config with `TestCheckCurrencyConfigValues`. Moves all currency pair package types into their own files or places it at the bottom of files if necessary * Increase coverage in code.go * One way of determining a test has failed, is when to it fails. Removed redundant explanation * Increases code coverage of conversion * Lint fixes * Fixes orderbook tests * Re-adds sorting because its important to still have the internal pre-processed orderbook to be representative of a real orderbook * Secret lints that did not show up via Windows linting * Adds protocol package to contain exchange features * Fixes protocol implementation * Fixes ws tests * Addresses the following: Removes st-st-stutters in config types, changes GetAvailableForexProviders -> GetSupportedForexProviders, removes errors from tests where error is nil, removes orderbook setup when not necessary, removes import newlines, removes false bools from declaration, changes should of to should have * imports and casing * Fixes two more nil error checks
187 lines
4.0 KiB
Go
187 lines
4.0 KiB
Go
package mock
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetFilteredHeader(t *testing.T) {
|
|
resp := http.Response{}
|
|
resp.Request = &http.Request{}
|
|
resp.Request.Header = http.Header{}
|
|
resp.Request.Header.Set("Key", "RiskyVals")
|
|
fMap, err := GetFilteredHeader(&resp)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if fMap.Get("Key") != "" {
|
|
t.Error("risky vals where not replaced correctly")
|
|
}
|
|
}
|
|
|
|
func TestGetFilteredURLVals(t *testing.T) {
|
|
superSecretData := "Dr Seuss"
|
|
shadyVals := url.Values{}
|
|
shadyVals.Set("real_name", superSecretData)
|
|
cleanVals, err := GetFilteredURLVals(shadyVals)
|
|
if err != nil {
|
|
t.Error("GetFilteredURLVals error", err)
|
|
}
|
|
|
|
if strings.Contains(cleanVals, superSecretData) {
|
|
t.Error("Super secret data found")
|
|
}
|
|
}
|
|
|
|
func TestCheckResponsePayload(t *testing.T) {
|
|
testbody := struct {
|
|
SomeJSON string `json:"stuff"`
|
|
}{
|
|
SomeJSON: "REAAAAHHHHH",
|
|
}
|
|
|
|
payload, err := json.Marshal(testbody)
|
|
if err != nil {
|
|
t.Fatal("json marshal error", err)
|
|
}
|
|
|
|
data, err := CheckResponsePayload(payload)
|
|
if err != nil {
|
|
t.Error("CheckBody error", err)
|
|
}
|
|
|
|
expected := `{
|
|
"stuff": "REAAAAHHHHH"
|
|
}`
|
|
|
|
if string(data) != expected {
|
|
t.Error("unexpected returned data")
|
|
}
|
|
}
|
|
|
|
type TestStructLevel0 struct {
|
|
StringVal string `json:"stringVal"`
|
|
FloatVal float64 `json:"floatVal"`
|
|
IntVal int64 `json:"intVal"`
|
|
StructVal TestStructLevel1 `json:"structVal"`
|
|
}
|
|
|
|
type TestStructLevel1 struct {
|
|
OkayVal string `json:"okayVal"`
|
|
OkayVal2 float64 `json:"okayVal2"`
|
|
BadVal string `json:"user"`
|
|
BadVal2 int `json:"bsb"`
|
|
OtherData TestStructLevel2 `json:"otherVals"`
|
|
}
|
|
|
|
type TestStructLevel2 struct {
|
|
OkayVal string `json:"okayVal"`
|
|
OkayVal2 float64 `json:"okayVal2"`
|
|
BadVal float32 `json:"name"`
|
|
BadVal2 int32 `json:"real_name"`
|
|
OtherData TestStructLevel3 `json:"moreOtherVals"`
|
|
}
|
|
|
|
type TestStructLevel3 struct {
|
|
OkayVal string `json:"okayVal"`
|
|
OkayVal2 float64 `json:"okayVal2"`
|
|
BadVal int64 `json:"receiver_name"`
|
|
BadVal2 string `json:"account_number"`
|
|
}
|
|
|
|
func TestCheckJSON(t *testing.T) {
|
|
level3 := TestStructLevel3{
|
|
OkayVal: "stuff",
|
|
OkayVal2: 129219,
|
|
BadVal: 1337,
|
|
BadVal2: "Super Secret Password",
|
|
}
|
|
|
|
level2 := TestStructLevel2{
|
|
OkayVal: "stuff",
|
|
OkayVal2: 129219,
|
|
BadVal: 0.222,
|
|
BadVal2: 1337888888,
|
|
OtherData: level3,
|
|
}
|
|
|
|
level1 := TestStructLevel1{
|
|
OkayVal: "stuff",
|
|
OkayVal2: 120938,
|
|
BadVal: "CritcalBankingStuff",
|
|
BadVal2: 1337,
|
|
OtherData: level2,
|
|
}
|
|
|
|
testVal := TestStructLevel0{
|
|
StringVal: "somestringstuff",
|
|
FloatVal: 3.14,
|
|
IntVal: 1337,
|
|
StructVal: level1,
|
|
}
|
|
|
|
exclusionList, err := GetExcludedItems()
|
|
if err != nil {
|
|
t.Error("GetExcludedItems error", err)
|
|
}
|
|
|
|
vals, err := CheckJSON(testVal, &exclusionList)
|
|
if err != nil {
|
|
t.Error("Check JSON error", err)
|
|
}
|
|
|
|
payload, err := json.Marshal(vals)
|
|
if err != nil {
|
|
t.Fatal("json marshal error", err)
|
|
}
|
|
|
|
newStruct := TestStructLevel0{}
|
|
err = json.Unmarshal(payload, &newStruct)
|
|
if err != nil {
|
|
t.Fatal("Umarshal error", err)
|
|
}
|
|
|
|
if newStruct.StructVal.BadVal != "" {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
|
|
if newStruct.StructVal.BadVal2 != 0 {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
|
|
if newStruct.StructVal.OtherData.BadVal != 0 {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
|
|
if newStruct.StructVal.OtherData.BadVal2 != 0 {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
|
|
if newStruct.StructVal.OtherData.OtherData.BadVal != 0 {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
|
|
if newStruct.StructVal.OtherData.OtherData.BadVal2 != "" {
|
|
t.Error("Value not wiped correctly")
|
|
}
|
|
}
|
|
|
|
func TestGetExcludedItems(t *testing.T) {
|
|
exclusionList, err := GetExcludedItems()
|
|
if err != nil {
|
|
t.Error("GetExcludedItems error", err)
|
|
}
|
|
|
|
if len(exclusionList.Headers) == 0 {
|
|
t.Error("Header exclusion list not popoulated")
|
|
}
|
|
|
|
if len(exclusionList.Variables) == 0 {
|
|
t.Error("Variable exclusion list not popoulated")
|
|
}
|
|
}
|