summaryrefslogtreecommitdiffstats
path: root/deluge/tests/test_error.py
blob: a87d6a2d8f092daa23cffa2a222c0d0723a656aa (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
31
32
33
34
35
36
37
38
39
#
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
# the additional special exception to link portions of this program with the OpenSSL library.
# See LICENSE for more details.
#

import deluge.error


class TestError:
    def test_deluge_error(self):
        msg = 'Some message'
        e = deluge.error.DelugeError(msg)
        assert str(e) == msg
        from twisted.internet.defer import DebugInfo

        del DebugInfo.__del__  # Hides all errors
        assert e._args == (msg,)
        assert e._kwargs == {}

    def test_incompatible_client(self):
        version = '1.3.6'
        e = deluge.error.IncompatibleClient(version)
        assert (
            str(e) == 'Your deluge client is not compatible with the daemon. '
            'Please upgrade your client to %s' % version
        )

    def test_not_authorized_error(self):
        current_level = 5
        required_level = 10
        e = deluge.error.NotAuthorizedError(current_level, required_level)
        assert str(e) == 'Auth level too low: %d < %d' % (current_level, required_level)

    def test_bad_login_error(self):
        message = 'Login failed'
        username = 'deluge'
        e = deluge.error.BadLoginError(message, username)
        assert str(e) == message