summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_exceptions.py
blob: ae869f46c983374974a3fb52fe68afc3747e4a58 (plain)
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
from unittest import TestCase

import pytest

class ExceptionsTestCase(TestCase):

    def _get(self):
        from kazoo import exceptions
        return exceptions

    def test_backwards_alias(self):
        module = self._get()
        assert hasattr(module, 'NoNodeException')
        assert module.NoNodeException is module.NoNodeError

    def test_exceptions_code(self):
        module = self._get()
        exc_8 = module.EXCEPTIONS[-8]
        assert isinstance(exc_8(), module.BadArgumentsError)

    def test_invalid_code(self):
        module = self._get()
        with pytest.raises(RuntimeError):
            module.EXCEPTIONS.__getitem__(666)

    def test_exceptions_construction(self):
        module = self._get()
        exc = module.EXCEPTIONS[-101]()
        assert type(exc) is module.NoNodeError
        assert exc.args == ()