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
|
# Copyright (C) 2011-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/>.
"""Tests for the subscription service."""
__all__ = [
'TestJoin',
'TestSubscriptionWorkflow',
]
import uuid
import unittest
from mailman.app.lifecycle import create_list
from mailman.app.subscriptions import SubscriptionWorkflow
from mailman.interfaces.address import InvalidEmailAddressError
from mailman.interfaces.member import MemberRole, MissingPreferredAddressError
from mailman.interfaces.subscriptions import (
MissingUserError, ISubscriptionService)
from mailman.testing.layers import ConfigLayer
from mailman.interfaces.mailinglist import SubscriptionPolicy
from mailman.interfaces.usermanager import IUserManager
from zope.component import getUtility
class TestJoin(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('test@example.com')
self._service = getUtility(ISubscriptionService)
def test_join_user_with_bogus_id(self):
# When `subscriber` is a missing user id, an exception is raised.
with self.assertRaises(MissingUserError) as cm:
self._service.join('test.example.com', uuid.UUID(int=99))
self.assertEqual(cm.exception.user_id, uuid.UUID(int=99))
def test_join_user_with_invalid_email_address(self):
# When `subscriber` is a string that is not an email address, an
# exception is raised.
with self.assertRaises(InvalidEmailAddressError) as cm:
self._service.join('test.example.com', 'bogus')
self.assertEqual(cm.exception.email, 'bogus')
def test_missing_preferred_address(self):
# A user cannot join a mailing list if they have no preferred address.
anne = self._service.join(
'test.example.com', 'anne@example.com', 'Anne Person')
# Try to join Anne as a user with a different role. Her user has no
# preferred address, so this will fail.
self.assertRaises(MissingPreferredAddressError,
self._service.join,
'test.example.com', anne.user.user_id,
role=MemberRole.owner)
class TestSubscriptionWorkflow(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('test@example.com')
self._anne = 'anne@example.com'
self._user_manager = getUtility(IUserManager)
def test_preverified_address_joins_open_list(self):
# The mailing list has an open subscription policy, so the subscriber
# becomes a member with no human intervention.
self._mlist.subscription_policy = SubscriptionPolicy.open
anne = self._user_manager.create_address(self._anne, 'Anne Person')
self.assertIsNone(anne.verified_on)
self.assertIsNone(anne.user)
self.assertIsNone(self._mlist.subscribers.get_member(self._anne))
workflow = SubscriptionWorkflow(
self._mlist, anne,
pre_verified=True, pre_confirmed=False, pre_approved=False)
# Run the state machine to the end. The result is that her address
# will be verified, linked to a user, and subscribed to the mailing
# list.
list(workflow)
self.assertIsNotNone(anne.verified_on)
self.assertIsNotNone(anne.user)
self.assertIsNotNone(self._mlist.subscribers.get_member(self._anne))
|