blob: b9f1c2676db7ca4747b6eec673a33a106b986938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import unittest
from pixelated.adapter.mail import InputMail
from pixelated.adapter.draft_service import DraftService
import test.support.test_helper as test_helper
from mockito import *
class DraftServiceTest(unittest.TestCase):
def setUp(self):
self.mailboxes = mock()
self.drafts_mailbox = mock()
self.draft_service = DraftService(self.mailboxes)
when(self.mailboxes).drafts().thenReturn(self.drafts_mailbox)
def test_add_draft(self):
mail = InputMail()
self.draft_service.create_draft(mail)
verify(self.drafts_mailbox).add(mail)
def test_update_draft(self):
mail = InputMail.from_dict(test_helper.mail_dict())
when(self.drafts_mailbox).add(mail).thenReturn(mail)
self.draft_service.update_draft(mail.ident, mail)
inorder.verify(self.drafts_mailbox).add(mail)
inorder.verify(self.drafts_mailbox).remove(mail.ident)
|