summaryrefslogtreecommitdiff
path: root/service/test/unit/config/test_sessions.py
blob: b5e4029dbbb21aec0abbafd9290d2016106b6d7f (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# -*- encoding:utf-8 -*-
#
# Copyright (c) 2014 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 patch
from mock import MagicMock
from twisted.internet import defer
from pixelated.config.sessions import LeapSession, SessionCache, LeapSessionFactory, SoledadWrongPassphraseException
from test.unit.bitmask_libraries.test_abstract_leap import AbstractLeapTest
from leap.common.events.catalog import KEYMANAGER_FINISHED_KEY_GENERATION
from leap.soledad.common.crypto import WrongMacError, UnknownMacMethodError


class SessionTest(AbstractLeapTest):

    def setUp(self):
        super(SessionTest, self).setUp()
        self.smtp_mock = MagicMock()

    @patch('pixelated.config.sessions.register')
    @patch('pixelated.config.sessions.Account')
    @defer.inlineCallbacks
    def test_background_jobs_are_started_during_initial_sync(self, *unused):
        mail_fetcher_mock = MagicMock()
        with patch('pixelated.config.sessions.reactor.callFromThread', new=_execute_func) as _:
            with patch.object(LeapSession, '_create_incoming_mail_fetcher', return_value=mail_fetcher_mock) as _:
                session = self._create_session()
                yield session.first_required_sync()
                mail_fetcher_mock.startService.assert_called_once()

    @patch('pixelated.config.sessions.register')
    @patch('pixelated.config.sessions.unregister')
    @patch('pixelated.config.sessions.Account')
    @defer.inlineCallbacks
    def test_that_close_stops_background_jobs(self, *unused):
        mail_fetcher_mock = MagicMock()
        with patch('pixelated.config.sessions.reactor.callFromThread', new=_execute_func) as _:
            with patch.object(LeapSession, '_create_incoming_mail_fetcher', return_value=mail_fetcher_mock) as _:
                session = self._create_session()
                yield session.first_required_sync()
                session.close()
                mail_fetcher_mock.stopService.assert_called_once()

    @patch('pixelated.config.sessions.register')
    @defer.inlineCallbacks
    def test_that_sync_defers_to_soledad(self, *unused):
        session = self._create_session()
        yield session.sync()
        self.soledad_session.sync.assert_called_once()

    @patch('pixelated.config.sessions.register')
    def test_session_registers_to_generated_keys(self, register_mock):
        email = 'someone@somedomain.tld'
        self.provider.address_for.return_value = email
        session = self._create_session()
        register_mock.assert_called_once_with(KEYMANAGER_FINISHED_KEY_GENERATION, session._set_fresh_account, uid=email, replace=True)

    @patch('pixelated.config.sessions.register')
    def test_close_unregisters_from_generate_keys_events(self, _):
        email = 'someone@somedomain.tld'
        self.provider.address_for.return_value = email
        session = self._create_session()

        with patch('pixelated.config.sessions.unregister') as unregister_mock:
            session.close()

            unregister_mock.assert_called_once_with(KEYMANAGER_FINISHED_KEY_GENERATION, uid=email)

    @patch('pixelated.config.sessions.register')
    def test_close_stops_soledad(self, _):
        email = 'someone@somedomain.tld'
        self.provider.address_for.return_value = email
        session = self._create_session()

        with patch('pixelated.config.sessions.unregister') as unregister_mock:
            session.close()

        self.soledad_session.close.assert_called_once_with()

    @patch('pixelated.config.sessions.register')
    def test_close_removes_session_from_cache(self, _):
        email = 'someone@somedomain.tld'
        self.provider.address_for.return_value = email
        session = self._create_session()

        key = SessionCache.session_key(self.provider, self.auth.username)
        SessionCache.remember_session(key, session)

        self.assertEqual(session, SessionCache.lookup_session(key))

        with patch('pixelated.config.sessions.unregister') as unregister_mock:
            session.close()

        self.assertIsNone(SessionCache.lookup_session(key))

    @patch('pixelated.config.sessions.register')
    def test_close_ends_account_session(self, _):
        account_mock = MagicMock()
        email = 'someone@somedomain.tld'
        self.provider.address_for.return_value = email
        session = self._create_session()
        session.account = account_mock

        with patch('pixelated.config.sessions.unregister') as unregister_mock:
            session.close()

        account_mock.end_session.assert_called_once_with()

    @patch('pixelated.config.sessions.register')
    def test_session_fresh_is_initially_false(self, _):
        session = self._create_session()

        self.assertFalse(session.fresh_account)

    @patch('pixelated.config.sessions.register')
    def test_session_sets_status_to_fresh_on_key_generation_event(self, _):
        session = self._create_session()
        self.provider.address_for.return_value = 'someone@somedomain.tld'

        session._set_fresh_account(None, 'someone@somedomain.tld')

        self.assertTrue(session.fresh_account)

    @patch('pixelated.config.sessions.register')
    def test_closed_session_not_reused(self, _):
        session = self._create_session()
        SessionCache.remember_session('somekey', session)
        session._is_closed = True

        result = SessionCache.lookup_session('somekey')

        self.assertIsNone(result)

    @patch('pixelated.config.sessions.register')
    def test_session_does_not_set_status_fresh_for_unkown_emails(self, _):
        session = self._create_session()
        self.provider.address_for.return_value = 'someone@somedomain.tld'

        session._set_fresh_account(None, 'another_email@somedomain.tld')

        self.assertFalse(session.fresh_account)

    def test_session_setup_soledad_with_utf8_characters(self):
        api_cert = MagicMock()
        leap_session_factory = LeapSessionFactory(self.provider)

        with patch('pixelated.config.sessions.threads.deferToThread') as deferToThreadMock:
            leap_session_factory.setup_soledad('self.token', u'self.uuid', 'Klünter', api_cert)
            deferToThreadMock.assert_called_once()
            args, kwargs = deferToThreadMock.call_args
            uuid_arg = args[1]
            pass_arg = kwargs['passphrase']
            self.assertIs(type(uuid_arg), str, "expected uuid argument to be a string")
            self.assertIs(type(pass_arg), unicode, "expected passphrase argument to be unicode")

    @defer.inlineCallbacks
    def test_sessions__setup_soledad__will_raise_wrong_passphrase_exception_on_errors(self):
        leap_session_factory = LeapSessionFactory(self.provider)

        with patch('pixelated.config.sessions.Soledad', side_effect=WrongMacError("oh no")):
            with self.assertRaises(SoledadWrongPassphraseException):
                yield leap_session_factory.setup_soledad('token', u'uuid', 'passphrase', None)

        with patch('pixelated.config.sessions.Soledad', side_effect=UnknownMacMethodError("oh no")):
            with self.assertRaises(SoledadWrongPassphraseException):
                yield leap_session_factory.setup_soledad('token', u'uuid', 'passphrase', None)

    def _create_session(self):
        return LeapSession(self.provider, self.auth, self.mail_store, self.soledad_session, self.keymanager, self.smtp_mock)


def _execute_func(func):
    func()