File: test_exceptions.py

package info (click to toggle)
python-aprslib 0.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 352 kB
  • sloc: python: 2,973; makefile: 216
file content (43 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download
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)