summaryrefslogtreecommitdiff
path: root/service/test/bitmask_libraries/abstract_leap_test.py
blob: 007fe06a64a1a7685e1a84759eb0d2503dc04efe (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
import os
import tempfile
import unittest
from uuid import uuid4
from mock import Mock, MagicMock


class AbstractLeapTest(unittest.TestCase):
        uuid = str(uuid4())
        session_id = str(uuid4())
        token = str(uuid4())

        leap_home = os.path.join(tempfile.mkdtemp(), 'leap')

        config = Mock(leap_home=leap_home, ca_cert_bundle='/some/path/to/ca_cert', gpg_binary='/path/to/gpg')
        provider = Mock(config=config, server_name='some-server.test', domain='some-server.test',
                        api_uri='https://api.some-server.test:4430', api_version='1')
        soledad = Mock()
        soledad_session = Mock(soledad=soledad)
        srp_session = Mock(user_name='test_user', api_server_name='some-server.test', uuid=uuid, session_id=session_id, token=token)

        nicknym = MagicMock()

        soledad_account = MagicMock()

        mail_fetcher_mock = MagicMock()