Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sbws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
juga
sbws
Commits
8fd2d739
Commit
8fd2d739
authored
6 years ago
by
juga
Browse files
Options
Downloads
Patches
Plain Diff
Adapt tests to changed methods
parent
32b2014a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/unit/lib/test_v3bwfile.py
+11
-5
11 additions, 5 deletions
tests/unit/lib/test_v3bwfile.py
with
11 additions
and
5 deletions
tests/unit/lib/test_v3bwfile.py
+
11
−
5
View file @
8fd2d739
...
...
@@ -36,7 +36,8 @@ header_extra_ls = [timestamp_l, version_l,
software_l
,
software_version_l
,
TERMINATOR
]
header_extra_str
=
LINE_SEP
.
join
(
header_extra_ls
)
+
LINE_SEP
bwl_str
=
"
bw=54 error_circ=0 error_misc=0 error_stream=1
"
\
bwl_str
=
"
bw=56 bw_bs_mean=61423 bw_bs_median=55656
"
\
"
desc_avg_bw_bs=1000000000 error_circ=0 error_misc=0 error_stream=1
"
\
"
master_key_ed25519=g+Shk00y9Md0hg1S6ptnuc/wWKbADBgdjT0Kg+TSF3s
"
\
"
nick=A
"
\
"
node_id=$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA rtt=456 success=1
"
\
...
...
@@ -97,17 +98,22 @@ def test_v3bwline_from_results_file(datadir):
d
[
fp
]
=
[]
d
[
fp
].
append
(
r
)
bwl
=
V3BWLine
.
from_data
(
d
,
fp
)
# bw store now B, not KB
bwl
.
bw
=
round
(
bwl
.
bw
/
1000
)
assert
bwl_str
==
str
(
bwl
)
def
test_from_
arg_
results
(
datadir
,
tmpdir
,
conf
,
args
):
def
test_from_results
_read
(
datadir
,
tmpdir
,
conf
,
args
):
results
=
load_result_file
(
str
(
datadir
.
join
(
"
results.txt
"
)))
expected_header
=
V3BWHeader
(
timestamp_l
,
earliest_bandwidth
=
earliest_bandwidth
,
latest_bandwidth
=
latest_bandwidth
)
expected_bwls
=
[
V3BWLine
.
from_results
(
results
[
fp
])
for
fp
in
results
]
# bw store now B, not KB
expected_bwls
[
0
].
bw
=
round
(
expected_bwls
[
0
].
bw
/
1000
)
expected_f
=
V3BWFile
(
expected_header
,
expected_bwls
)
v3bwfile
=
V3BWFile
.
from_arg_results
(
args
,
conf
,
results
)
# This way is going to convert bw to KB
v3bwfile
=
V3BWFile
.
from_results
(
results
)
assert
str
(
expected_f
)[
1
:]
==
str
(
v3bwfile
)[
1
:]
output
=
os
.
path
.
join
(
args
.
output
,
now_fname
())
v3bwfile
.
write
(
output
)
...
...
@@ -115,7 +121,7 @@ def test_from_arg_results(datadir, tmpdir, conf, args):
def
test_from_arg_results_write
(
datadir
,
tmpdir
,
conf
,
args
):
results
=
load_result_file
(
str
(
datadir
.
join
(
"
results.txt
"
)))
v3bwfile
=
V3BWFile
.
from_
arg_
results
(
args
,
conf
,
results
)
v3bwfile
=
V3BWFile
.
from_results
(
results
)
output
=
os
.
path
.
join
(
args
.
output
,
now_fname
())
v3bwfile
.
write
(
output
)
assert
os
.
path
.
isfile
(
output
)
...
...
@@ -123,7 +129,7 @@ def test_from_arg_results_write(datadir, tmpdir, conf, args):
def
test_from_arg_results_write_read
(
datadir
,
tmpdir
,
conf
,
args
):
results
=
load_result_file
(
str
(
datadir
.
join
(
"
results.txt
"
)))
v3bwfile
=
V3BWFile
.
from_
arg_
results
(
args
,
conf
,
results
)
v3bwfile
=
V3BWFile
.
from_results
(
results
)
output
=
os
.
path
.
join
(
args
.
output
,
now_fname
())
v3bwfile
.
write
(
output
)
with
open
(
output
)
as
fd
:
...
...
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