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
|
# Copyright (C) 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 IUserManager implementation."""
__all__ = [
'TestUserManager',
]
import unittest
from mailman.interfaces.address import ExistingAddressError
from mailman.interfaces.usermanager import IUserManager
from mailman.testing.layers import ConfigLayer
from zope.component import getUtility
class TestUserManager(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._usermanager = getUtility(IUserManager)
def test_create_user_with_existing_address(self):
# LP: #1418280. If a user is created when an email address is passed
# in, and that address already exists, the user object should not get
# created.
# Create the address we're going to try to duplicate.
self._usermanager.create_address('anne@example.com')
# There are no users.
self.assertEqual(len(list(self._usermanager.users)), 0)
# Now create the user with an already existing address.
with self.assertRaises(ExistingAddressError) as cm:
self._usermanager.create_user('anne@example.com')
self.assertEqual(cm.exception.address, 'anne@example.com')
# There are still no users.
self.assertEqual(len(list(self._usermanager.users)), 0)
def test_make_new_user(self):
# Neither the user nor address objects exist yet.
self.assertIsNone(self._usermanager.get_user('anne@example.com'))
self.assertIsNone(self._usermanager.get_address('anne@example.com'))
user = self._usermanager.make_user('anne@example.com', 'Anne Person')
self.assertIn('anne@example.com',
[address.email for address in user.addresses])
addresses = list(user.addresses)
self.assertEqual(len(addresses), 1)
address = addresses[0]
self.assertEqual(address.email, 'anne@example.com')
self.assertEqual(address.display_name, 'Anne Person')
self.assertEqual(address.user.display_name, 'Anne Person')
self.assertIs(address.user, user)
def test_make_linked_user(self):
# The address exists, but there is no linked user.
self.assertIsNone(self._usermanager.get_user('anne@example.com'))
address = self._usermanager.create_address('anne@example.com')
user = self._usermanager.make_user('anne@example.com', 'Anne Person')
self.assertIsNotNone(address.user)
self.assertIs(user, address.user)
self.assertIn(address, user.addresses)
self.assertEqual(user.display_name, 'Anne Person')
def test_make_user_exists(self):
user = self._usermanager.create_user('anne@example.com', 'Anne Person')
other_user = self._usermanager.make_user('anne@example.com')
self.assertIs(user, other_user)
def test_get_user_by_id(self):
original = self._usermanager.make_user('anne@example.com')
copy = self._usermanager.get_user_by_id(original.user_id)
self.assertEqual(original, copy)
|