2014-11-15 22:56:37 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-11-04 20:50:16 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-11-15 22:56:37 +00:00
|
|
|
|
2015-01-28 12:35:27 +00:00
|
|
|
import gettext as gettext_module
|
2010-10-10 16:38:28 +00:00
|
|
|
import os
|
2014-03-24 13:03:06 +00:00
|
|
|
import shutil
|
2014-01-04 21:26:24 +00:00
|
|
|
import stat
|
2013-10-28 13:17:48 +00:00
|
|
|
import unittest
|
2015-12-13 14:15:56 +00:00
|
|
|
from subprocess import Popen
|
2010-10-10 16:38:28 +00:00
|
|
|
|
2015-01-28 12:35:27 +00:00
|
|
|
from django.core.management import (
|
|
|
|
CommandError, call_command, execute_from_command_line,
|
|
|
|
)
|
2015-12-04 22:53:15 +00:00
|
|
|
from django.core.management.commands.makemessages import \
|
|
|
|
Command as MakeMessagesCommand
|
2013-10-28 13:17:48 +00:00
|
|
|
from django.core.management.utils import find_command
|
2015-12-13 14:15:56 +00:00
|
|
|
from django.test import SimpleTestCase, mock, override_settings
|
2014-11-28 22:47:53 +00:00
|
|
|
from django.test.utils import captured_stderr, captured_stdout
|
2015-11-04 20:50:16 +00:00
|
|
|
from django.utils import six, translation
|
2012-12-08 10:13:52 +00:00
|
|
|
from django.utils._os import upath
|
2015-01-28 12:35:27 +00:00
|
|
|
from django.utils.encoding import force_text
|
2012-08-08 21:40:20 +00:00
|
|
|
from django.utils.six import StringIO
|
2015-01-28 12:35:27 +00:00
|
|
|
from django.utils.translation import ugettext
|
2010-10-10 16:38:28 +00:00
|
|
|
|
2013-10-28 13:17:48 +00:00
|
|
|
has_msgfmt = find_command('msgfmt')
|
2010-10-10 16:38:28 +00:00
|
|
|
|
2012-09-07 18:01:46 +00:00
|
|
|
|
2013-10-28 13:17:48 +00:00
|
|
|
@unittest.skipUnless(has_msgfmt, 'msgfmt is mandatory for compilation tests')
|
2013-01-17 03:35:46 +00:00
|
|
|
class MessageCompilationTests(SimpleTestCase):
|
2010-10-10 16:38:28 +00:00
|
|
|
|
2014-03-24 13:03:06 +00:00
|
|
|
test_dir = os.path.abspath(os.path.join(os.path.dirname(upath(__file__)), 'commands'))
|
|
|
|
|
2010-10-10 16:38:28 +00:00
|
|
|
def setUp(self):
|
|
|
|
self._cwd = os.getcwd()
|
2013-02-27 01:27:35 +00:00
|
|
|
self.addCleanup(os.chdir, self._cwd)
|
2014-03-24 13:03:06 +00:00
|
|
|
os.chdir(self.test_dir)
|
|
|
|
|
|
|
|
def _rmrf(self, dname):
|
|
|
|
if os.path.commonprefix([self.test_dir, os.path.abspath(dname)]) != self.test_dir:
|
|
|
|
return
|
|
|
|
shutil.rmtree(dname)
|
2010-10-10 16:38:28 +00:00
|
|
|
|
2013-02-27 01:27:35 +00:00
|
|
|
def rmfile(self, filepath):
|
|
|
|
if os.path.exists(filepath):
|
|
|
|
os.remove(filepath)
|
2010-10-10 16:38:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PoFileTests(MessageCompilationTests):
|
|
|
|
|
2012-09-07 18:01:46 +00:00
|
|
|
LOCALE = 'es_AR'
|
|
|
|
MO_FILE = 'locale/%s/LC_MESSAGES/django.mo' % LOCALE
|
2011-12-11 00:07:06 +00:00
|
|
|
|
2010-10-10 16:38:28 +00:00
|
|
|
def test_bom_rejection(self):
|
2012-12-08 10:13:52 +00:00
|
|
|
with self.assertRaises(CommandError) as cm:
|
2013-11-23 02:47:04 +00:00
|
|
|
call_command('compilemessages', locale=[self.LOCALE], stdout=StringIO())
|
2012-12-08 10:13:52 +00:00
|
|
|
self.assertIn("file has a BOM (Byte Order Mark)", cm.exception.args[0])
|
2010-12-04 07:28:12 +00:00
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE))
|
2011-12-11 00:07:06 +00:00
|
|
|
|
2014-01-04 21:26:24 +00:00
|
|
|
def test_no_write_access(self):
|
|
|
|
mo_file_en = 'locale/en/LC_MESSAGES/django.mo'
|
|
|
|
err_buffer = StringIO()
|
|
|
|
# put file in read-only mode
|
|
|
|
old_mode = os.stat(mo_file_en).st_mode
|
|
|
|
os.chmod(mo_file_en, stat.S_IREAD)
|
|
|
|
try:
|
|
|
|
call_command('compilemessages', locale=['en'], stderr=err_buffer, verbosity=0)
|
|
|
|
err = err_buffer.getvalue()
|
2015-11-19 20:55:00 +00:00
|
|
|
self.assertIn("not writable location", force_text(err))
|
2014-01-04 21:26:24 +00:00
|
|
|
finally:
|
|
|
|
os.chmod(mo_file_en, old_mode)
|
|
|
|
|
2011-12-11 00:07:06 +00:00
|
|
|
|
|
|
|
class PoFileContentsTests(MessageCompilationTests):
|
|
|
|
# Ticket #11240
|
|
|
|
|
2013-10-23 10:09:29 +00:00
|
|
|
LOCALE = 'fr'
|
|
|
|
MO_FILE = 'locale/%s/LC_MESSAGES/django.mo' % LOCALE
|
2011-12-11 00:07:06 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(PoFileContentsTests, self).setUp()
|
2014-03-24 13:03:06 +00:00
|
|
|
self.addCleanup(os.unlink, os.path.join(self.test_dir, self.MO_FILE))
|
2011-12-11 00:07:06 +00:00
|
|
|
|
|
|
|
def test_percent_symbol_in_po_file(self):
|
2013-11-23 02:47:04 +00:00
|
|
|
call_command('compilemessages', locale=[self.LOCALE], stdout=StringIO())
|
2011-12-11 00:07:06 +00:00
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE))
|
|
|
|
|
|
|
|
|
2012-06-07 09:23:25 +00:00
|
|
|
class MultipleLocaleCompilationTests(MessageCompilationTests):
|
2014-03-24 13:03:06 +00:00
|
|
|
|
2012-06-07 09:23:25 +00:00
|
|
|
MO_FILE_HR = None
|
|
|
|
MO_FILE_FR = None
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(MultipleLocaleCompilationTests, self).setUp()
|
2014-03-24 13:03:06 +00:00
|
|
|
localedir = os.path.join(self.test_dir, 'locale')
|
2013-02-27 01:27:35 +00:00
|
|
|
self.MO_FILE_HR = os.path.join(localedir, 'hr/LC_MESSAGES/django.mo')
|
|
|
|
self.MO_FILE_FR = os.path.join(localedir, 'fr/LC_MESSAGES/django.mo')
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(localedir, self.MO_FILE_HR))
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(localedir, self.MO_FILE_FR))
|
2012-06-07 09:23:25 +00:00
|
|
|
|
|
|
|
def test_one_locale(self):
|
2015-01-21 16:55:57 +00:00
|
|
|
with override_settings(LOCALE_PATHS=[os.path.join(self.test_dir, 'locale')]):
|
2014-03-24 13:03:06 +00:00
|
|
|
call_command('compilemessages', locale=['hr'], stdout=StringIO())
|
2012-06-07 09:23:25 +00:00
|
|
|
|
2014-03-24 13:03:06 +00:00
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE_HR))
|
2012-06-07 09:23:25 +00:00
|
|
|
|
|
|
|
def test_multiple_locales(self):
|
2015-01-21 16:55:57 +00:00
|
|
|
with override_settings(LOCALE_PATHS=[os.path.join(self.test_dir, 'locale')]):
|
2014-03-24 13:03:06 +00:00
|
|
|
call_command('compilemessages', locale=['hr', 'fr'], stdout=StringIO())
|
|
|
|
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE_HR))
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE_FR))
|
|
|
|
|
|
|
|
|
|
|
|
class ExcludedLocaleCompilationTests(MessageCompilationTests):
|
|
|
|
|
|
|
|
test_dir = os.path.abspath(os.path.join(os.path.dirname(upath(__file__)), 'exclude'))
|
|
|
|
|
|
|
|
MO_FILE = 'locale/%s/LC_MESSAGES/django.mo'
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(ExcludedLocaleCompilationTests, self).setUp()
|
|
|
|
|
|
|
|
shutil.copytree('canned_locale', 'locale')
|
|
|
|
self.addCleanup(self._rmrf, os.path.join(self.test_dir, 'locale'))
|
|
|
|
|
2014-05-01 07:03:24 +00:00
|
|
|
def test_command_help(self):
|
2014-11-28 22:47:53 +00:00
|
|
|
with captured_stdout(), captured_stderr():
|
2014-05-01 07:03:24 +00:00
|
|
|
# `call_command` bypasses the parser; by calling
|
|
|
|
# `execute_from_command_line` with the help subcommand we
|
|
|
|
# ensure that there are no issues with the parser itself.
|
|
|
|
execute_from_command_line(['django-admin', 'help', 'compilemessages'])
|
|
|
|
|
2014-03-24 13:03:06 +00:00
|
|
|
def test_one_locale_excluded(self):
|
|
|
|
call_command('compilemessages', exclude=['it'], stdout=StringIO())
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE % 'fr'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'it'))
|
|
|
|
|
|
|
|
def test_multiple_locales_excluded(self):
|
|
|
|
call_command('compilemessages', exclude=['it', 'fr'], stdout=StringIO())
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'fr'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'it'))
|
|
|
|
|
|
|
|
def test_one_locale_excluded_with_locale(self):
|
|
|
|
call_command('compilemessages', locale=['en', 'fr'], exclude=['fr'], stdout=StringIO())
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'fr'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'it'))
|
2012-06-07 09:23:25 +00:00
|
|
|
|
2014-03-24 13:03:06 +00:00
|
|
|
def test_multiple_locales_excluded_with_locale(self):
|
|
|
|
call_command('compilemessages', locale=['en', 'fr', 'it'], exclude=['fr', 'it'],
|
|
|
|
stdout=StringIO())
|
|
|
|
self.assertTrue(os.path.exists(self.MO_FILE % 'en'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'fr'))
|
|
|
|
self.assertFalse(os.path.exists(self.MO_FILE % 'it'))
|
2013-02-12 16:58:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CompilationErrorHandling(MessageCompilationTests):
|
|
|
|
def test_error_reported_by_msgfmt(self):
|
2015-11-04 20:50:16 +00:00
|
|
|
# po file contains wrong po formatting.
|
|
|
|
mo_file = 'locale/ja/LC_MESSAGES/django.mo'
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(self.test_dir, mo_file))
|
2013-02-12 16:58:49 +00:00
|
|
|
with self.assertRaises(CommandError):
|
2015-11-04 20:50:16 +00:00
|
|
|
call_command('compilemessages', locale=['ja'], verbosity=0)
|
|
|
|
|
|
|
|
def test_msgfmt_error_including_non_ascii(self):
|
|
|
|
# po file contains invalid msgstr content (triggers non-ascii error content).
|
|
|
|
mo_file = 'locale/ko/LC_MESSAGES/django.mo'
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(self.test_dir, mo_file))
|
2016-02-20 08:36:01 +00:00
|
|
|
# Make sure the output of msgfmt is unaffected by the current locale.
|
|
|
|
env = os.environ.copy()
|
2016-05-27 23:45:37 +00:00
|
|
|
env.update({str('LANG'): str('C')})
|
2016-04-08 02:04:45 +00:00
|
|
|
with mock.patch('django.core.management.utils.Popen', lambda *args, **kwargs: Popen(*args, env=env, **kwargs)):
|
2016-02-20 08:36:01 +00:00
|
|
|
if six.PY2:
|
|
|
|
# Various assertRaises on PY2 don't support unicode error messages.
|
|
|
|
try:
|
|
|
|
call_command('compilemessages', locale=['ko'], verbosity=0)
|
|
|
|
except CommandError as err:
|
2016-06-01 13:20:57 +00:00
|
|
|
self.assertIn("' cannot start a field name", six.text_type(err))
|
2016-02-20 08:36:01 +00:00
|
|
|
else:
|
|
|
|
cmd = MakeMessagesCommand()
|
|
|
|
if cmd.gettext_version < (0, 18, 3):
|
|
|
|
raise unittest.SkipTest("python-brace-format is a recent gettext addition.")
|
2016-06-01 13:20:57 +00:00
|
|
|
with self.assertRaisesMessage(CommandError, "' cannot start a field name"):
|
2016-02-20 08:36:01 +00:00
|
|
|
call_command('compilemessages', locale=['ko'], verbosity=0)
|
2014-11-15 22:56:37 +00:00
|
|
|
|
|
|
|
|
2015-04-16 11:55:37 +00:00
|
|
|
class ProjectAndAppTests(MessageCompilationTests):
|
2014-11-15 22:56:37 +00:00
|
|
|
LOCALE = 'ru'
|
2015-04-16 11:55:37 +00:00
|
|
|
PROJECT_MO_FILE = 'locale/%s/LC_MESSAGES/django.mo' % LOCALE
|
|
|
|
APP_MO_FILE = 'app_with_locale/locale/%s/LC_MESSAGES/django.mo' % LOCALE
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(ProjectAndAppTests, self).setUp()
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(self.test_dir, self.PROJECT_MO_FILE))
|
|
|
|
self.addCleanup(self.rmfile, os.path.join(self.test_dir, self.APP_MO_FILE))
|
|
|
|
|
|
|
|
|
|
|
|
class FuzzyTranslationTest(ProjectAndAppTests):
|
2014-11-15 22:56:37 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(FuzzyTranslationTest, self).setUp()
|
|
|
|
gettext_module._translations = {} # flush cache or test will be useless
|
|
|
|
|
|
|
|
def test_nofuzzy_compiling(self):
|
2015-01-21 16:55:57 +00:00
|
|
|
with override_settings(LOCALE_PATHS=[os.path.join(self.test_dir, 'locale')]):
|
2014-11-15 22:56:37 +00:00
|
|
|
call_command('compilemessages', locale=[self.LOCALE], stdout=StringIO())
|
|
|
|
with translation.override(self.LOCALE):
|
|
|
|
self.assertEqual(ugettext('Lenin'), force_text('Ленин'))
|
|
|
|
self.assertEqual(ugettext('Vodka'), force_text('Vodka'))
|
|
|
|
|
|
|
|
def test_fuzzy_compiling(self):
|
2015-01-21 16:55:57 +00:00
|
|
|
with override_settings(LOCALE_PATHS=[os.path.join(self.test_dir, 'locale')]):
|
2014-11-15 22:56:37 +00:00
|
|
|
call_command('compilemessages', locale=[self.LOCALE], fuzzy=True, stdout=StringIO())
|
|
|
|
with translation.override(self.LOCALE):
|
|
|
|
self.assertEqual(ugettext('Lenin'), force_text('Ленин'))
|
|
|
|
self.assertEqual(ugettext('Vodka'), force_text('Водка'))
|
2015-04-16 11:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AppCompilationTest(ProjectAndAppTests):
|
|
|
|
|
|
|
|
def test_app_locale_compiled(self):
|
|
|
|
call_command('compilemessages', locale=[self.LOCALE], stdout=StringIO())
|
|
|
|
self.assertTrue(os.path.exists(self.PROJECT_MO_FILE))
|
|
|
|
self.assertTrue(os.path.exists(self.APP_MO_FILE))
|