2017-07-13 21:04:15 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
2017-11-30 18:33:11 +00:00
|
|
|
# Copyright 2014 - 2017, New York University and the TUF contributors
|
|
|
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
|
|
2017-07-13 21:04:15 +00:00
|
|
|
"""
|
|
|
|
|
<Program Name>
|
|
|
|
|
test_exceptions.py
|
|
|
|
|
|
|
|
|
|
<Author>
|
|
|
|
|
Vladimir Diaz
|
|
|
|
|
|
|
|
|
|
<Started>
|
|
|
|
|
July 13, 2017.
|
|
|
|
|
|
|
|
|
|
<Copyright>
|
2018-02-05 16:31:19 +00:00
|
|
|
See LICENSE-MIT OR LICENSE for licensing information.
|
2017-07-13 21:04:15 +00:00
|
|
|
|
|
|
|
|
<Purpose>
|
|
|
|
|
Test cases for exceptions.py (mainly the exceptions defined there).
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# Help with Python 3 compatibility, where the print statement is a function, an
|
|
|
|
|
# implicit relative import is invalid, and the '/' operator performs true
|
|
|
|
|
# division. Example: print 'hello world' raises a 'SyntaxError' exception.
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
from __future__ import division
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
import tuf.exceptions
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger('test_exceptions')
|
|
|
|
|
|
|
|
|
|
class TestExceptions(unittest.TestCase):
|
|
|
|
|
def setUp(self):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_bad_signature_error(self):
|
|
|
|
|
bad_signature_error = tuf.exceptions.BadSignatureError('bad sig')
|
|
|
|
|
logger.error(bad_signature_error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_bad_hash_error(self):
|
|
|
|
|
bad_hash_error = tuf.exceptions.BadHashError('1234', '5678')
|
|
|
|
|
logger.error(bad_hash_error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Run the unit tests.
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
unittest.main()
|