diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2016-02-09 10:29:52 +0100 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2016-02-09 13:08:11 +0100 |
commit | ea5d20bc1c8fa3a137cc54d8faa0294f5014d959 (patch) | |
tree | 1907fd8896bb3329e606af5c795c9224a9b0d175 | |
parent | 0a7cc921ed8dce021c76497cc436ed7878a6e2fb (diff) |
[tests] fix missing pycryptopp dependency and mock async calls
- leap_mail still uses pycryptopp and therefore still needs the
dependency
- Keymanager calls to async HTTPClient had not been mocked, causing
a test to fail
- fixed a pep8 warning
-rw-r--r-- | mail/pkg/requirements-latest.pip | 2 | ||||
-rw-r--r-- | mail/src/leap/mail/generator.py | 1 | ||||
-rw-r--r-- | mail/src/leap/mail/tests/__init__.py | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/mail/pkg/requirements-latest.pip b/mail/pkg/requirements-latest.pip index 846a319c..f561d4e0 100644 --- a/mail/pkg/requirements-latest.pip +++ b/mail/pkg/requirements-latest.pip @@ -1,5 +1,7 @@ --index-url https://pypi.python.org/simple/ +pycryptopp + --allow-external u1db --allow-unverified u1db --allow-external dirspec --allow-unverified dirspec -e 'git+https://github.com/pixelated-project/leap_pycommon.git@develop#egg=leap.common' diff --git a/mail/src/leap/mail/generator.py b/mail/src/leap/mail/generator.py index 28db8dab..7028817a 100644 --- a/mail/src/leap/mail/generator.py +++ b/mail/src/leap/mail/generator.py @@ -1,5 +1,6 @@ from email.generator import Generator as EmailGenerator + class Generator(EmailGenerator): """ Generates output from a Message object tree, keeping signatures. diff --git a/mail/src/leap/mail/tests/__init__.py b/mail/src/leap/mail/tests/__init__.py index 71452d20..8094c116 100644 --- a/mail/src/leap/mail/tests/__init__.py +++ b/mail/src/leap/mail/tests/__init__.py @@ -94,6 +94,8 @@ class TestCaseWithKeyManager(unittest.TestCase, BaseLeapTest): gpgbinary=self.GPG_BINARY_PATH) self._km._fetcher.put = Mock() self._km._fetcher.get = Mock(return_value=Response()) + self._km._async_client.request = Mock(return_value="") + self._km._async_client_pinned.request = Mock(return_value="") d1 = self._km.put_raw_key(PRIVATE_KEY, OpenPGPKey, ADDRESS) d2 = self._km.put_raw_key(PRIVATE_KEY_2, OpenPGPKey, ADDRESS_2) |