summaryrefslogtreecommitdiffstats
path: root/deluge/tests/test_web_auth.py
blob: 39d66c1c150c1040798c54cb03f43ba97e49e2d3 (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
#
# 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.
#

from unittest.mock import patch

from deluge.ui.web import auth


class MockConfig:
    def __init__(self, config):
        self.config = config

    def __getitem__(self, key):
        return self.config[key]

    def __setitem__(self, key, value):
        self.config[key] = value


class TestWebAuth:
    @patch('deluge.ui.web.auth.JSONComponent.__init__', return_value=None)
    def test_change_password(self, mock_json):
        config = MockConfig(
            {
                'pwd_sha1': '8d8ff487626141d2b91025901d3ab57211180b48',
                'pwd_salt': '7555d757710158655bd1646e207dee21a89e9226',
            }
        )
        webauth = auth.Auth(config)
        assert webauth.change_password('deluge', 'deluge_new')