diff options
author | NavaL <ayoyo@thoughtworks.com> | 2016-02-12 14:53:41 -0200 |
---|---|---|
committer | NavaL <ayoyo@thoughtworks.com> | 2016-02-12 14:53:41 -0200 |
commit | 077e4100160ba58ee2abf91c0572ca1c0962277e (patch) | |
tree | 336ba2bc1484d423f5f807247f13482915c91140 /service/test | |
parent | 78925e0332bbc41ed37e27d506be192abdb7124e (diff) |
Revert "Revert "Issue #549 - Implemented remove attachment""
This reverts commit 3c6b905d7e5b78e521b2e7692e5e32b7b0c226bc.
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/unit/adapter/mailstore/test_leap_attachment_store.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/service/test/unit/adapter/mailstore/test_leap_attachment_store.py b/service/test/unit/adapter/mailstore/test_leap_attachment_store.py index 4e9b56b1..f1bd8528 100644 --- a/service/test/unit/adapter/mailstore/test_leap_attachment_store.py +++ b/service/test/unit/adapter/mailstore/test_leap_attachment_store.py @@ -116,6 +116,21 @@ class TestLeapAttachmentStore(TestCase): except ValueError: pass + @defer.inlineCallbacks + def test_soledad_delete_doc_is_called_when_deleting_an_attachment(self): + attachment_id = '1B0A9AAD9E153D24265395203C53884506ABA276394B9FEC02B214BF9E77E48E' + doc = SoledadDocument(json=json.dumps({'content_type': 'foo/bar', 'raw': 'quoted-printable', + 'phash': attachment_id, + 'content_transfer_encoding': ''})) + + when(self.soledad).get_from_index('by-type-and-payloadhash', 'cnt', attachment_id).thenReturn(defer.succeed([doc])) + when(self.soledad).delete_doc(doc).thenReturn(defer.succeed(None)) + + store = LeapAttachmentStore(self.soledad) + yield store.delete_attachment(attachment_id) + + verify(self.soledad).delete_doc(doc) + def _mock_get_mailbox(self, mailbox_name, create_new_uuid=False): mbox_uuid = self.mbox_uuid if not create_new_uuid else str(uuid4()) when(self.soledad).list_indexes().thenReturn(defer.succeed(MAIL_INDEXES)).thenReturn( |