summaryrefslogtreecommitdiff
path: root/src/leap/mail/tests/test_mail.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-01-15 15:50:20 -0400
committerKali Kaneko <kali@leap.se>2015-02-11 14:05:43 -0400
commit26034f854a3b1cc4a39b2e46b57140af27a08ddc (patch)
tree7af47fccd3e9cff2b04ab1222a0af387975d68a4 /src/leap/mail/tests/test_mail.py
parent338a5d6c1e0d6bae05d2756eb6e4c20b38d444d9 (diff)
update mail/imap tests
Diffstat (limited to 'src/leap/mail/tests/test_mail.py')
-rw-r--r--src/leap/mail/tests/test_mail.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/leap/mail/tests/test_mail.py b/src/leap/mail/tests/test_mail.py
index 2c4b919..9bc553f 100644
--- a/src/leap/mail/tests/test_mail.py
+++ b/src/leap/mail/tests/test_mail.py
@@ -17,8 +17,10 @@
"""
Tests for the mail module.
"""
-import time
import os
+import time
+import uuid
+
from functools import partial
from email.parser import Parser
from email.Utils import formatdate
@@ -28,9 +30,6 @@ from leap.mail.mail import MessageCollection, Account
from leap.mail.mailbox_indexer import MailboxIndexer
from leap.mail.tests.common import SoledadTestMixin
-# from twisted.internet import defer
-from twisted.trial import unittest
-
HERE = os.path.split(os.path.abspath(__file__))[0]
@@ -67,24 +66,26 @@ class CollectionMixin(object):
if mbox_collection:
mbox_indexer = MailboxIndexer(store)
mbox_name = "TestMbox"
+ mbox_uuid = str(uuid.uuid4())
else:
mbox_indexer = mbox_name = None
def get_collection_from_mbox_wrapper(wrapper):
+ wrapper.uuid = mbox_uuid
return MessageCollection(
adaptor, store,
mbox_indexer=mbox_indexer, mbox_wrapper=wrapper)
d = adaptor.initialize_store(store)
if mbox_collection:
- d.addCallback(lambda _: mbox_indexer.create_table(mbox_name))
+ d.addCallback(lambda _: mbox_indexer.create_table(mbox_uuid))
d.addCallback(lambda _: adaptor.get_or_create_mbox(store, mbox_name))
d.addCallback(get_collection_from_mbox_wrapper)
return d
# TODO profile add_msg. Why are these tests so SLOW??!
-class MessageTestCase(unittest.TestCase, SoledadTestMixin, CollectionMixin):
+class MessageTestCase(SoledadTestMixin, CollectionMixin):
"""
Tests for the Message class.
"""
@@ -204,8 +205,7 @@ class MessageTestCase(unittest.TestCase, SoledadTestMixin, CollectionMixin):
self.assertEquals(msg.get_tags(), self.msg_tags)
-class MessageCollectionTestCase(unittest.TestCase,
- SoledadTestMixin, CollectionMixin):
+class MessageCollectionTestCase(SoledadTestMixin, CollectionMixin):
"""
Tests for the MessageCollection class.
"""
@@ -294,7 +294,7 @@ class MessageCollectionTestCase(unittest.TestCase,
pass
-class AccountTestCase(unittest.TestCase, SoledadTestMixin):
+class AccountTestCase(SoledadTestMixin):
"""
Tests for the Account class.
"""