summaryrefslogtreecommitdiff
path: root/service/test/adapter/draft_service_test.py
blob: 92b25d36e55821090e7336d166aff9e173412441 (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
import unittest
from pixelated.adapter.pixelated_mail import InputMail
from pixelated.adapter.draft_service import DraftService
import 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 = test_helper.input_mail()
        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)