summaryrefslogtreecommitdiff
path: root/service/test/unit/resources/test_account_recovery_resource.py
blob: 4e26fc5bff920a39c13b07caf14328f74a71ad28 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#
# Copyright (c) 2017 ThoughtWorks, Inc.
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pixelated is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.

from mock import MagicMock
from twisted.trial import unittest
from twisted.web.test.requesthelper import DummyRequest
from twisted.internet import defer

from pixelated.resources.account_recovery_resource import AccountRecoveryResource, InvalidPasswordError
from test.unit.resources import DummySite


class TestAccountRecoveryResource(unittest.TestCase):
    def setUp(self):
        self.services_factory = MagicMock()
        self.resource = AccountRecoveryResource(self.services_factory)
        self.web = DummySite(self.resource)

    def test_get(self):
        request = DummyRequest(['/account-recovery'])
        request.method = 'GET'
        d = self.web.get(request)

        def assert_200_when_user_logged_in(_):
            self.assertEqual(200, request.responseCode)
            self.assertIn("DOCTYPE html", request.written[0])

        d.addCallback(assert_200_when_user_logged_in)
        return d

    def test_post_returns_successfully(self):
        request = DummyRequest(['/account-recovery'])
        request.method = 'POST'
        self.resource._handle_post = MagicMock(return_value=defer.succeed(None))

        d = self.web.get(request)

        def assert_successful_response(_):
            self.assertEqual(200, request.responseCode)

        d.addCallback(assert_successful_response)
        return d

    def test_post_returns_failure(self):
        request = DummyRequest(['/account-recovery'])
        request.method = 'POST'
        self.resource._handle_post = MagicMock(return_value=defer.fail(InvalidPasswordError))

        d = self.web.get(request)

        def assert_error_response(_):
            self.assertEqual(500, request.responseCode)

        d.addCallback(assert_error_response)
        return d

    def test_handle_post_successfully(self):
        request = MagicMock()
        self.resource._get_post_form = MagicMock()
        self.resource._validate_password = MagicMock(return_value=True)

        d = self.resource._handle_post(request)

        def assert_successful(success):
            self.assertEqual(success, 'Done!')

        d.addCallback(assert_successful)
        return d

    @defer.inlineCallbacks
    def test_handle_post_failed(self):
        request = MagicMock()
        self.resource._get_post_form = MagicMock()
        self.resource._validate_password = MagicMock(return_value=False)

        with self.assertRaises(InvalidPasswordError):
            yield self.resource._handle_post(request)

    def test_get_post_form(self):
        request = MagicMock()
        request.content.getvalue.return_value = '{"userCode": "abc", "password": "123", "confirmPassword": "456"}'
        form = self.resource._get_post_form(request)

        self.assertEqual(form.get('userCode'), 'abc')
        self.assertEqual(form.get('password'), '123')
        self.assertEqual(form.get('confirmPassword'), '456')

    def test_validate_password_successfully(self):
        self.assertTrue(self.resource._validate_password('12345678', '12345678'))

    def test_validate_password_failed_by_confirmation(self):
        self.assertFalse(self.resource._validate_password('12345678', '1234'))

    def test_validate_password_failed_by_length(self):
        self.assertFalse(self.resource._validate_password('1234', '1234'))