Example #1
0
 def test_switch_locale(self):
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('simple'), "Simple")
     activate('tr')
     self.assertEqual(bundle.format('simple'), "Basit")
     deactivate()
     self.assertEqual(bundle.format('simple'), "Simple")
Example #2
0
 def test_require_activate_after_activate(self):
     bundle = Bundle(['tests/main.ftl'],
                     default_locale='en',
                     require_activate=True)
     activate('en')
     self.assertEqual(bundle.format('simple'), 'Simple')
     deactivate()
     self.assertRaises(NoLocaleSet, bundle.format, 'simple')
Example #3
0
    def test_lazy(self):
        bundle = Bundle(['tests/main.ftl'], default_locale='en')

        l = bundle.format_lazy('simple')
        self.assertEqual(force_text(l), 'Simple')
        activate('fr-FR')
        self.assertEqual(force_text(l), 'Facile')
        deactivate()
        self.assertEqual(force_text(l), 'Simple')
Example #4
0
    def test_check_all(self):
        bundle = Bundle(['tests/errors.ftl'], default_locale='en')
        errors = bundle.check_all(['en'])
        assert len(errors) == 2
        assert errors[0][0] is None
        assert isinstance(errors[0][1], FluentJunkFound)

        assert errors[1][0] == 'this-has-an-error'
        assert isinstance(errors[1][1], TypeError)
        assert errors[1][1].args == ("NUMBER() got an unexpected keyword argument 'xxx'",)
Example #5
0
 def test_number_formatting(self):
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('with-number-argument', {'points': 1234567}),
                      'Score: \u20681,234,567\u2069')
     activate('fr-FR')
     self.assertEqual(bundle.format('with-number-argument', {'points': 1234567}),
                      'Points: \u20681\u202f234\u202f567\u2069')
     deactivate()
     self.assertEqual(bundle.format('with-number-argument', {'points': 1234567}),
                      'Score: \u20681,234,567\u2069')
Example #6
0
    def test_number_formatting_for_fallback(self):
        # When we fall back to a default, number formatting
        # should be consistent with the language.
        # German locale: 1.234.567
        # System locale  (would probably be 'en',): 1,234,567
        # French locale: 1 234 567⁩

        bundle = Bundle(['tests/main.ftl'], default_locale='fr-FR')
        activate('de')
        # Should get French words and formatting
        self.assertEqual(bundle.format('with-number-argument', {'points': 1234567}),
                         'Points: \u20681\u202f234\u202f567\u2069')
Example #7
0
    def test_lazy_with_require_activate(self):
        bundle = Bundle(['tests/main.ftl'],
                        default_locale='en',
                        require_activate=True)
        self.assertRaises(NoLocaleSet, bundle.format, 'simple')
        msg = bundle.format_lazy('simple')

        self.assertRaises(NoLocaleSet, force_text, msg)

        activate('en')
        self.assertEqual(force_text(msg), 'Simple')
        activate('fr-FR')
        self.assertEqual(force_text(msg), 'Facile')
Example #8
0
    def test_logged_runtime_errors(self):
        bundle = Bundle(['tests/main.ftl'], default_locale='en')

        def run(locale_expected):
            with LogCapture() as log:
                self.assertEqual(bundle.format('with-argument', {}),
                                 'Hello to \u2068user\u2069.')
                this_file = os.path.abspath(__file__)
                ftl_filename = os.path.normpath(os.path.join(
                    this_file, '..', 'locales', 'en', 'tests', 'main.ftl'
                ))
                log.check_present(
                    (
                        'django_ftl.message_errors',
                        'ERROR',
                        "FTL exception for locale [%s], message 'with-argument', args {}: FluentReferenceError(%s'%s:5:28: Unknown external: user'%s)" % (
                            locale_expected,
                            'u' if six.PY2 else '',
                            ftl_filename,
                            ',' if sys.version_info < (3, 7) else ''
                        )
                    )
                )

        # Run multiple times, because second time has a different path due to caching
        run('None')
        run('None')

        activate('en')
        run('en')
        run('en')
Example #9
0
    def test_two_threads(self):
        # Not a proof, but a demonstration that a single Bundle can handle
        # threads with different locale values without getting confused.

        bundle = Bundle(['tests/main.ftl'],
                        default_locale='en',
                        require_activate=True)
        lock = threading.Lock()

        output = []

        # Primitive coordination mechanism to ensure we
        # are getting interleaving.
        def wait_until_output(length):
            while True:
                with lock:
                    if len(output) < length:
                        time.sleep(0)
                    else:
                        return

        def thread_1():
            with lock:
                activate('en')
                output.append((1, bundle.format('simple')))
            wait_until_output(2)
            with lock:
                # Should still be in English,
                output.append((1, bundle.format('simple')))

        def thread_2():
            # Make sure thread_1 goes first:
            wait_until_output(1)
            with lock:
                activate('fr-FR')
                output.append((2, bundle.format('simple')))
            wait_until_output(3)
            with lock:
                # Should still be French
                output.append((2, bundle.format('simple')))
                activate('en')
                # Should allow switching
                output.append((2, bundle.format('simple')))

        t1 = threading.Thread(target=thread_1)
        t2 = threading.Thread(target=thread_2)
        t1.start()
        t2.start()
        t1.join()
        t2.join()

        self.assertEqual(output,
                         [
                             (1, 'Simple'),
                             (2, 'Facile'),
                             (1, 'Simple'),
                             (2, 'Facile'),
                             (2, 'Simple'),
                         ])
Example #10
0
 def test_override(self):
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('simple'), "Simple")
     with override('tr'):
         self.assertEqual(bundle.format('simple'), "Basit")
         with override('fr-FR'):
             self.assertEqual(bundle.format('simple'), "Facile")
         self.assertEqual(bundle.format('simple'), "Basit")
     self.assertEqual(bundle.format('simple'), "Simple")
Example #11
0
    def test_use_isolating(self):
        bundle_1 = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle_1.format('with-argument', {'user': '******'}),
                         'Hello to \u2068Horace\u2069.')

        bundle_2 = Bundle(['tests/main.ftl'], default_locale='en', use_isolating=False)
        self.assertEqual(bundle_2.format('with-argument', {'user': '******'}),
                         'Hello to Horace.')
Example #12
0
    def test_locale_matching_case_insensitive(self):
        activate('fr-fr')
        bundle = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle.format('simple'), 'Facile')

        activate('EN')
        bundle = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle.format('simple'), 'Simple')
Example #13
0
    def test_locale_range_lookup_list(self):
        # fr-XY doesn't exist, fr-FR does
        activate('fr-XY, fr-FR')
        bundle = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle.format('simple'), 'Facile')

        # en-GB doesn't exist, en does
        activate('en-GB, en')
        bundle = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle.format('simple'), 'Simple')
Example #14
0
    def test_locale_range_lookup_missing(self):
        # There is no fr or fr-XY (only fr-FR), neither of these should fallback
        # to fr-FR
        activate('fr')
        bundle = Bundle(['tests/main.ftl'], default_locale='en')
        self.assertEqual(bundle.format('simple'), 'Simple')

        activate('fr-XY')
        bundle = Bundle(['tests/main.ftl'])
        self.assertEqual(bundle.format('simple'), 'Simple')
Example #15
0
 def test_load_multiple_with_some_missing(self):
     bundle = Bundle(['tests/only_in_en.ftl',
                      'tests/main.ftl'],
                     default_locale='en')
     activate('fr-FR')
     self.assertEqual(bundle.format('simple'), "Facile")
Example #16
0
 def test_find_messages(self):
     bundle = Bundle(['tests/main.ftl'])
     activate('en')
     self.assertEqual(bundle.format('simple'), "Simple")
Example #17
0
 def test_default_locale_lazy(self):
     # Ensure that bundle is retrieving LANGUAGE_CODE lazily. (The only real
     # reason for this at the moment is to make testing easier).
     bundle = Bundle(['tests/main.ftl'])
     with override_settings(LANGUAGE_CODE='fr-FR'):
         self.assertEqual(bundle.format('simple'), 'Facile')
Example #18
0
 def test_no_locale_set_with_missing_default(self):
     bundle = Bundle(['tests/main.ftl'])
     self.assertRaises(FileNotFoundError, bundle.format, 'simple')
Example #19
0
 def test_no_locale_set_with_good_default_from_settings(self):
     bundle = Bundle(['tests/main.ftl'])
     self.assertEqual(bundle.format('simple'), 'Simple')
Example #20
0
 def test_no_locale_set_with_good_default(self):
     bundle = Bundle(['tests/main.ftl'],
                     default_locale='en')
     self.assertEqual(bundle.format('simple'), 'Simple')
Example #21
0
 def test_handle_underscores_in_locale_name(self):
     activate('fr_FR')
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('simple'), 'Facile')
Example #22
0
 def test_locale_matching_for_default_locale(self):
     activate('zh')
     bundle = Bundle(['tests/main.ftl'], default_locale='EN')  # 'EN' not 'en'
     self.assertEqual(bundle.format('simple'), 'Simple')
Example #23
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

import six
from django.utils.html import SafeText, mark_safe

from django_ftl.bundles import Bundle

from .base import TestBase

text_type = six.text_type

bundle = Bundle(['tests/escaping.ftl'], default_locale='en')


class TestBundles(TestBase):
    maxDiff = None

    def test_html(self):
        val = bundle.format('my-test-item-html', {'name': 'Me & My Friends'})
        self.assertEqual(
            val,
            'Welcome to \u2068Jack &amp; Jill\u2069. \u2068Jack &amp; Jill <i>ROCK</i> - <b>Yeah!</b>\u2069. Your name is \u2068Me &amp; My Friends\u2069.'
        )
        self.assertEqual(type(val), SafeText)

    def test_html_mark_safe(self):
        val = bundle.format('my-test-item-html',
                            {'name': mark_safe('<b>Me</b>')})
        self.assertEqual(
            val,
Example #24
0
 def test_fallback(self):
     activate('tr')
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('missing-from-others'), "Missing from others")
Example #25
0
 def test_locale_range_lookup(self):
     # en-US does not exist, but 'en' does and should be found
     activate('en-US')
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('simple'), 'Simple')
Example #26
0
 def test_missing(self):
     activate('en')
     bundle = Bundle(['tests/main.ftl'], default_locale='en')
     self.assertEqual(bundle.format('missing-from-all'), "???")
Example #27
0
 def test_no_locale_set_with_default_set(self):
     bundle = Bundle(['tests/main.ftl'],
                     require_activate=True,
                     default_locale='en')
     self.assertRaises(NoLocaleSet, bundle.format, 'simple')
Example #28
0
 def test_missing_ftl_file(self):
     activate('en')
     bundle = Bundle(['tests/non-existant.ftl'], default_locale='en')
     self.assertRaises(FileNotFoundError, bundle.format, 'simple')
Example #29
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

from django_ftl.bundles import Bundle

simple_view = Bundle(['tests/simple_view.ftl'],
                     default_locale='en',
                     use_isolating=False,
                     require_activate=True)
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

from django_ftl.bundles import Bundle

# This module should raise an exception if you try to import it


main = Bundle(['tests/main.ftl'],
              default_locale='en',
              require_activate=True)


class MyThing(object):
    my_label = main.format('simple')