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(),
|
2010-09-13 13:28:01 +08:00
|
|
|
"I don't feel like dancing Rock'n'Roll.")
|
|
|
|
|
|
|
|
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(),
|
2010-09-13 13:28:01 +08:00
|
|
|
"I don't feel like dancing Jive.")
|
|
|
|
|
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):
|
2011-11-07 19:28:31 +08:00
|
|
|
self.assertRaises(CommandError, management.call_command, ('explode',))
|