1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
import unittest
from aprslib.exceptions import *
class ExceptionCorrectness(unittest.TestCase):
def test_all(self):
# GenericErrror
excpInst = GenericError("test")
self.assertIsInstance(excpInst, Exception)
self.assertEqual(str(excpInst), "test")
# UnknownFormat
excpInst = UnknownFormat("test", "packet")
self.assertIsInstance(excpInst, GenericError)
self.assertEqual(str(excpInst), "test")
self.assertEqual(excpInst.packet, "packet")
# ParseError
excpInst = ParseError("test", "packet")
self.assertIsInstance(excpInst, GenericError)
self.assertEqual(str(excpInst), "test")
self.assertEqual(excpInst.packet, "packet")
# LoginError
excpInst = LoginError("test")
self.assertIsInstance(excpInst, GenericError)
self.assertEqual(str(excpInst), "test")
# ConnectionError
excpInst = ConnectionError("test")
self.assertIsInstance(excpInst, GenericError)
# ConnectionDrop
excpInst = ConnectionDrop("test")
self.assertIsInstance(excpInst, GenericError)
|