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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# Copyright (C) 2001 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""Unit tests for the SafeDict.py module
"""
import email
import unittest
from Mailman import SafeDict
class TestSafeDict(unittest.TestCase):
def test_okay(self):
sd = SafeDict.SafeDict({'foo': 'bar'})
si = '%(foo)s' % sd
self.assertEqual(si, 'bar')
def test_key_error(self):
sd = SafeDict.SafeDict({'foo': 'bar'})
si = '%(baz)s' % sd
self.assertEqual(si, '%(baz)s')
def test_key_error_not_string(self):
key = ()
sd = SafeDict.SafeDict({})
self.assertEqual(sd[key], '<Missing key: ()>')
class TestMsgSafeDict(unittest.TestCase):
def setUp(self):
self._msg = email.message_from_string("""To: foo
From: bar
Subject: baz
Cc: aperson@dom.ain
Cc: bperson@dom.ain
""")
def test_normal_key(self):
sd = SafeDict.MsgSafeDict(self._msg, {'key': 'value'})
si = '%(key)s' % sd
self.assertEqual(si, 'value')
def test_msg_key(self):
sd = SafeDict.MsgSafeDict(self._msg, {'to': 'value'})
si = '%(msg_to)s' % sd
self.assertEqual(si, 'foo')
def test_allmsg_key(self):
sd = SafeDict.MsgSafeDict(self._msg, {'cc': 'value'})
si = '%(allmsg_cc)s' % sd
self.assertEqual(si, 'aperson@dom.ain, bperson@dom.ain')
def test_msg_no_key(self):
sd = SafeDict.MsgSafeDict(self._msg)
si = '%(msg_date)s' % sd
self.assertEqual(si, 'n/a')
def test_allmsg_no_key(self):
sd = SafeDict.MsgSafeDict(self._msg)
si = '%(allmsg_date)s' % sd
self.assertEqual(si, 'n/a')
def test_copy(self):
sd = SafeDict.MsgSafeDict(self._msg, {'foo': 'bar'})
copy = sd.copy()
items = copy.items()
items.sort()
self.assertEqual(items, [
('allmsg_cc', 'aperson@dom.ain, bperson@dom.ain'),
('foo', 'bar'),
('msg_from', 'bar'),
('msg_subject', 'baz'),
('msg_to', 'foo'),
])
def suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestSafeDict))
suite.addTest(unittest.makeSuite(TestMsgSafeDict))
return suite
if __name__ == '__main__':
unittest.main(defaultTest='suite')
|