2012-05-27 02:50:44 +08:00
|
|
|
import sys
|
2010-09-13 13:28:01 +08:00
|
|
|
from StringIO import StringIO
|
|
|
|
|
|
|
|
from django.core import management
|
|
|
|
from django.core.management.base import CommandError
|
2011-10-14 02:04:12 +08:00
|
|
|
from django.test import TestCase
|
2011-11-07 19:28:31 +08:00
|
|
|
from django.utils import translation
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2010-09-13 13:28:01 +08:00
|
|
|
|
|
|
|
class CommandTests(TestCase):
|
|
|
|
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())
|