Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caucase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
caucase
Commits
9c3fc434
Commit
9c3fc434
authored
Jul 16, 2018
by
Vincent Pelletier
Committed by
Vincent Pelletier
Jul 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: Exclude helper functions and error paths from coverage.
parent
d69c758a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
caucase/test.py
caucase/test.py
+18
-18
No files found.
caucase/test.py
View file @
9c3fc434
...
...
@@ -51,7 +51,7 @@ _cryptography_backend = default_backend()
NOT_CAUCASE_OID
=
'2.25.285541874270823339875695650038637483518'
def
canConnect
(
address
):
def
canConnect
(
address
):
# pragma: no cover
"""
Returns True if a connection can be established to given address, False
otherwise.
...
...
@@ -64,7 +64,7 @@ def canConnect(address):
raise
return
True
def
retry
(
callback
,
try_count
=
200
,
try_delay
=
0.1
):
def
retry
(
callback
,
try_count
=
200
,
try_delay
=
0.1
):
# pragma: no cover
"""
Poll <callback> every <try_delay> for <try_count> times or until it returns
a true value.
...
...
@@ -170,7 +170,7 @@ class UntilEvent(object):
"""
Retrieve current action. Not very useful.
"""
return
self
.
_action
return
self
.
_action
# pragma: no cover
@
action
.
setter
def
action
(
self
,
value
):
...
...
@@ -178,7 +178,7 @@ class UntilEvent(object):
Change the action which will happen on next event wakeup.
"""
if
value
not
in
(
ON_EVENT_RAISE
,
ON_EVENT_EXPIRE
):
raise
ValueError
raise
ValueError
# pragma: no cover
self
.
_action
=
value
def
wait
(
self
,
timeout
=
10
,
clear
=
False
):
...
...
@@ -286,7 +286,7 @@ class CaucaseTest(unittest.TestCase):
),
)
except
SystemExit
,
e
:
return
e
.
code
return
e
.
code
# pragma: no cover
except
:
# pylint: disable=bare-except
return
1
return
0
...
...
@@ -317,7 +317,7 @@ class CaucaseTest(unittest.TestCase):
self
.
assertTrue
(
server
.
is_alive
(),
'caucased crashed on startup'
)
or
canConnect
((
parsed_url
.
hostname
,
parsed_url
.
port
))
),
):
):
# pragma: no cover
self
.
_stopServer
()
raise
AssertionError
(
'Could not connect to %r after 1 second'
%
(
self
.
_caucase_url
,
...
...
@@ -330,7 +330,7 @@ class CaucaseTest(unittest.TestCase):
server
=
self
.
_server
self
.
_server_event
.
set
()
server
.
join
(
2
)
if
server
.
is_alive
():
if
server
.
is_alive
():
# pragma: no cover
raise
ValueError
(
'%r does not wish to die'
%
(
server
,
))
def
_runClient
(
self
,
*
argv
):
...
...
@@ -400,7 +400,7 @@ class CaucaseTest(unittest.TestCase):
)
while
True
:
row
=
c
.
fetchone
()
if
row
is
None
:
if
row
is
None
:
# pragma: no cover
raise
Exception
(
'CA with serial %r not found'
%
(
serial
,
))
crt
=
utils
.
load_ca_certificate
(
row
[
'crt'
].
encode
(
'ascii'
))
if
crt
.
serial_number
==
serial
:
...
...
@@ -847,7 +847,7 @@ class CaucaseTest(unittest.TestCase):
client
.
createCertificateSigningRequest
(
'Not actually a CSR'
)
except
CaucaseError
,
e
:
self
.
assertEqual
(
e
.
args
[
0
],
400
,
e
)
else
:
else
:
# pragma: no cover
raise
AssertionError
(
'Did not raise CaucaseError(400, ...)'
)
def
testUpdateUser
(
self
):
...
...
@@ -1226,7 +1226,7 @@ class CaucaseTest(unittest.TestCase):
# reached its certificate auto-approval limit.
os
.
unlink
(
self
.
_server_key
)
self
.
_startServer
()
if
not
retry
(
lambda
:
os
.
path
.
exists
(
self
.
_server_key
)):
if
not
retry
(
lambda
:
os
.
path
.
exists
(
self
.
_server_key
)):
# pragma: no cover
raise
AssertionError
(
'%r was not recreated within 1 second'
%
(
self
.
_server_key
,
))
...
...
@@ -1270,7 +1270,7 @@ class CaucaseTest(unittest.TestCase):
self
.
_startServer
()
if
not
retry
(
lambda
:
open
(
self
.
_server_key
).
read
()
!=
reference_server_key
,
):
):
# pragma: no cover
raise
AssertionError
(
'Server did not renew its key pair within 1 second'
)
# But user still trusts the server
self
.
_runClient
(
...
...
@@ -1322,7 +1322,7 @@ class CaucaseTest(unittest.TestCase):
raise
ValueError
(
'Some generic exception'
)
@
staticmethod
def
_placeholder
(
_
):
def
_placeholder
(
_
):
# pragma: no cover
"""
Placeholder methods, for when method lookup happens before noticing
issues in the query.
...
...
@@ -1516,7 +1516,7 @@ class CaucaseTest(unittest.TestCase):
# Note: backup could have triggered between first and second user's key
# creation. We need it to be signed by both keys, so delete any backup file
# which would exist at this point.
for
backup_path
in
glob
.
glob
(
backup_glob
):
for
backup_path
in
glob
.
glob
(
backup_glob
):
# pragma: no cover
os
.
unlink
(
backup_path
)
before_backup
=
list
(
SQLite3Storage
(
self
.
_server_db
,
...
...
@@ -1524,7 +1524,7 @@ class CaucaseTest(unittest.TestCase):
).
dumpIterator
())
self
.
_startServer
(
'--backup-directory'
,
self
.
_server_backup_path
)
backup_path_list
=
retry
(
lambda
:
glob
.
glob
(
backup_glob
))
if
not
backup_path_list
:
if
not
backup_path_list
:
# pragma: no cover
raise
AssertionError
(
'Backup file not created after 1 second'
)
backup_path
,
=
backup_path_list
self
.
_stopServer
()
...
...
@@ -1582,7 +1582,7 @@ class CaucaseTest(unittest.TestCase):
if
row
.
startswith
(
CRT_INSERT
):
crt_list
.
append
(
row
)
continue
if
row
.
startswith
(
REV_INSERT
):
if
row
.
startswith
(
REV_INSERT
):
# pragma: no cover
if
rev_found
:
raise
AssertionError
(
'Unexpected revocation found'
)
continue
...
...
@@ -1624,7 +1624,7 @@ class CaucaseTest(unittest.TestCase):
os
.
unlink
(
backup_path
)
self
.
_startServer
(
'--backup-directory'
,
self
.
_server_backup_path
)
backup_path_list
=
retry
(
lambda
:
glob
.
glob
(
backup_glob
))
if
not
backup_path_list
:
if
not
backup_path_list
:
# pragma: no cover
raise
AssertionError
(
'Backup file not created after 1 second'
)
backup_path
,
=
glob
.
glob
(
backup_glob
)
cli
.
key_id
([
...
...
@@ -1649,7 +1649,7 @@ class CaucaseTest(unittest.TestCase):
del
db
self
.
_startServer
(
'--backup-directory'
,
self
.
_server_backup_path
)
backup_path_list
=
retry
(
lambda
:
glob
.
glob
(
backup_glob
),
try_count
=
300
)
if
not
backup_path_list
:
if
not
backup_path_list
:
# pragma: no cover
raise
AssertionError
(
'Backup file took too long to be created'
)
backup_path
,
=
glob
.
glob
(
backup_glob
)
cli
.
key_id
([
...
...
@@ -2004,5 +2004,5 @@ class CaucaseTest(unittest.TestCase):
self
.
assertEqual
(
os
.
stat
(
self
.
_server_db
).
st_mode
&
0o777
,
0o600
)
self
.
assertEqual
(
os
.
stat
(
self
.
_server_key
).
st_mode
&
0o777
,
0o600
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
# pragma: no cover
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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