summaryrefslogtreecommitdiff
path: root/service/test/unit/bitmask_libraries/test_session.py
blob: 3aa8c8c7b63c56ae4dd573eba63e061e7fc87b6a (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
#
# 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 pixelated.bitmask_libraries.session import LeapSession
from test_abstract_leap import AbstractLeapTest
from twisted.internet import defer


class SessionTest(AbstractLeapTest):

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

    def tearDown(self):
        self.mail_fetcher_mock = MagicMock()

    @defer.inlineCallbacks
    def test_background_jobs_are_started_during_initial_sync(self):
        self.config.start_background_jobs = True

        with patch('pixelated.bitmask_libraries.session.reactor.callFromThread', new=_execute_func) as _:
            session = self._create_session()
            yield session.initial_sync()

            self.mail_fetcher_mock.startService.assert_called_once_with()

    def test_background_jobs_are_not_started(self):
        self.config.start_background_jobs = False

        with patch('pixelated.bitmask_libraries.session.reactor.callFromThread', new=_execute_func) as _:
            self._create_session()

            self.assertFalse(self.mail_fetcher_mock.start_loop.called)

    def test_that_close_stops_background_jobs(self):
        with patch('pixelated.bitmask_libraries.session.reactor.callFromThread', new=_execute_func) as _:
            session = self._create_session()

            session.close()

            self.mail_fetcher_mock.stopService.assert_called_once_with()

    def test_that_sync_deferes_to_soledad(self):
        session = self._create_session()

        session.sync()

        self.soledad_session.sync.assert_called_once_with()

    def _create_session(self):
        return LeapSession(self.provider, self.auth, self.soledad_session, self.nicknym, self.soledad_account,
                           self.mail_fetcher_mock, self.smtp_mock)


def _execute_func(func):
    func()