75 lines
2.1 KiB
Python
75 lines
2.1 KiB
Python
from __future__ import absolute_import
|
|
import mock
|
|
import six
|
|
try:
|
|
import unittest2 as unittest
|
|
except ImportError:
|
|
import unittest
|
|
|
|
from koji_cli.commands import handle_disable_user
|
|
from . import utils
|
|
|
|
|
|
class TestDisableUser(utils.CliTestCase):
|
|
|
|
# Show long diffs in error output...
|
|
maxDiff = None
|
|
|
|
def setUp(self):
|
|
self.error_format = """Usage: %s disable-user <username>
|
|
(Specify the --help global option for a list of other help options)
|
|
|
|
%s: error: {message}
|
|
""" % (self.progname, self.progname)
|
|
|
|
@mock.patch('sys.stdout', new_callable=six.StringIO)
|
|
@mock.patch('koji_cli.commands.activate_session')
|
|
def test_handle_disable_user(
|
|
self,
|
|
activate_session_mock,
|
|
stdout):
|
|
"""Test handle_disable_user function"""
|
|
session = mock.MagicMock()
|
|
options = mock.MagicMock()
|
|
username = 'user'
|
|
|
|
# Case 1. no argument error
|
|
expected = self.format_error_message(
|
|
"You must specify the username of the user to disable")
|
|
self.assert_system_exit(
|
|
handle_disable_user,
|
|
options,
|
|
session,
|
|
[],
|
|
stderr=expected,
|
|
activate_session=None)
|
|
|
|
# Case 2. Too many argument error
|
|
expected = self.format_error_message(
|
|
"This command only accepts one argument (username)")
|
|
self.assert_system_exit(
|
|
handle_disable_user,
|
|
options,
|
|
session,
|
|
['user-1', 'user-2', 'user-3'],
|
|
stderr=expected,
|
|
activate_session=None)
|
|
|
|
# Case 3. Disable user test
|
|
handle_disable_user(options, session, [username])
|
|
session.disableUser.assert_called_with(username)
|
|
activate_session_mock.assert_called_with(session, options)
|
|
|
|
def test_handle_disable_user_help(self):
|
|
self.assert_help(
|
|
handle_disable_user,
|
|
"""Usage: %s disable-user <username>
|
|
(Specify the --help global option for a list of other help options)
|
|
|
|
Options:
|
|
-h, --help show this help message and exit
|
|
""" % self.progname)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|