mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
util_test_tools.init_repo parameter fix
This commit is contained in:
parent
cd805e528d
commit
4c2f878870
2 changed files with 4 additions and 4 deletions
|
|
@ -88,7 +88,7 @@ def test_indefinite_freeze_attack(TUF=False):
|
|||
|
||||
try:
|
||||
# Setup.
|
||||
root_repo, url, server_proc, keyids = util_test_tools.init_repo(tuf=TUF)
|
||||
root_repo, url, server_proc, keyids = util_test_tools.init_repo(using_tuf=TUF)
|
||||
reg_repo = os.path.join(root_repo, 'reg_repo')
|
||||
tuf_repo = os.path.join(root_repo, 'tuf_repo')
|
||||
metadata_dir = os.path.join(tuf_repo, 'metadata')
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ def test_mix_and_match_attack(TUF=False):
|
|||
try:
|
||||
# Setup / Stage 1
|
||||
# ---------------
|
||||
root_repo, url, server_proc, keyids = util_test_tools.init_repo(tuf=TUF)
|
||||
root_repo, url, server_proc, keyids = util_test_tools.init_repo(using_tuf=TUF)
|
||||
reg_repo = os.path.join(root_repo, 'reg_repo')
|
||||
downloads = os.path.join(root_repo, 'downloads')
|
||||
evil_dir = tempfile.mkdtemp(dir=root_repo)
|
||||
|
|
@ -166,8 +166,8 @@ def test_mix_and_match_attack(TUF=False):
|
|||
_download(url=url_to_file, filename=downloaded_file, using_tuf=TUF)
|
||||
except tuf.NoWorkingMirrorError as errors:
|
||||
for mirror_url, mirror_error in errors.mirror_errors.iteritems():
|
||||
if type(mirror_error) == tuf.BadHashError:
|
||||
print 'Catched a Bad Hash Error!'
|
||||
if type(mirror_error) == tuf.BadHashError:
|
||||
print 'Catched a Bad Hash Error!'
|
||||
|
||||
# Check whether the attack succeeded by inspecting the content of the
|
||||
# update. The update should contain 'Test NOT A'.
|
||||
|
|
|
|||
Loading…
Reference in a new issue