summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-03-17 17:39:46 -0300
committerKali Kaneko (leap communications) <kali@leap.se>2017-03-31 18:48:56 +0200
commit606289c43713414b0b9ffdb4f233362a8f214243 (patch)
treeba7e9361d62e0eefd1d3cff91a893da793039689 /tests
parentb553c65d1d114f2a3a4cb3282b4505838f537421 (diff)
[bug] Log error in case JSON parsing fails for decrypted doc
In addition to the UnicodeError exception in _process_decrypted_doc function, we have added ValueError to the exception list so that we can catch any error in JSON parsing, specially a 'NODATA' error that we were getting with some of the emails. This is in reference to issues - https://github.com/pixelated/pixelated-user-agent/issues/908 & https://github.com/pixelated/pixelated-user-agent/issues/981 - to ignore documents that have this problem and not have Soledad try to sync them again and again. with @deniscostadsc
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/mail/incoming/test_incoming_mail.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/tests/integration/mail/incoming/test_incoming_mail.py b/tests/integration/mail/incoming/test_incoming_mail.py
index daef0578..3633c73e 100644
--- a/tests/integration/mail/incoming/test_incoming_mail.py
+++ b/tests/integration/mail/incoming/test_incoming_mail.py
@@ -42,6 +42,7 @@ from leap.bitmask.mail.adaptors.soledad import cleanup_deferred_locks
from leap.bitmask.mail.adaptors.soledad import SoledadMailAdaptor
from leap.bitmask.mail.mail import MessageCollection
from leap.bitmask.mail.mailbox_indexer import MailboxIndexer
+from leap.bitmask.mail import utils
from leap.bitmask.mail.incoming.service import IncomingMail
from leap.bitmask.mail.rfc3156 import MultipartEncrypted, PGPEncrypted
@@ -326,7 +327,7 @@ subject: independence of cyberspace
d.addCallback(add_decrypted_header_called)
return d
- def test_log_error_if_decrypt_fails(self):
+ def testLogErrorIfDecryptFails(self):
def assert_failure(_):
mock_logger_error.assert_any_call('_decrypt_doc: '
@@ -346,6 +347,29 @@ subject: independence of cyberspace
d.addCallback(assert_failure)
return d
+ def testFlagMessageOnBadJsonWhileDecrypting(self):
+ doc = SoledadDocument()
+ doc.doc_id = '1'
+ doc.content = {'_enc_json': ''}
+
+ err = ValueError('No JSON object could be decoded')
+
+ def assert_failure():
+ mock_logger_error.assert_any_call(
+ 'Error while decrypting 1')
+ mock_logger_error.assert_any_call(
+ 'No JSON object could be decoded')
+ self.assertEquals(doc.content['errdecr'], True)
+
+ with patch.object(Logger, 'error') as mock_logger_error:
+ with patch.object(utils, 'json_loads') as mock_json_loader:
+ self.fetcher._update_incoming_message = Mock()
+ mock_json_loader.side_effect = err
+
+ self.fetcher._process_decrypted_doc(doc, '')
+
+ assert_failure()
+
def testValidateSignatureFromEncryptedEmailFromAppleMail(self):
enc_signed_file = os.path.join(
HERE, 'rfc822.multi-encrypt-signed.message')