summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2014-09-10 18:14:29 -0500
committerKali Kaneko <kali@leap.se>2014-09-10 18:17:00 -0500
commiteba412b4338fe5cfce0155bb1aabfe40025c036c (patch)
tree67d43f8ab20b61189d6821a1d496d0f83bf4440c
parentb52104f908d668aec39e563923c7f04c05e5f221 (diff)
add test for empty mailbox creation
-rw-r--r--src/leap/mail/imap/tests/test_imap.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/leap/mail/imap/tests/test_imap.py b/src/leap/mail/imap/tests/test_imap.py
index 980e46e..631a2c1 100644
--- a/src/leap/mail/imap/tests/test_imap.py
+++ b/src/leap/mail/imap/tests/test_imap.py
@@ -1106,8 +1106,21 @@ class LeapIMAP4ServerTestCase(IMAP4HelperMixin, unittest.TestCase):
self.assertItemsEqual(self.results, [1, 3])
-class IMAP4ServerSearchTestCase(IMAP4HelperMixin, unittest.TestCase):
+class AccountTestCase(IMAP4HelperMixin, unittest.TestCase):
+ """
+ Test the Account.
+ """
+ def _create_empty_mailbox(self):
+ LeapIMAPServer.theAccount.addMailbox('')
+
+ def _create_one_mailbox(self):
+ LeapIMAPServer.theAccount.addMailbox('one')
+ def test_illegalMailboxCreate(self):
+ self.assertRaises(AssertionError, self._create_empty_mailbox)
+
+
+class IMAP4ServerSearchTestCase(IMAP4HelperMixin, unittest.TestCase):
"""
Tests for the behavior of the search_* functions in L{imap5.IMAP4Server}.
"""