2014-03-22 23:52:05 +08:00
|
|
|
import os
|
2017-01-07 19:11:46 +08:00
|
|
|
from io import StringIO
|
2017-01-20 01:16:04 +08:00
|
|
|
from unittest import mock
|
2010-09-13 13:28:01 +08:00
|
|
|
|
2015-10-24 03:02:34 +08:00
|
|
|
from admin_scripts.tests import AdminScriptTestCase
|
|
|
|
|
2015-01-03 00:58:58 +08:00
|
|
|
from django.apps import apps
|
2010-09-13 13:28:01 +08:00
|
|
|
from django.core import management
|
2015-01-03 00:58:58 +08:00
|
|
|
from django.core.management import BaseCommand, CommandError, find_commands
|
2018-08-05 04:22:50 +08:00
|
|
|
from django.core.management.utils import (
|
2019-01-28 03:30:06 +08:00
|
|
|
find_command, get_random_secret_key, is_ignored_path,
|
|
|
|
normalize_path_patterns, popen_wrapper,
|
2018-08-05 04:22:50 +08:00
|
|
|
)
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.db import connection
|
2017-01-20 01:16:04 +08:00
|
|
|
from django.test import SimpleTestCase, override_settings
|
2015-08-19 00:46:03 +08:00
|
|
|
from django.test.utils import captured_stderr, extend_sys_path
|
2011-11-07 19:28:31 +08:00
|
|
|
from django.utils import translation
|
2019-06-27 04:04:58 +08:00
|
|
|
from django.utils.version import PY37
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2016-02-12 18:02:36 +08:00
|
|
|
from .management.commands import dance
|
|
|
|
|
2010-09-13 13:28:01 +08:00
|
|
|
|
2015-02-11 01:02:47 +08:00
|
|
|
# A minimal set of apps to avoid system checks running on all apps.
|
|
|
|
@override_settings(
|
|
|
|
INSTALLED_APPS=[
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'user_commands',
|
|
|
|
],
|
|
|
|
)
|
2013-02-13 03:50:47 +08:00
|
|
|
class CommandTests(SimpleTestCase):
|
2010-09-13 13:28:01 +08:00
|
|
|
def test_command(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('dance', stdout=out)
|
2014-08-10 03:03:19 +08:00
|
|
|
self.assertIn("I don't feel like dancing Rock'n'Roll.\n", out.getvalue())
|
2010-09-13 13:28:01 +08:00
|
|
|
|
|
|
|
def test_command_style(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('dance', style='Jive', stdout=out)
|
2014-08-10 03:03:19 +08:00
|
|
|
self.assertIn("I don't feel like dancing Jive.\n", out.getvalue())
|
|
|
|
# Passing options as arguments also works (thanks argparse)
|
|
|
|
management.call_command('dance', '--style', 'Jive', stdout=out)
|
|
|
|
self.assertIn("I don't feel like dancing Jive.\n", out.getvalue())
|
2010-09-13 13:28:01 +08:00
|
|
|
|
2011-11-07 19:28:31 +08:00
|
|
|
def test_language_preserved(self):
|
|
|
|
out = StringIO()
|
|
|
|
with translation.override('fr'):
|
|
|
|
management.call_command('dance', stdout=out)
|
|
|
|
self.assertEqual(translation.get_language(), 'fr')
|
|
|
|
|
2010-09-13 13:28:01 +08:00
|
|
|
def test_explode(self):
|
2016-10-27 15:53:39 +08:00
|
|
|
""" An unknown command raises CommandError """
|
2017-05-29 03:37:21 +08:00
|
|
|
with self.assertRaisesMessage(CommandError, "Unknown command: 'explode'"):
|
2016-01-17 19:26:39 +08:00
|
|
|
management.call_command(('explode',))
|
2012-05-27 02:50:44 +08:00
|
|
|
|
|
|
|
def test_system_exit(self):
|
|
|
|
""" Exception raised in a command should raise CommandError with
|
|
|
|
call_command, but SystemExit when run from command line
|
|
|
|
"""
|
|
|
|
with self.assertRaises(CommandError):
|
|
|
|
management.call_command('dance', example="raise")
|
2016-08-14 17:53:32 +08:00
|
|
|
dance.Command.requires_system_checks = False
|
|
|
|
try:
|
|
|
|
with captured_stderr() as stderr, self.assertRaises(SystemExit):
|
|
|
|
management.ManagementUtility(['manage.py', 'dance', '--example=raise']).execute()
|
|
|
|
finally:
|
|
|
|
dance.Command.requires_system_checks = True
|
2014-11-29 06:47:53 +08:00
|
|
|
self.assertIn("CommandError", stderr.getvalue())
|
2013-02-04 07:53:48 +08:00
|
|
|
|
2013-02-04 21:35:52 +08:00
|
|
|
def test_no_translations_deactivate_translations(self):
|
|
|
|
"""
|
|
|
|
When the Command handle method is decorated with @no_translations,
|
|
|
|
translations are deactivated inside the command.
|
|
|
|
"""
|
|
|
|
current_locale = translation.get_language()
|
2013-02-04 07:53:48 +08:00
|
|
|
with translation.override('pl'):
|
2013-02-04 21:35:52 +08:00
|
|
|
result = management.call_command('no_translations', stdout=StringIO())
|
2016-02-14 01:14:36 +08:00
|
|
|
self.assertIsNone(result)
|
2013-02-04 21:35:52 +08:00
|
|
|
self.assertEqual(translation.get_language(), current_locale)
|
2013-02-13 03:50:47 +08:00
|
|
|
|
2014-03-22 23:52:05 +08:00
|
|
|
def test_find_command_without_PATH(self):
|
|
|
|
"""
|
|
|
|
find_command should still work when the PATH environment variable
|
|
|
|
doesn't exist (#22256).
|
|
|
|
"""
|
|
|
|
current_path = os.environ.pop('PATH', None)
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.assertIsNone(find_command('_missing_'))
|
|
|
|
finally:
|
|
|
|
if current_path is not None:
|
|
|
|
os.environ['PATH'] = current_path
|
|
|
|
|
2015-01-03 00:58:58 +08:00
|
|
|
def test_discover_commands_in_eggs(self):
|
|
|
|
"""
|
2016-10-27 15:53:39 +08:00
|
|
|
Management commands can also be loaded from Python eggs.
|
2015-01-03 00:58:58 +08:00
|
|
|
"""
|
2017-01-20 21:01:02 +08:00
|
|
|
egg_dir = '%s/eggs' % os.path.dirname(__file__)
|
2015-01-03 00:58:58 +08:00
|
|
|
egg_name = '%s/basic.egg' % egg_dir
|
|
|
|
with extend_sys_path(egg_name):
|
|
|
|
with self.settings(INSTALLED_APPS=['commandegg']):
|
|
|
|
cmds = find_commands(os.path.join(apps.get_app_config('commandegg').path, 'management'))
|
|
|
|
self.assertEqual(cmds, ['eggcommand'])
|
|
|
|
|
2014-08-10 03:03:19 +08:00
|
|
|
def test_call_command_option_parsing(self):
|
|
|
|
"""
|
|
|
|
When passing the long option name to call_command, the available option
|
|
|
|
key is the option dest name (#22985).
|
|
|
|
"""
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('dance', stdout=out, opt_3=True)
|
|
|
|
self.assertIn("option3", out.getvalue())
|
|
|
|
self.assertNotIn("opt_3", out.getvalue())
|
|
|
|
self.assertNotIn("opt-3", out.getvalue())
|
|
|
|
|
2015-10-03 15:58:36 +08:00
|
|
|
def test_call_command_option_parsing_non_string_arg(self):
|
|
|
|
"""
|
|
|
|
It should be possible to pass non-string arguments to call_command.
|
|
|
|
"""
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('dance', 1, verbosity=0, stdout=out)
|
|
|
|
self.assertIn("You passed 1 as a positional argument.", out.getvalue())
|
|
|
|
|
2014-08-18 06:29:49 +08:00
|
|
|
def test_calling_a_command_with_only_empty_parameter_should_ends_gracefully(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('hal', "--empty", stdout=out)
|
|
|
|
self.assertIn("Dave, I can't do that.\n", out.getvalue())
|
|
|
|
|
|
|
|
def test_calling_command_with_app_labels_and_parameters_should_be_ok(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('hal', 'myapp', "--verbosity", "3", stdout=out)
|
|
|
|
self.assertIn("Dave, my mind is going. I can feel it. I can feel it.\n", out.getvalue())
|
|
|
|
|
|
|
|
def test_calling_command_with_parameters_and_app_labels_at_the_end_should_be_ok(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('hal', "--verbosity", "3", "myapp", stdout=out)
|
|
|
|
self.assertIn("Dave, my mind is going. I can feel it. I can feel it.\n", out.getvalue())
|
|
|
|
|
|
|
|
def test_calling_a_command_with_no_app_labels_and_parameters_should_raise_a_command_error(self):
|
|
|
|
with self.assertRaises(CommandError):
|
2016-02-14 01:14:36 +08:00
|
|
|
management.call_command('hal', stdout=StringIO())
|
2014-08-18 06:29:49 +08:00
|
|
|
|
2014-08-16 23:21:14 +08:00
|
|
|
def test_output_transaction(self):
|
2016-02-14 01:14:36 +08:00
|
|
|
output = management.call_command('transaction', stdout=StringIO(), no_color=True)
|
|
|
|
self.assertTrue(output.strip().startswith(connection.ops.start_transaction_sql()))
|
|
|
|
self.assertTrue(output.strip().endswith(connection.ops.end_transaction_sql()))
|
2014-08-16 23:21:14 +08:00
|
|
|
|
2014-10-20 03:17:38 +08:00
|
|
|
def test_call_command_no_checks(self):
|
|
|
|
"""
|
|
|
|
By default, call_command should not trigger the check framework, unless
|
|
|
|
specifically asked.
|
|
|
|
"""
|
|
|
|
self.counter = 0
|
|
|
|
|
|
|
|
def patched_check(self_, **kwargs):
|
2016-07-21 16:28:40 +08:00
|
|
|
self.counter += 1
|
2014-10-20 03:17:38 +08:00
|
|
|
|
|
|
|
saved_check = BaseCommand.check
|
|
|
|
BaseCommand.check = patched_check
|
|
|
|
try:
|
|
|
|
management.call_command("dance", verbosity=0)
|
|
|
|
self.assertEqual(self.counter, 0)
|
|
|
|
management.call_command("dance", verbosity=0, skip_checks=False)
|
|
|
|
self.assertEqual(self.counter, 1)
|
|
|
|
finally:
|
|
|
|
BaseCommand.check = saved_check
|
|
|
|
|
2016-02-12 18:02:36 +08:00
|
|
|
def test_check_migrations(self):
|
|
|
|
requires_migrations_checks = dance.Command.requires_migrations_checks
|
2016-06-17 02:19:18 +08:00
|
|
|
self.assertIs(requires_migrations_checks, False)
|
2016-02-12 18:02:36 +08:00
|
|
|
try:
|
|
|
|
with mock.patch.object(BaseCommand, 'check_migrations') as check_migrations:
|
|
|
|
management.call_command('dance', verbosity=0)
|
|
|
|
self.assertFalse(check_migrations.called)
|
|
|
|
dance.Command.requires_migrations_checks = True
|
|
|
|
management.call_command('dance', verbosity=0)
|
|
|
|
self.assertTrue(check_migrations.called)
|
|
|
|
finally:
|
|
|
|
dance.Command.requires_migrations_checks = requires_migrations_checks
|
|
|
|
|
2017-01-28 18:32:33 +08:00
|
|
|
def test_call_command_unrecognized_option(self):
|
|
|
|
msg = (
|
|
|
|
'Unknown option(s) for dance command: unrecognized. Valid options '
|
2018-07-23 01:11:47 +08:00
|
|
|
'are: example, force_color, help, integer, no_color, opt_3, '
|
|
|
|
'option3, pythonpath, settings, skip_checks, stderr, stdout, '
|
|
|
|
'style, traceback, verbosity, version.'
|
2017-01-28 18:32:33 +08:00
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
|
|
|
management.call_command('dance', unrecognized=1)
|
|
|
|
|
|
|
|
msg = (
|
|
|
|
'Unknown option(s) for dance command: unrecognized, unrecognized2. '
|
2018-07-23 01:11:47 +08:00
|
|
|
'Valid options are: example, force_color, help, integer, no_color, '
|
|
|
|
'opt_3, option3, pythonpath, settings, skip_checks, stderr, '
|
|
|
|
'stdout, style, traceback, verbosity, version.'
|
2017-01-28 18:32:33 +08:00
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
|
|
|
management.call_command('dance', unrecognized=1, unrecognized2=1)
|
|
|
|
|
2018-03-03 01:25:08 +08:00
|
|
|
def test_call_command_with_required_parameters_in_options(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('required_option', need_me='foo', needme2='bar', stdout=out)
|
|
|
|
self.assertIn('need_me', out.getvalue())
|
|
|
|
self.assertIn('needme2', out.getvalue())
|
|
|
|
|
|
|
|
def test_call_command_with_required_parameters_in_mixed_options(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('required_option', '--need-me=foo', needme2='bar', stdout=out)
|
|
|
|
self.assertIn('need_me', out.getvalue())
|
|
|
|
self.assertIn('needme2', out.getvalue())
|
|
|
|
|
2018-05-21 17:32:51 +08:00
|
|
|
def test_command_add_arguments_after_common_arguments(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('common_args', stdout=out)
|
|
|
|
self.assertIn('Detected that --version already exists', out.getvalue())
|
|
|
|
|
2019-09-06 05:45:56 +08:00
|
|
|
def test_mutually_exclusive_group_required_options(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('mutually_exclusive_required', foo_id=1, stdout=out)
|
|
|
|
self.assertIn('foo_id', out.getvalue())
|
|
|
|
management.call_command('mutually_exclusive_required', foo_name='foo', stdout=out)
|
|
|
|
self.assertIn('foo_name', out.getvalue())
|
|
|
|
msg = 'Error: one of the arguments --foo-id --foo-name is required'
|
|
|
|
with self.assertRaisesMessage(CommandError, msg):
|
|
|
|
management.call_command('mutually_exclusive_required', stdout=out)
|
|
|
|
|
2018-04-22 02:34:00 +08:00
|
|
|
def test_subparser(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('subparser', 'foo', 12, stdout=out)
|
|
|
|
self.assertIn('bar', out.getvalue())
|
|
|
|
|
2019-06-27 04:04:58 +08:00
|
|
|
def test_subparser_dest_args(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('subparser_dest', 'foo', bar=12, stdout=out)
|
|
|
|
self.assertIn('bar', out.getvalue())
|
|
|
|
|
|
|
|
def test_subparser_dest_required_args(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('subparser_required', 'foo_1', 'foo_2', bar=12, stdout=out)
|
|
|
|
self.assertIn('bar', out.getvalue())
|
|
|
|
|
2018-04-22 02:34:00 +08:00
|
|
|
def test_subparser_invalid_option(self):
|
|
|
|
msg = "Error: invalid choice: 'test' (choose from 'foo')"
|
|
|
|
with self.assertRaisesMessage(CommandError, msg):
|
|
|
|
management.call_command('subparser', 'test', 12)
|
2019-06-27 04:04:58 +08:00
|
|
|
if PY37:
|
|
|
|
# "required" option requires Python 3.7 and later.
|
|
|
|
msg = 'Error: the following arguments are required: subcommand'
|
|
|
|
with self.assertRaisesMessage(CommandError, msg):
|
|
|
|
management.call_command('subparser_dest', subcommand='foo', bar=12)
|
|
|
|
else:
|
|
|
|
msg = (
|
|
|
|
'Unknown option(s) for subparser_dest command: subcommand. '
|
|
|
|
'Valid options are: bar, force_color, help, no_color, '
|
|
|
|
'pythonpath, settings, skip_checks, stderr, stdout, '
|
|
|
|
'traceback, verbosity, version.'
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
|
|
|
management.call_command('subparser_dest', subcommand='foo', bar=12)
|
2018-04-22 02:34:00 +08:00
|
|
|
|
2018-06-12 01:20:50 +08:00
|
|
|
def test_create_parser_kwargs(self):
|
|
|
|
"""BaseCommand.create_parser() passes kwargs to CommandParser."""
|
|
|
|
epilog = 'some epilog text'
|
|
|
|
parser = BaseCommand().create_parser('prog_name', 'subcommand', epilog=epilog)
|
|
|
|
self.assertEqual(parser.epilog, epilog)
|
|
|
|
|
2013-02-13 03:50:47 +08:00
|
|
|
|
2015-10-24 03:02:34 +08:00
|
|
|
class CommandRunTests(AdminScriptTestCase):
|
|
|
|
"""
|
|
|
|
Tests that need to run by simulating the command line, not by call_command.
|
|
|
|
"""
|
|
|
|
def test_script_prefix_set_in_commands(self):
|
|
|
|
self.write_settings('settings.py', apps=['user_commands'], sdict={
|
|
|
|
'ROOT_URLCONF': '"user_commands.urls"',
|
|
|
|
'FORCE_SCRIPT_NAME': '"/PREFIX/"',
|
|
|
|
})
|
|
|
|
out, err = self.run_manage(['reverse_url'])
|
|
|
|
self.assertNoOutput(err)
|
|
|
|
self.assertEqual(out.strip(), '/PREFIX/some/url/')
|
|
|
|
|
2018-05-09 02:50:35 +08:00
|
|
|
def test_disallowed_abbreviated_options(self):
|
|
|
|
"""
|
|
|
|
To avoid conflicts with custom options, commands don't allow
|
|
|
|
abbreviated forms of the --setting and --pythonpath options.
|
|
|
|
"""
|
|
|
|
self.write_settings('settings.py', apps=['user_commands'])
|
|
|
|
out, err = self.run_manage(['set_option', '--set', 'foo'])
|
|
|
|
self.assertNoOutput(err)
|
|
|
|
self.assertEqual(out.strip(), 'Set foo')
|
|
|
|
|
2019-04-27 07:37:57 +08:00
|
|
|
def test_skip_checks(self):
|
|
|
|
self.write_settings('settings.py', apps=['django.contrib.staticfiles', 'user_commands'], sdict={
|
|
|
|
# (staticfiles.E001) The STATICFILES_DIRS setting is not a tuple or
|
|
|
|
# list.
|
|
|
|
'STATICFILES_DIRS': '"foo"',
|
|
|
|
})
|
|
|
|
out, err = self.run_manage(['set_option', '--skip-checks', '--set', 'foo'])
|
|
|
|
self.assertNoOutput(err)
|
|
|
|
self.assertEqual(out.strip(), 'Set foo')
|
|
|
|
|
2015-10-24 03:02:34 +08:00
|
|
|
|
2013-02-13 03:50:47 +08:00
|
|
|
class UtilsTests(SimpleTestCase):
|
|
|
|
|
|
|
|
def test_no_existent_external_program(self):
|
2017-05-29 03:37:21 +08:00
|
|
|
msg = 'Error executing a_42_command_that_doesnt_exist_42'
|
|
|
|
with self.assertRaisesMessage(CommandError, msg):
|
2016-01-17 19:26:39 +08:00
|
|
|
popen_wrapper(['a_42_command_that_doesnt_exist_42'])
|
2018-08-05 04:22:50 +08:00
|
|
|
|
|
|
|
def test_get_random_secret_key(self):
|
|
|
|
key = get_random_secret_key()
|
|
|
|
self.assertEqual(len(key), 50)
|
|
|
|
for char in key:
|
|
|
|
self.assertIn(char, 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)')
|
2019-01-28 03:30:06 +08:00
|
|
|
|
|
|
|
def test_is_ignored_path_true(self):
|
|
|
|
patterns = (
|
|
|
|
['foo/bar/baz'],
|
|
|
|
['baz'],
|
|
|
|
['foo/bar/baz'],
|
|
|
|
['*/baz'],
|
|
|
|
['*'],
|
|
|
|
['b?z'],
|
|
|
|
['[abc]az'],
|
|
|
|
['*/ba[!z]/baz'],
|
|
|
|
)
|
|
|
|
for ignore_patterns in patterns:
|
|
|
|
with self.subTest(ignore_patterns=ignore_patterns):
|
|
|
|
self.assertIs(is_ignored_path('foo/bar/baz', ignore_patterns=ignore_patterns), True)
|
|
|
|
|
|
|
|
def test_is_ignored_path_false(self):
|
|
|
|
self.assertIs(is_ignored_path('foo/bar/baz', ignore_patterns=['foo/bar/bat', 'bar', 'flub/blub']), False)
|
|
|
|
|
|
|
|
def test_normalize_path_patterns_truncates_wildcard_base(self):
|
|
|
|
expected = [os.path.normcase(p) for p in ['foo/bar', 'bar/*/']]
|
|
|
|
self.assertEqual(normalize_path_patterns(['foo/bar/*', 'bar/*/']), expected)
|