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
|
# Copyright (C) 2015-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 the `mailman members` command."""
import unittest
from click.testing import CliRunner
from mailman.app.lifecycle import create_list
from mailman.commands.cli_members import members
from mailman.interfaces.member import MemberRole
from mailman.testing.helpers import subscribe
from mailman.testing.layers import ConfigLayer
from tempfile import NamedTemporaryFile
class TestCLIMembers(unittest.TestCase):
layer = ConfigLayer
def setUp(self):
self._mlist = create_list('ant@example.com')
self._command = CliRunner()
def test_no_such_list(self):
result = self._command.invoke(members, ('bee.example.com',))
self.assertEqual(result.exit_code, 2)
self.assertEqual(
result.output,
'Usage: members [OPTIONS] LISTSPEC\n\n'
'Error: No such list: bee.example.com\n')
def test_role_administrator(self):
subscribe(self._mlist, 'Anne', role=MemberRole.owner)
subscribe(self._mlist, 'Bart', role=MemberRole.moderator)
subscribe(self._mlist, 'Cate', role=MemberRole.nonmember)
subscribe(self._mlist, 'Dave', role=MemberRole.member)
with NamedTemporaryFile('w', encoding='utf-8') as outfp:
self._command.invoke(members, (
'--role', 'administrator', '-o', outfp.name,
'ant.example.com'))
with open(outfp.name, 'r', encoding='utf-8') as infp:
lines = infp.readlines()
self.assertEqual(len(lines), 2)
self.assertEqual(lines[0], 'Anne Person <aperson@example.com>\n')
self.assertEqual(lines[1], 'Bart Person <bperson@example.com>\n')
def test_role_any(self):
subscribe(self._mlist, 'Anne', role=MemberRole.owner)
subscribe(self._mlist, 'Bart', role=MemberRole.moderator)
subscribe(self._mlist, 'Cate', role=MemberRole.nonmember)
subscribe(self._mlist, 'Dave', role=MemberRole.member)
with NamedTemporaryFile('w', encoding='utf-8') as outfp:
self._command.invoke(members, (
'--role', 'any', '-o', outfp.name, 'ant.example.com'))
with open(outfp.name, 'r', encoding='utf-8') as infp:
lines = infp.readlines()
self.assertEqual(len(lines), 4)
self.assertEqual(lines[0], 'Anne Person <aperson@example.com>\n')
self.assertEqual(lines[1], 'Bart Person <bperson@example.com>\n')
self.assertEqual(lines[2], 'Cate Person <cperson@example.com>\n')
self.assertEqual(lines[3], 'Dave Person <dperson@example.com>\n')
def test_role_moderator(self):
subscribe(self._mlist, 'Anne', role=MemberRole.owner)
subscribe(self._mlist, 'Bart', role=MemberRole.moderator)
subscribe(self._mlist, 'Cate', role=MemberRole.nonmember)
subscribe(self._mlist, 'Dave', role=MemberRole.member)
with NamedTemporaryFile('w', encoding='utf-8') as outfp:
self._command.invoke(members, (
'--role', 'moderator', '-o', outfp.name, 'ant.example.com'))
with open(outfp.name, 'r', encoding='utf-8') as infp:
lines = infp.readlines()
self.assertEqual(len(lines), 1)
self.assertEqual(lines[0], 'Bart Person <bperson@example.com>\n')
def test_role_nonmember(self):
subscribe(self._mlist, 'Anne', role=MemberRole.owner)
subscribe(self._mlist, 'Bart', role=MemberRole.moderator)
subscribe(self._mlist, 'Cate', role=MemberRole.nonmember)
subscribe(self._mlist, 'Dave', role=MemberRole.member)
with NamedTemporaryFile('w', encoding='utf-8') as outfp:
self._command.invoke(members, (
'--role', 'nonmember', '-o', outfp.name, 'ant.example.com'))
with open(outfp.name, 'r', encoding='utf-8') as infp:
lines = infp.readlines()
self.assertEqual(len(lines), 1)
self.assertEqual(lines[0], 'Cate Person <cperson@example.com>\n')
def test_already_subscribed_with_display_name(self):
subscribe(self._mlist, 'Anne')
with NamedTemporaryFile('w', buffering=1, encoding='utf-8') as infp:
print('Anne Person <aperson@example.com>', file=infp)
result = self._command.invoke(members, (
'--add', infp.name, 'ant.example.com'))
self.assertEqual(
result.output,
'Already subscribed (skipping): Anne Person <aperson@example.com>\n'
)
|