2013-11-02 17:28:22 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
from django import conf
|
2013-11-05 21:30:31 +08:00
|
|
|
from django.contrib import admin
|
2013-11-02 17:28:22 +08:00
|
|
|
from django.test import TestCase, override_settings
|
|
|
|
from django.utils.autoreload import gen_filenames
|
|
|
|
|
|
|
|
LOCALE_PATH = os.path.join(os.path.dirname(__file__), 'locale')
|
|
|
|
|
|
|
|
|
|
|
|
class TestFilenameGenerator(TestCase):
|
|
|
|
def test_django_locales(self):
|
|
|
|
"""
|
|
|
|
Test that gen_filenames() also yields the built-in django locale files.
|
|
|
|
"""
|
|
|
|
filenames = list(gen_filenames())
|
2013-11-05 21:30:31 +08:00
|
|
|
self.assertIn(os.path.join(os.path.dirname(conf.__file__), 'locale',
|
|
|
|
'nl', 'LC_MESSAGES', 'django.mo'),
|
|
|
|
filenames)
|
2013-11-02 17:28:22 +08:00
|
|
|
|
2013-11-05 21:30:31 +08:00
|
|
|
@override_settings(LOCALE_PATHS=(LOCALE_PATH,))
|
|
|
|
def test_locale_paths_setting(self):
|
|
|
|
"""
|
|
|
|
Test that gen_filenames also yields from LOCALE_PATHS locales.
|
|
|
|
"""
|
|
|
|
filenames = list(gen_filenames())
|
|
|
|
self.assertIn(os.path.join(LOCALE_PATH, 'nl', 'LC_MESSAGES', 'django.mo'),
|
|
|
|
filenames)
|
2013-11-02 17:28:22 +08:00
|
|
|
|
2013-11-05 21:30:31 +08:00
|
|
|
@override_settings(INSTALLED_APPS=())
|
|
|
|
def test_project_root_locale(self):
|
|
|
|
"""
|
|
|
|
Test that gen_filenames also yields from the current directory (project
|
|
|
|
root).
|
|
|
|
"""
|
|
|
|
old_cwd = os.getcwd()
|
|
|
|
os.chdir(os.path.dirname(__file__))
|
|
|
|
try:
|
|
|
|
filenames = list(gen_filenames())
|
|
|
|
self.assertIn(
|
|
|
|
os.path.join(LOCALE_PATH, 'nl', 'LC_MESSAGES', 'django.mo'),
|
|
|
|
filenames)
|
|
|
|
finally:
|
|
|
|
os.chdir(old_cwd)
|
2013-11-02 17:28:22 +08:00
|
|
|
|
2013-11-05 21:30:31 +08:00
|
|
|
@override_settings(INSTALLED_APPS=('django.contrib.admin',))
|
2013-11-02 17:28:22 +08:00
|
|
|
def test_app_locales(self):
|
|
|
|
"""
|
2013-11-05 21:30:31 +08:00
|
|
|
Test that gen_filenames also yields from INSTALLED_APPS locales.
|
2013-11-02 17:28:22 +08:00
|
|
|
"""
|
|
|
|
filenames = list(gen_filenames())
|
2013-11-05 21:30:31 +08:00
|
|
|
self.assertIn(os.path.join(os.path.dirname(admin.__file__), 'locale',
|
|
|
|
'nl', 'LC_MESSAGES', 'django.mo'),
|
2013-11-02 17:28:22 +08:00
|
|
|
filenames)
|
2013-11-05 21:30:31 +08:00
|
|
|
|
|
|
|
@override_settings(USE_I18N=False)
|
|
|
|
def test_no_i18n(self):
|
|
|
|
"""
|
|
|
|
If i18n machinery is disabled, there is no need for watching the
|
|
|
|
locale files.
|
|
|
|
"""
|
|
|
|
filenames = list(gen_filenames())
|
|
|
|
self.assertNotIn(
|
|
|
|
os.path.join(os.path.dirname(conf.__file__), 'locale', 'nl',
|
|
|
|
'LC_MESSAGES', 'django.mo'),
|
|
|
|
filenames)
|