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
31
32
33
34
35
36
37
38
39
40
41
42
|
import unittest
from pixelated.support import replier
class TestReplier(unittest.TestCase):
def test_reply_all_dont_exclude_own_address_if_only_recipient(self):
current_user = sender = 'me@pixelated.org'
to = [sender]
cc = []
reply_dict = replier.generate_recipients(sender, to, cc, current_user)
expected = {'single': sender, 'all': {'to-field': [current_user], 'cc-field': []}}
self.assertEquals(expected, reply_dict)
def test_reply_all_does_not_contain_own_address_in_to(self):
current_user = 'me@pixelated.org'
sender = 'sender@pixelated.org'
to = ['test@pixelated.org', current_user]
cc = []
reply_dict = replier.generate_recipients(sender, to, cc, current_user)
expected = {'single': sender, 'all': {'to-field': ['test@pixelated.org', sender], 'cc-field': []}}
self.assertEquals(expected, reply_dict)
def test_reply_all_does_not_contain_own_address_in_cc(self):
current_user = 'me@pixelated.org'
sender = 'sender@pixelated.org'
to = ['test@pixelated.org']
cc = ['test2@pixelated.org', current_user]
reply_dict = replier.generate_recipients(sender, to, cc, current_user)
expected = {'single': sender, 'all': {'to-field': ['test@pixelated.org', sender], 'cc-field': ['test2@pixelated.org']}}
self.assertEquals(expected, reply_dict)
def test_reply_single_swaps_current_user_and_recipient_if_a_am_the_sender(self):
current_user = sender = 'me@pixelated.org'
to = ['test@pixelated.org']
cc = []
reply_dict = replier.generate_recipients(sender, to, cc, current_user)
expected = {'single': 'test@pixelated.org', 'all': {'to-field': ['test@pixelated.org'], 'cc-field': []}}
self.assertEquals(expected, reply_dict)
|