2014-03-22 23:52:05 +08:00
|
|
|
import os
|
2012-05-27 02:50:44 +08:00
|
|
|
import sys
|
2014-07-24 20:51:47 +08:00
|
|
|
import warnings
|
2010-09-13 13:28:01 +08:00
|
|
|
|
|
|
|
from django.core import management
|
2013-02-13 03:50:47 +08:00
|
|
|
from django.core.management import CommandError
|
2014-03-22 23:52:05 +08:00
|
|
|
from django.core.management.utils import find_command, popen_wrapper
|
2013-02-13 03:50:47 +08:00
|
|
|
from django.test import SimpleTestCase
|
2011-11-07 19:28:31 +08:00
|
|
|
from django.utils import translation
|
2014-07-24 20:51:47 +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)
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(out.getvalue(),
|
2012-05-19 19:51:54 +08:00
|
|
|
"I don't feel like dancing Rock'n'Roll.\n")
|
2010-09-13 13:28:01 +08:00
|
|
|
|
|
|
|
def test_command_style(self):
|
|
|
|
out = StringIO()
|
|
|
|
management.call_command('dance', style='Jive', stdout=out)
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(out.getvalue(),
|
2012-05-19 19:51:54 +08:00
|
|
|
"I don't feel like dancing Jive.\n")
|
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")
|
|
|
|
old_stderr = sys.stderr
|
|
|
|
sys.stderr = err = StringIO()
|
|
|
|
try:
|
|
|
|
with self.assertRaises(SystemExit):
|
|
|
|
management.ManagementUtility(['manage.py', 'dance', '--example=raise']).execute()
|
|
|
|
finally:
|
|
|
|
sys.stderr = old_stderr
|
|
|
|
self.assertIn("CommandError", err.getvalue())
|
2013-02-04 07:53:48 +08:00
|
|
|
|
|
|
|
def test_default_en_us_locale_set(self):
|
|
|
|
# Forces en_us when set to true
|
|
|
|
out = StringIO()
|
|
|
|
with translation.override('pl'):
|
|
|
|
management.call_command('leave_locale_alone_false', stdout=out)
|
|
|
|
self.assertEqual(out.getvalue(), "en-us\n")
|
|
|
|
|
|
|
|
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
|
|
|
|
|
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-07-24 20:51:47 +08:00
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings("ignore", category=RemovedInDjango20Warning)
|
|
|
|
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
|
|
|
|
old_stdout, old_stderr = sys.stdout, sys.stderr
|
|
|
|
sys.stdout, sys.stderr = StringIO(), StringIO()
|
|
|
|
try:
|
|
|
|
management.execute_from_command_line(['django-admin', 'optparse_cmd'])
|
|
|
|
finally:
|
|
|
|
output = sys.stdout.getvalue()
|
|
|
|
sys.stdout, sys.stderr = old_stdout, old_stderr
|
|
|
|
self.assertEqual(output, "All right, let's dance Rock'n'Roll.\n")
|
|
|
|
|
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'])
|