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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
# Copyright (C) 2013-2017 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 MailingLists and related model objects.."""
import unittest
from mailman.app.lifecycle import create_list
from mailman.config import config
from mailman.database.transaction import transaction
from mailman.interfaces.listmanager import IListManager
from mailman.interfaces.mailinglist import (
IAcceptableAliasSet, IHeaderMatchList, IListArchiverSet)
from mailman.interfaces.member import (
AlreadySubscribedError, MemberRole, MissingPreferredAddressError)
from mailman.interfaces.usermanager import IUserManager
from mailman.testing.helpers import (
configuration, get_queue_messages, set_preferred)
from mailman.testing.layers import ConfigLayer
from mailman.utilities.datetime import now
from zope.component import getUtility
class TestMailingList(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
def test_no_duplicate_subscriptions(self):
# A user is not allowed to subscribe more than once to the mailing
# list with the same role.
anne = getUtility(IUserManager).create_user('anne@example.com')
# Give the user a preferred address.
preferred = set_preferred(anne)
# Subscribe Anne to the mailing list as a regular member.
member = self._mlist.subscribe(anne)
self.assertEqual(member.address, preferred)
self.assertEqual(member.role, MemberRole.member)
# A second subscription with the same role will fail.
with self.assertRaises(AlreadySubscribedError) as cm:
self._mlist.subscribe(anne)
self.assertEqual(cm.exception.fqdn_listname, 'ant@example.com')
self.assertEqual(cm.exception.email, 'anne@example.com')
self.assertEqual(cm.exception.role, MemberRole.member)
def test_subscribing_user_must_have_preferred_address(self):
# A user object cannot be subscribed to a mailing list without a
# preferred address.
anne = getUtility(IUserManager).create_user('anne@example.com')
self.assertRaises(MissingPreferredAddressError,
self._mlist.subscribe, anne)
def test_pass_extensions(self):
self._mlist.pass_extensions = ('foo', 'bar', 'baz')
self.assertEqual(list(self._mlist.pass_extensions),
['foo', 'bar', 'baz'])
def test_get_roster_argument(self):
self.assertRaises(ValueError, self._mlist.get_roster, 'members')
def test_subscribe_argument(self):
self.assertRaises(ValueError, self._mlist.subscribe, 'anne')
def test_subscribe_by_user_admin_notification(self):
# A notification is sent to the administrator with the user's email
# address when a user is subscribed instead of an explicit address.
self._mlist.send_welcome_message = False
self._mlist.admin_notify_mchanges = True
manager = getUtility(IUserManager)
user = manager.make_user('anne@example.com', 'Anne Person')
address = manager.create_address('aperson@example.com', 'A. Person')
address.verified_on = now()
user.preferred_address = address
self._mlist.subscribe(user)
# The welcome message was sent to the preferred address.
items = get_queue_messages('virgin', expected_count=1)
self.assertIn('Anne Person <aperson@example.com>',
items[0].msg.get_payload())
def test_is_subscribed(self):
manager = getUtility(IUserManager)
user = manager.create_user('anne@example.com', 'Anne Person')
set_preferred(user)
self.assertEqual(False, self._mlist.is_subscribed(user))
self._mlist.subscribe(user)
self.assertEqual(True, self._mlist.is_subscribed(user))
address = manager.create_address('anne2@example.com', 'Anne Person')
address.verfied_on = now()
self.assertEqual(False, self._mlist.is_subscribed(address))
self._mlist.subscribe(address)
self.assertEqual(True, self._mlist.is_subscribed(address))
class TestListArchiver(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
self._set = IListArchiverSet(self._mlist)
def test_list_archivers(self):
# Find the set of archivers registered for this mailing list.
self.assertEqual(
['mail-archive', 'mhonarc', 'prototype'],
sorted(archiver.name for archiver in self._set.archivers))
def test_get_archiver(self):
# Use .get() to see if a mailing list has an archiver.
archiver = self._set.get('mhonarc')
self.assertEqual(archiver.name, 'mhonarc')
self.assertTrue(archiver.is_enabled)
self.assertEqual(archiver.mailing_list, self._mlist)
self.assertEqual(archiver.system_archiver.name, 'mhonarc')
def test_get_archiver_no_such(self):
# Using .get() on a non-existing name returns None.
self.assertIsNone(self._set.get('no-such-archiver'))
def test_site_disabled(self):
# Here the system configuration enables all the archivers in time for
# the archive set to be created with all list archivers enabled. But
# then the site-wide archiver gets disabled, so the list specific
# archiver will also be disabled.
archiver_set = IListArchiverSet(self._mlist)
archiver = archiver_set.get('mhonarc')
self.assertTrue(archiver.is_enabled)
# Disable the site-wide archiver.
config.push('enable mhonarc', """\
[archiver.mhonarc]
enable: no
""")
self.assertFalse(archiver.is_enabled)
config.pop('enable mhonarc')
class TestDisabledListArchiver(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
@configuration('archiver.prototype', enable='no')
def test_enable_list_archiver(self):
# When the system configuration file disables an archiver site-wide,
# the list-specific mailing list will get initialized as not enabled.
# Create the archiver set on the fly so that it doesn't get
# initialized with a configuration that enables the prototype archiver.
archiver_set = IListArchiverSet(self._mlist)
archiver = archiver_set.get('prototype')
self.assertFalse(archiver.is_enabled)
# Enable both the list archiver and the system archiver.
archiver.is_enabled = True
config.push('enable prototype', """\
[archiver.prototype]
enable: yes
""")
# Get the IListArchiver again.
archiver = archiver_set.get('prototype')
self.assertTrue(archiver.is_enabled)
config.pop('enable prototype')
class TestAcceptableAliases(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
def test_delete_list_with_acceptable_aliases(self):
# LP: #1432239 - deleting a mailing list with acceptable aliases
# causes a SQLAlchemy error. The aliases must be deleted first.
with transaction():
alias_set = IAcceptableAliasSet(self._mlist)
alias_set.add('bee@example.com')
self.assertEqual(['bee@example.com'], list(alias_set.aliases))
getUtility(IListManager).delete(self._mlist)
self.assertEqual(len(list(alias_set.aliases)), 0)
class TestHeaderMatch(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
def test_lowercase_header(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('Header', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 1)
self.assertEqual(self._mlist.header_matches[0].header, 'header')
def test_chain_defaults_to_none(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 1)
self.assertIsNone(self._mlist.header_matches[0].chain)
def test_duplicate(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('Header', 'pattern')
self.assertRaises(
ValueError, header_matches.append, 'Header', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 1)
def test_remove_non_existent(self):
header_matches = IHeaderMatchList(self._mlist)
self.assertRaises(
ValueError, header_matches.remove, 'header', 'pattern')
def test_add_remove(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header1', 'pattern')
header_matches.append('header2', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 2)
self.assertEqual(len(header_matches), 2)
header_matches.remove('header1', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 1)
self.assertEqual(len(header_matches), 1)
del header_matches[0]
self.assertEqual(len(self._mlist.header_matches), 0)
self.assertEqual(len(header_matches), 0)
def test_iterator(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('Header', 'pattern')
header_matches.append('Subject', 'patt.*')
header_matches.append('From', '.*@example.com', 'discard')
header_matches.append('From', '.*@example.org', 'accept')
matches = [(match.header, match.pattern, match.chain)
for match in IHeaderMatchList(self._mlist)]
self.assertEqual(
matches, [
('header', 'pattern', None),
('subject', 'patt.*', None),
('from', '.*@example.com', 'discard'),
('from', '.*@example.org', 'accept'),
])
def test_clear(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('Header', 'pattern')
self.assertEqual(len(self._mlist.header_matches), 1)
with transaction():
header_matches.clear()
self.assertEqual(len(self._mlist.header_matches), 0)
def test_get_by_index(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-1', 'pattern-1')
header_matches.append('header-2', 'pattern-2')
header_matches.append('header-3', 'pattern-3')
match = header_matches[1]
self.assertEqual(match.header, 'header-2')
self.assertEqual(match.pattern, 'pattern-2')
def test_get_by_negative_index(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-1', 'pattern-1')
header_matches.append('header-2', 'pattern-2')
header_matches.append('header-3', 'pattern-3')
match = header_matches[-1]
self.assertEqual(match.header, 'header-3')
self.assertEqual(match.pattern, 'pattern-3')
def test_get_non_existent_by_index(self):
header_matches = IHeaderMatchList(self._mlist)
with self.assertRaises(IndexError):
header_matches[0]
def test_move_up(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-0', 'pattern')
header_matches.append('header-1', 'pattern')
header_matches.append('header-2', 'pattern')
header_matches.append('header-3', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
('header-2', 2),
('header-3', 3),
])
header_match_2 = self._mlist.header_matches[2]
self.assertEqual(header_match_2.position, 2)
header_match_2.position = 1
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-2', 1),
('header-1', 2),
('header-3', 3),
])
def test_move_down(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-0', 'pattern')
header_matches.append('header-1', 'pattern')
header_matches.append('header-2', 'pattern')
header_matches.append('header-3', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
('header-2', 2),
('header-3', 3),
])
header_match_1 = self._mlist.header_matches[1]
self.assertEqual(header_match_1.position, 1)
header_match_1.position = 2
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-2', 1),
('header-1', 2),
('header-3', 3),
])
def test_move_identical(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-0', 'pattern')
header_matches.append('header-1', 'pattern')
header_matches.append('header-2', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
('header-2', 2),
])
header_match_1 = self._mlist.header_matches[1]
self.assertEqual(header_match_1.position, 1)
header_match_1.position = 1
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
('header-2', 2),
])
def test_move_negative(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header', 'pattern')
header_match = self._mlist.header_matches[0]
with self.assertRaises(ValueError):
header_match.position = -1
def test_move_invalid(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header', 'pattern')
header_match = self._mlist.header_matches[0]
with self.assertRaises(ValueError):
header_match.position = 2
def test_insert(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-0', 'pattern')
header_matches.append('header-1', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
])
header_matches.insert(1, 'header-2', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-2', 1),
('header-1', 2),
])
def test_rebuild_sequence_after_remove(self):
header_matches = IHeaderMatchList(self._mlist)
header_matches.append('header-0', 'pattern')
header_matches.append('header-1', 'pattern')
header_matches.append('header-2', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-0', 0),
('header-1', 1),
('header-2', 2),
])
del header_matches[0]
self.assertEqual(
[(match.header, match.position) for match in header_matches], [
('header-1', 0),
('header-2', 1),
])
header_matches.remove('header-1', 'pattern')
self.assertEqual(
[(match.header, match.position) for match in header_matches],
[('header-2', 0)])
def test_remove_non_existent_by_index(self):
header_matches = IHeaderMatchList(self._mlist)
with self.assertRaises(IndexError):
del header_matches[0]
|