summaryrefslogtreecommitdiff
path: root/service/test/unit
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2014-10-14 09:01:46 -0300
committerVictor Shyba <victor.shyba@gmail.com>2014-10-14 09:04:18 -0300
commita1f28aa61b9c688f249095ec9ddcc6a53ea80136 (patch)
tree82d1fd609fb4e29d047947a31c01c7cfcce363aa /service/test/unit
parent7d9d2a10d50043bdb8cd3f27a88b49ac7bef2691 (diff)
adds tests and listener for indexing mails created outside the user agent, see #103
Diffstat (limited to 'service/test/unit')
-rw-r--r--service/test/unit/adapter/listener_test.py59
-rw-r--r--service/test/unit/adapter/pixelated_mailboxes_test.py1
2 files changed, 60 insertions, 0 deletions
diff --git a/service/test/unit/adapter/listener_test.py b/service/test/unit/adapter/listener_test.py
new file mode 100644
index 00000000..ec4b1d93
--- /dev/null
+++ b/service/test/unit/adapter/listener_test.py
@@ -0,0 +1,59 @@
+#
+# Copyright (c) 2014 ThoughtWorks, Inc.
+#
+# Pixelated is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Pixelated is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+import unittest
+
+from mockito import *
+import pixelated.adapter.soledad_querier
+
+querier = mock()
+when(pixelated.adapter.soledad_querier).get_soledad_querier_instance().thenReturn(querier)
+
+from pixelated.adapter.listener import MailboxListener
+
+
+class MailboxListenerTest(unittest.TestCase):
+ def setUp(self):
+ self.account = mock()
+ self.account.mailboxes = []
+
+ def test_add_itself_to_mailbox_listeners(self):
+ self.account.mailboxes = ['INBOX']
+ mailbox = mock()
+ when(self.account).getMailbox('INBOX').thenReturn(mailbox)
+ mailbox.listeners = set()
+ when(mailbox).addListener = lambda x: mailbox.listeners.add(x)
+
+ self.assertNotIn(MailboxListener('INBOX'), mailbox.listeners)
+
+ MailboxListener.listen(self.account, 'INBOX')
+
+ self.assertIn(MailboxListener('INBOX'), mailbox.listeners)
+
+ def test_reindex_missing_idents(self):
+ search_engine = mock()
+ when(search_engine).search('tag:inbox').thenReturn(['ident1', 'ident2'])
+
+ MailboxListener.SEARCH_ENGINE = search_engine
+
+ listener = MailboxListener('INBOX')
+ listener.querier = querier
+ when(querier).get_idents_by_mailbox('INBOX').thenReturn({'ident1', 'ident2', 'missing_ident'})
+ querier.used_arguments = []
+ querier.mails = lambda x: querier.used_arguments.append(x)
+ listener.newMessages(10, 5)
+
+ verify(querier, times=1).get_idents_by_mailbox('INBOX')
+ self.assertIn({'missing_ident'}, querier.used_arguments)
diff --git a/service/test/unit/adapter/pixelated_mailboxes_test.py b/service/test/unit/adapter/pixelated_mailboxes_test.py
index fce06a22..ddb3e84b 100644
--- a/service/test/unit/adapter/pixelated_mailboxes_test.py
+++ b/service/test/unit/adapter/pixelated_mailboxes_test.py
@@ -31,6 +31,7 @@ class PixelatedMailboxesTest(unittest.TestCase):
def setUp(self):
self.account = mock()
+ self.account.mailboxes = []
self.drafts_mailbox = mock()
self.drafts_mailbox.mailbox_name = 'drafts'
self.mailboxes = PixelatedMailBoxes(self.account)