2014-03-22 23:52:05 +08:00
|
|
|
import os
|
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
|
2014-03-22 23:52:05 +08:00
|
|
|
from django.core.management.utils import find_command, popen_wrapper
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.db import connection
|
2016-02-12 18:02:36 +08:00
|
|
|
from django.test import SimpleTestCase, mock, 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
|
2015-01-03 00:58:58 +08:00
|
|
|
from django.utils._os import upath
|
2012-08-07 21:41:54 +08:00
|
|
|
from django.utils.six import StringIO
|
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):
|
2012-05-27 02:50:44 +08:00
|
|
|
""" Test that an unknown command raises CommandError """
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(CommandError):
|
|
|
|
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")
|
2014-11-29 06:47:53 +08:00
|
|
|
with captured_stderr() as stderr, self.assertRaises(SystemExit):
|
|
|
|
management.ManagementUtility(['manage.py', 'dance', '--example=raise']).execute()
|
|
|
|
self.assertIn("CommandError", stderr.getvalue())
|
2013-02-04 07:53:48 +08:00
|
|
|
|
2015-01-08 18:11:35 +08:00
|
|
|
def test_deactivate_locale_set(self):
|
|
|
|
# Deactivate translation when set to true
|
2013-02-04 07:53:48 +08:00
|
|
|
with translation.override('pl'):
|
2016-02-14 01:14:36 +08:00
|
|
|
result = management.call_command('leave_locale_alone_false', stdout=StringIO())
|
|
|
|
self.assertIsNone(result)
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
|
|
def test_configured_locale_preserved(self):
|
|
|
|
# Leaves locale from settings when set to false
|
|
|
|
with translation.override('pl'):
|
2016-02-14 01:14:36 +08:00
|
|
|
result = management.call_command('leave_locale_alone_true', stdout=StringIO())
|
|
|
|
self.assertEqual(result, "pl")
|
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):
|
|
|
|
"""
|
|
|
|
Test that management commands can also be loaded from Python eggs.
|
|
|
|
"""
|
|
|
|
egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
|
|
|
|
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):
|
|
|
|
self.counter = self.counter + 1
|
|
|
|
|
|
|
|
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
|
|
|
|
|
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 tearDown(self):
|
|
|
|
self.remove_settings('settings.py')
|
|
|
|
|
|
|
|
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/')
|
|
|
|
|
|
|
|
|
2013-02-13 03:50:47 +08:00
|
|
|
class UtilsTests(SimpleTestCase):
|
|
|
|
|
|
|
|
def test_no_existent_external_program(self):
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(CommandError):
|
|
|
|
popen_wrapper(['a_42_command_that_doesnt_exist_42'])
|