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
|
# Copyright (C) 2010-2011 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
# GNU Mailman 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 3 of the License, or (at your option)
# any later version.
#
# GNU Mailman 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
# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
"""Tests for config.pck imports."""
from __future__ import absolute_import, unicode_literals
__metaclass__ = type
__all__ = [
'test_suite',
]
import cPickle
import unittest
from mailman.app.lifecycle import create_list, remove_list
from mailman.testing.layers import ConfigLayer
from mailman.utilities.importer import import_config_pck
from pkg_resources import resource_filename
class TestBasicImport(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('blank@example.com')
pickle_file = resource_filename('mailman.testing', 'config.pck')
with open(pickle_file) as fp:
self._pckdict = cPickle.load(fp)
def tearDown(self):
remove_list(self._mlist.fqdn_listname, self._mlist)
def _import(self):
import_config_pck(self._mlist, self._pckdict)
def test_real_name(self):
# The mlist.real_name gets set.
self.assertEqual(self._mlist.real_name, 'Blank')
self._import()
self.assertEqual(self._mlist.real_name, 'Test')
def test_mail_host(self):
# The mlist.mail_host gets set.
self.assertEqual(self._mlist.mail_host, 'example.com')
self._import()
self.assertEqual(self._mlist.mail_host, 'heresy.example.org')
def test_rfc2369_headers(self):
self._mlist.include_list_post_header = False
self._mlist.include_rfc2369_headers = False
self._import()
self.assertTrue(self._mlist.include_list_post_header)
self.assertTrue(self._mlist.include_rfc2369_headers)
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestBasicImport))
return suite
|