Skip to content
Snippets Groups Projects
Commit 1e65ef4d authored by Josh Brooks's avatar Josh Brooks
Browse files

Add a high level params test

parent a3b14498
No related branches found
No related tags found
4 merge requests!510Release,!227Have all Params objects adhere to json.Marshaler/Unmarshaler,!226WIP: Api2.0,!207WIP: Client Restructure
///////////////////////////////////////////////////////////////////////////////
// Copyright © 2020 xx network SEZC //
// //
// Use of this source code is governed by a license that can be found in the //
// LICENSE file //
///////////////////////////////////////////////////////////////////////////////
package api
import (
"encoding/json"
"testing"
)
func TestParams_MarshalUnmarshal(t *testing.T) {
p := GetDefaultParams()
data, err := json.Marshal(p)
if err != nil {
t.Fatalf("Marshal error: %+v", err)
}
t.Logf("%s", string(data))
received := GetDefaultParams()
err = json.Unmarshal(data, &received)
if err != nil {
t.Fatalf("Unmarshal error: %+v", err)
}
data2, err := json.Marshal(received)
if err != nil {
t.Fatalf("Marshal error: %+v", err)
}
t.Logf("%s", string(data2))
}
......@@ -7,7 +7,10 @@
package fileTransfer
import "time"
import (
"encoding/json"
"time"
)
const (
defaultMaxThroughput = 150_000 // 150 kB per second
......@@ -26,6 +29,12 @@ type Params struct {
SendTimeout time.Duration
}
// paramsDisk will be the marshal-able and umarshal-able object.
type paramsDisk struct {
MaxThroughput int
SendTimeout time.Duration
}
// DefaultParams returns a Params object filled with the default values.
func DefaultParams() Params {
return Params{
......@@ -33,3 +42,42 @@ func DefaultParams() Params {
SendTimeout: defaultSendTimeout,
}
}
// GetParameters returns the default network parameters, or override with given
// parameters, if set.
func GetParameters(params string) (Params, error) {
p := DefaultParams()
if len(params) > 0 {
err := json.Unmarshal([]byte(params), &p)
if err != nil {
return Params{}, err
}
}
return p, nil
}
// MarshalJSON adheres to the json.Marshaler interface.
func (p Params) MarshalJSON() ([]byte, error) {
pDisk := paramsDisk{
MaxThroughput: p.MaxThroughput,
SendTimeout: p.SendTimeout,
}
return json.Marshal(&pDisk)
}
// UnmarshalJSON adheres to the json.Unmarshaler interface.
func (p *Params) UnmarshalJSON(data []byte) error {
pDisk := paramsDisk{}
err := json.Unmarshal(data, &pDisk)
if err != nil {
return err
}
*p = Params{
MaxThroughput: pDisk.MaxThroughput,
SendTimeout: pDisk.SendTimeout,
}
return nil
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment