summaryrefslogtreecommitdiff
path: root/service/test/unit/bitmask_libraries/test_smtp_client_certificate.py
blob: 1a57487a44746219d43e3ceb56e9fc6f2d213e76 (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
#
# Copyright (c) 2016 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/>.
import os
import unittest
import tempdir
from pixelated.bitmask_libraries import session
from leap.srp_session import SRPSession
from mockito import mock, unstub, when, verify, never, any as ANY

from pixelated.bitmask_libraries.session import SmtpClientCertificate


class TestSmtpClientCertificate(unittest.TestCase):

    def setUp(self):
        self.tmp_dir = tempdir.TempDir()
        self.provider = mock()
        self.provider.domain = 'some-provider.tld'
        self.auth = SRPSession('username', 'token', 'uuid', 'session_id')
        self.pem_path = os.path.join(self.tmp_dir.name, 'providers', 'some-provider.tld', 'keys', 'client', 'smtp.pem')

    def tearDown(self):
        self.tmp_dir.dissolve()
        unstub()

    def test_download_certificate(self):
        downloader = mock()
        when(session).SmtpCertDownloader(self.provider, self.auth).thenReturn(downloader)

        cert = SmtpClientCertificate(self.provider, self.auth, self.tmp_dir.name)
        result = cert.cert_path()

        self.assertEqual(self.pem_path, result)
        verify(downloader).download_to(self.pem_path)

    def test_skip_download_if_already_downloaded(self):

        downloader = mock()
        when(session).SmtpCertDownloader(self.provider, self.auth).thenReturn(downloader)
        when(os.path).exists(self.pem_path).thenReturn(True)

        cert = SmtpClientCertificate(self.provider, self.auth, self.tmp_dir.name)
        result = cert.cert_path()

        self.assertEqual(self.pem_path, result)
        verify(downloader, never).download_to(ANY())