Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Network Health
sbws
Commits
aff900dc
Commit
aff900dc
authored
Apr 26, 2018
by
Matt Traudt
Browse files
Remove all the FIXMEs; version is in fact tested elsewhere
parent
628d21a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/core/test_generate.py
View file @
aff900dc
...
...
@@ -99,12 +99,6 @@ def test_generate_single_success_noscale(dotsbws_success_result, caplog,
stdout_lines
=
captured
.
out
.
strip
().
split
(
'
\n
'
)
assert
len
(
stdout_lines
)
==
1
+
NUM_LINES_HEADER
# XXX: after mocking time, make sure first line is the current timestamp
# assert stdout_lines[0] is current timestamp
# FIXME: this is now down in V3BwHeader
# v = 'version={}'.format(version)
# assert stdout_lines[1] == v
bw
=
round
(
median
([
dl
[
'amount'
]
/
dl
[
'duration'
]
/
1024
for
dl
in
result
.
downloads
]))
rtt
=
median
([
round
(
r
*
1000
)
for
r
in
result
.
rtts
])
...
...
@@ -131,12 +125,6 @@ def test_generate_single_success_scale(dotsbws_success_result, parser,
stdout_lines
=
captured
.
out
.
strip
().
split
(
'
\n
'
)
assert
len
(
stdout_lines
)
==
1
+
NUM_LINES_HEADER
# XXX: after mocking time, make sure first line is the current timestamp
# assert stdout_lines[0] is current timestamp
# FIXME: this is now down in V3BwHeader
# v = 'version={}'.format(version)
# assert stdout_lines[1] == v
bw
=
7500
rtt
=
median
([
round
(
r
*
1000
)
for
r
in
result
.
rtts
])
bw_line
=
'node_id=${} bw={} nick={} rtt={} time={}'
.
format
(
...
...
@@ -161,12 +149,6 @@ def test_generate_single_relay_success_noscale(
stdout_lines
=
captured
.
out
.
strip
().
split
(
'
\n
'
)
assert
len
(
stdout_lines
)
==
1
+
NUM_LINES_HEADER
# XXX: after mocking time, make sure first line is the current timestamp
# assert stdout_lines[0] is current timestamp
# FIXME: this is now down in V3BwHeader
# v = 'version={}'.format(version)
# assert stdout_lines[1] == v
speeds
=
[
dl
[
'amount'
]
/
dl
[
'duration'
]
/
1024
for
r
in
results
for
dl
in
r
.
downloads
]
speed
=
round
(
median
(
speeds
))
...
...
@@ -194,12 +176,6 @@ def test_generate_single_relay_success_scale(
stdout_lines
=
captured
.
out
.
strip
().
split
(
'
\n
'
)
assert
len
(
stdout_lines
)
==
1
+
NUM_LINES_HEADER
# XXX: after mocking time, make sure first line is the current timestamp
# assert stdout_lines[0] is current timestamp
# FIXME: this is now down in V3BwHeader
# v = 'version={}'.format(version)
# assert stdout_lines[1] == v
speed
=
7500
rtt
=
round
(
median
([
round
(
r
*
1000
)
for
r
in
result
.
rtts
]))
bw_line
=
'node_id=${} bw={} nick={} rtt={} time={}'
.
format
(
...
...
@@ -224,12 +200,6 @@ def test_generate_two_relays_success_noscale(
stdout_lines
=
captured
.
out
.
strip
().
split
(
'
\n
'
)
assert
len
(
stdout_lines
)
==
2
+
NUM_LINES_HEADER
# XXX: after mocking time, make sure first line is the current timestamp
# assert stdout_lines[0] is current timestamp
# FIXME: this is now down in V3BwHeader
# v = 'version={}'.format(version)
# assert stdout_lines[1] == v
r1_results
=
[
r
for
r
in
results
if
r
.
fingerprint
==
'A'
*
40
]
r1_time
=
round
(
max
([
r
.
time
for
r
in
r1_results
]))
r1_name
=
r1_results
[
0
].
nickname
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment