summaryrefslogtreecommitdiff
path: root/service/test/unit/adapter/mailstore/test_leap_mailstore.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-09-01 08:58:04 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-09-01 08:58:04 +0200
commit9d2a3e2dff6c986fc0a6a066da038130db6e849b (patch)
tree504dbe3b6da3c0c701f10133485b27b6c19c2e89 /service/test/unit/adapter/mailstore/test_leap_mailstore.py
parentfd8d3cc1da5079c931a7ad897bff047509f27a40 (diff)
Move TestLeapMail into its own file
- Issue #360
Diffstat (limited to 'service/test/unit/adapter/mailstore/test_leap_mailstore.py')
-rw-r--r--service/test/unit/adapter/mailstore/test_leap_mailstore.py84
1 files changed, 0 insertions, 84 deletions
diff --git a/service/test/unit/adapter/mailstore/test_leap_mailstore.py b/service/test/unit/adapter/mailstore/test_leap_mailstore.py
index 79b672bc..c173d87c 100644
--- a/service/test/unit/adapter/mailstore/test_leap_mailstore.py
+++ b/service/test/unit/adapter/mailstore/test_leap_mailstore.py
@@ -20,7 +20,6 @@ import json
from uuid import uuid4
from email.parser import Parser
import os
-from leap.mail.utils import CaseInsensitiveDict
from leap.soledad.common.document import SoledadDocument
from leap.mail.adaptors.soledad_indexes import MAIL_INDEXES
from twisted.internet.defer import FirstError
@@ -37,89 +36,6 @@ from pixelated.adapter.mailstore import underscore_uuid
from pixelated.adapter.mailstore.leap_mailstore import LeapMailStore, LeapMail, AttachmentInfo
-class TestLeapMail(TestCase):
- def test_leap_mail(self):
- mail = LeapMail('', 'INBOX', {'From': 'test@example.test', 'Subject': 'A test Mail', 'To': 'receiver@example.test'})
-
- self.assertEqual('test@example.test', mail.from_sender)
- self.assertEqual(['receiver@example.test'], mail.to)
- self.assertEqual('A test Mail', mail.subject)
-
- def test_email_addresses_in_to_are_split_into_a_list(self):
- mail = LeapMail('', 'INBOX', {'To': 'first@example.test,second@example.test'})
-
- self.assertEqual(['first@example.test', 'second@example.test'], mail.headers['To'])
-
- def test_email_addresses_in_cc_are_split_into_a_list(self):
- mail = LeapMail('', 'INBOX', {'Cc': 'first@example.test,second@example.test'})
-
- self.assertEqual(['first@example.test', 'second@example.test'], mail.headers['Cc'])
-
- def test_email_addresses_in_bcc_are_split_into_a_list(self):
- mail = LeapMail('', 'INBOX', {'Bcc': 'first@example.test,second@example.test'})
-
- self.assertEqual(['first@example.test', 'second@example.test'], mail.headers['Bcc'])
-
- def test_email_addresses_might_be_empty_array(self):
- mail = LeapMail('', 'INBOX', {'Cc': None})
-
- self.assertEqual([], mail.headers['Cc'])
-
- def test_as_dict(self):
- mail = LeapMail('doc id', 'INBOX', {'From': 'test@example.test', 'Subject': 'A test Mail', 'To': 'receiver@example.test,receiver2@other.test'}, ('foo', 'bar'))
-
- expected = {
- 'header': {
- 'from': 'test@example.test',
- 'subject': 'A test Mail',
- 'to': ['receiver@example.test', 'receiver2@other.test'],
-
- },
- 'ident': 'doc id',
- 'mailbox': 'inbox',
- 'tags': {'foo', 'bar'},
- 'status': [],
- 'body': None,
- 'textPlainBody': None,
- 'replying': {'all': {'cc-field': [],
- 'to-field': ['receiver@example.test',
- 'receiver2@other.test',
- 'test@example.test']},
- 'single': 'test@example.test'},
- 'attachments': []
- }
-
- self.assertEqual(expected, mail.as_dict())
-
- def test_as_dict_with_body(self):
- body = 'some body content'
- mail = LeapMail('doc id', 'INBOX', {'From': 'test@example.test', 'Subject': 'A test Mail', 'To': 'receiver@example.test'}, ('foo', 'bar'), body=body)
-
- self.assertEqual(body, mail.as_dict()['body'])
-
- def test_as_dict_with_attachments(self):
- mail = LeapMail('doc id', 'INBOX', attachments=[AttachmentInfo('id', 'name', 'encoding')])
-
- self.assertEqual([{'ident': 'id', 'name': 'name', 'encoding': 'encoding'}],
- mail.as_dict()['attachments'])
-
- def test_raw_constructed_by_headers_and_body(self):
- body = 'some body content'
- mail = LeapMail('doc id', 'INBOX', {'From': 'test@example.test', 'Subject': 'A test Mail', 'To': 'receiver@example.test'}, ('foo', 'bar'), body=body)
-
- result = mail.raw
-
- expected_raw = 'To: receiver@example.test\nFrom: test@example.test\nSubject: A test Mail\n\nsome body content'
- self.assertEqual(expected_raw, result)
-
- def test_headers_none_recipients_are_converted_to_empty_array(self):
- mail = LeapMail('id', 'INBOX', {'To': None, 'Cc': None, 'Bcc': None})
-
- self.assertEquals([], mail.headers['To'])
- self.assertEquals([], mail.headers['Cc'])
- self.assertEquals([], mail.headers['Bcc'])
-
-
class TestLeapMailStore(TestCase):
def setUp(self):
self.soledad = mock()