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
|
# Copyright (C) 2014-2015 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/>.
"""Test the decorate handler."""
__all__ = [
'TestDecorate',
]
import os
import shutil
import tempfile
import unittest
from mailman.app.lifecycle import create_list
from mailman.config import config
from mailman.handlers import decorate
from mailman.interfaces.archiver import IArchiver
from mailman.testing.helpers import specialized_message_from_string as mfs
from mailman.testing.layers import ConfigLayer
from zope.interface import implementer
@implementer(IArchiver)
class TestArchiver:
"""A test archiver"""
name = 'testarchiver'
is_enabled = False
@staticmethod
def permalink(mlist, msg):
return 'http://example.com/link_to_message'
class TestDecorate(unittest.TestCase):
"""Test the cook_headers handler."""
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('test@example.com')
self._msg = mfs("""\
To: test@example.com
From: aperson@example.com
Message-ID: <somerandomid.example.com>
Content-Type: text/plain;
This is a test message.
""")
template_dir = tempfile.mkdtemp()
self.addCleanup(shutil.rmtree, template_dir)
site_dir = os.path.join(template_dir, 'site', 'en')
os.makedirs(site_dir)
config.push('archiver', """\
[paths.testing]
template_dir: {}
[archiver.testarchiver]
class: mailman.handlers.tests.test_decorate.TestArchiver
enable: yes
""".format(template_dir))
self.addCleanup(config.pop, 'archiver')
self.footer_path = os.path.join(site_dir, 'myfooter.txt')
def test_decorate_footer_with_archive_url(self):
with open(self.footer_path, 'w', encoding='utf-8') as fp:
print('${testarchiver_url}', file=fp)
self._mlist.footer_uri = 'mailman:///myfooter.txt'
self._mlist.preferred_language = 'en'
decorate.process(self._mlist, self._msg, {})
self.assertIn('http://example.com/link_to_message',
self._msg.as_string())
|