Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
client
Commits
1e65ef4d
Commit
1e65ef4d
authored
2 years ago
by
Josh Brooks
Browse files
Options
Downloads
Patches
Plain Diff
Add a high level params test
parent
a3b14498
No related branches found
No related tags found
4 merge requests
!510
Release
,
!227
Have all Params objects adhere to json.Marshaler/Unmarshaler
,
!226
WIP: Api2.0
,
!207
WIP: Client Restructure
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/params_test.go
+37
-0
37 additions, 0 deletions
api/params_test.go
fileTransfer/params.go
+49
-1
49 additions, 1 deletion
fileTransfer/params.go
with
86 additions
and
1 deletion
api/params_test.go
0 → 100644
+
37
−
0
View file @
1e65ef4d
///////////////////////////////////////////////////////////////////////////////
// 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
))
}
This diff is collapsed.
Click to expand it.
fileTransfer/params.go
+
49
−
1
View file @
1e65ef4d
...
...
@@ -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
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment