2014-03-22 23:52:05 +08:00
|
|
|
import os
|
2010-09-13 13:28:01 +08:00
|
|
|
|
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
|
2014-12-22 04:19:05 +08:00
|
|
|
from django.test import SimpleTestCase, ignore_warnings
|
2015-01-03 00:58:58 +08:00
|
|
|
from django.test.utils import captured_stderr, captured_stdout, 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
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
2012-08-07 21:41:54 +08:00
|
|
|
from django.utils.six import StringIO
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2010-09-13 13:28:01 +08:00
|
|
|
|
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 """
|
2011-11-07 19:28:31 +08:00
|
|
|
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
|
|
|
out = StringIO()
|
|
|
|
with translation.override('pl'):
|
|
|
|
management.call_command('leave_locale_alone_false', stdout=out)
|
2015-01-08 18:11:35 +08:00
|
|
|
self.assertEqual(out.getvalue(), "")
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
|
|
def test_configured_locale_preserved(self):
|
|
|
|
# Leaves locale from settings when set to false
|
|
|
|
out = StringIO()
|
|
|
|
with translation.override('pl'):
|
|
|
|
management.call_command('leave_locale_alone_true', stdout=out)
|
|
|
|
self.assertEqual(out.getvalue(), "pl\n")
|
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())
|
|
|
|
|
2014-12-22 04:19:05 +08:00
|
|
|
@ignore_warnings(category=RemovedInDjango20Warning)
|
2013-10-16 22:24:59 +08:00
|
|
|
def test_optparse_compatibility(self):
|
|
|
|
"""
|
|
|
|
optparse should be supported during Django 1.8/1.9 releases.
|
|
|
|
"""
|
|
|
|
out = StringIO()
|
2014-12-22 04:19:05 +08:00
|
|
|
management.call_command('optparse_cmd', stdout=out)
|
2013-10-16 22:24:59 +08:00
|
|
|
self.assertEqual(out.getvalue(), "All right, let's dance Rock'n'Roll.\n")
|
|
|
|
|
|
|
|
# Simulate command line execution
|
2014-11-29 06:47:53 +08:00
|
|
|
with captured_stdout() as stdout, captured_stderr():
|
2013-10-16 22:24:59 +08:00
|
|
|
management.execute_from_command_line(['django-admin', 'optparse_cmd'])
|
2014-11-29 06:47:53 +08:00
|
|
|
self.assertEqual(stdout.getvalue(), "All right, let's dance Rock'n'Roll.\n")
|
2013-10-16 22:24:59 +08:00
|
|
|
|
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):
|
|
|
|
out = StringIO()
|
|
|
|
with self.assertRaises(CommandError):
|
|
|
|
management.call_command('hal', stdout=out)
|
|
|
|
|
2014-08-16 23:21:14 +08:00
|
|
|
def test_output_transaction(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('transaction', stdout=out, no_color=True)
|
2014-08-19 22:56:01 +08:00
|
|
|
output = out.getvalue().strip()
|
|
|
|
self.assertTrue(output.startswith(connection.ops.start_transaction_sql()))
|
|
|
|
self.assertTrue(output.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
|
|
|
|
|
2013-02-13 03:50:47 +08:00
|
|
|
|
|
|
|
class UtilsTests(SimpleTestCase):
|
|
|
|
|
|
|
|
def test_no_existent_external_program(self):
|
|
|
|
self.assertRaises(CommandError, popen_wrapper, ['a_42_command_that_doesnt_exist_42'])
|