diff options
| author | Kali Kaneko <kali@leap.se> | 2014-08-21 13:58:15 -0500 | 
|---|---|---|
| committer | Kali Kaneko <kali@leap.se> | 2014-08-21 13:58:15 -0500 | 
| commit | 0bb58fd37cea2bf77408ee89b8df2489d60eab90 (patch) | |
| tree | 6e5ccd0bc4c2aae4efa53b924b9d09ed97e01719 /mail/src | |
| parent | 69b4ec28e0791e338e5c5bb03296425c9e467253 (diff) | |
| parent | 592b7cbc561af91fed8e7d02b869ebe2f910b585 (diff) | |
Merge remote-tracking branch 'bwagner-github/fix_tests_on_mac' into develop
Diffstat (limited to 'mail/src')
| -rw-r--r-- | mail/src/leap/mail/imap/tests/test_imap.py | 2 | ||||
| -rw-r--r-- | mail/src/leap/mail/smtp/tests/__init__.py | 10 | 
2 files changed, 9 insertions, 3 deletions
| diff --git a/mail/src/leap/mail/imap/tests/test_imap.py b/mail/src/leap/mail/imap/tests/test_imap.py index fd88440..e87eb7b 100644 --- a/mail/src/leap/mail/imap/tests/test_imap.py +++ b/mail/src/leap/mail/imap/tests/test_imap.py @@ -238,7 +238,7 @@ class IMAP4HelperMixin(BaseLeapTest):          os.environ["PATH"] = cls.old_path          os.environ["HOME"] = cls.old_home          # safety check -        assert cls.tempdir.startswith('/tmp/leap_tests-') +        assert 'leap_tests-' in cls.tempdir          shutil.rmtree(cls.tempdir)      def setUp(self): diff --git a/mail/src/leap/mail/smtp/tests/__init__.py b/mail/src/leap/mail/smtp/tests/__init__.py index 1459cea..dc24293 100644 --- a/mail/src/leap/mail/smtp/tests/__init__.py +++ b/mail/src/leap/mail/smtp/tests/__init__.py @@ -21,6 +21,7 @@ Base classes and keys for SMTP gateway tests.  """  import os +import distutils.spawn  import shutil  import tempfile  from mock import Mock @@ -39,9 +40,14 @@ from leap.keymanager import (  from leap.common.testing.basetest import BaseLeapTest +def _find_gpg(): +    gpg_path = distutils.spawn.find_executable('gpg') +    return os.path.realpath(gpg_path) if gpg_path is not None else "/usr/bin/gpg" +     +  class TestCaseWithKeyManager(BaseLeapTest): -    GPG_BINARY_PATH = '/usr/bin/gpg' +    GPG_BINARY_PATH = _find_gpg()      def setUp(self):          # mimic BaseLeapTest.setUpClass behaviour, because this is deprecated @@ -148,7 +154,7 @@ class TestCaseWithKeyManager(BaseLeapTest):          os.environ["PATH"] = self.old_path          os.environ["HOME"] = self.old_home          # safety check -        assert self.tempdir.startswith('/tmp/leap_tests-') +        assert 'leap_tests-' in self.tempdir          shutil.rmtree(self.tempdir) | 
