~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_i18n.py

  • Committer: Martin von Gagern
  • Date: 2011-06-01 12:53:56 UTC
  • mto: This revision was merged to the branch mainline in revision 6009.
  • Revision ID: martin.vgagern@gmx.net-20110601125356-lwozv2vecea6hxfz
Change from no_decorate to classify as name for the argument.

The command line switch remains as --no-classify, to keep backwards
compatibility.  Users are free to include --no-classify in an alias, and
still use --classify to change back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for bzrlib.i18n"""
18
18
 
19
 
from bzrlib import (i18n, 
20
 
                    tests, 
21
 
                    errors, 
22
 
                    workingtree,
23
 
                    )
 
19
from bzrlib import i18n, tests
 
20
 
 
21
 
24
22
 
25
23
 
26
24
class ZzzTranslations(object):
32
30
    _null_translation = i18n._gettext.NullTranslations()
33
31
 
34
32
    def zzz(self, s):
35
 
        return u'zz\xe5{{%s}}' % s
 
33
        return u'zz{{%s}}' % s
36
34
 
37
35
    def ugettext(self, s):
38
36
        return self.zzz(self._null_translation.ugettext(s))
51
49
        trans = ZzzTranslations()
52
50
 
53
51
        t = trans.zzz('msg')
54
 
        self._check_exact(u'zz\xe5{{msg}}', t)
 
52
        self._check_exact(u'zz{{msg}}', t)
55
53
 
56
54
        t = trans.ugettext('msg')
57
 
        self._check_exact(u'zz\xe5{{msg}}', t)
 
55
        self._check_exact(u'zz{{msg}}', t)
58
56
 
59
57
        t = trans.ungettext('msg1', 'msg2', 0)
60
 
        self._check_exact(u'zz\xe5{{msg2}}', t)
 
58
        self._check_exact(u'zz{{msg2}}', t)
61
59
        t = trans.ungettext('msg1', 'msg2', 2)
62
 
        self._check_exact(u'zz\xe5{{msg2}}', t)
 
60
        self._check_exact(u'zz{{msg2}}', t)
63
61
 
64
62
        t = trans.ungettext('msg1', 'msg2', 1)
65
 
        self._check_exact(u'zz\xe5{{msg1}}', t)
 
63
        self._check_exact(u'zz{{msg1}}', t)
66
64
 
67
65
 
68
66
class TestGetText(tests.TestCase):
69
67
 
70
68
    def setUp(self):
71
69
        super(TestGetText, self).setUp()
72
 
        self.overrideAttr(i18n, '_translations', ZzzTranslations())
 
70
        self.overrideAttr(i18n, '_translation', ZzzTranslations())
73
71
 
74
72
    def test_oneline(self):
75
 
        self.assertEqual(u"zz\xe5{{spam ham eggs}}",
 
73
        self.assertEqual(u"zz{{spam ham eggs}}",
76
74
                         i18n.gettext("spam ham eggs"))
77
75
 
78
76
    def test_multiline(self):
79
 
        self.assertEqual(u"zz\xe5{{spam\nham\n\neggs\n}}",
 
77
        self.assertEqual(u"zz{{spam\nham\n\neggs\n}}",
80
78
                         i18n.gettext("spam\nham\n\neggs\n"))
81
79
 
82
80
 
84
82
 
85
83
    def setUp(self):
86
84
        super(TestGetTextPerParagraph, self).setUp()
87
 
        self.overrideAttr(i18n, '_translations', ZzzTranslations())
 
85
        self.overrideAttr(i18n, '_translation', ZzzTranslations())
88
86
 
89
87
    def test_oneline(self):
90
 
        self.assertEqual(u"zz\xe5{{spam ham eggs}}",
 
88
        self.assertEqual(u"zz{{spam ham eggs}}",
91
89
                         i18n.gettext_per_paragraph("spam ham eggs"))
92
90
 
93
91
    def test_multiline(self):
94
 
        self.assertEqual(u"zz\xe5{{spam\nham}}\n\nzz\xe5{{eggs\n}}",
 
92
        self.assertEqual(u"zz{{spam\nham}}\n\nzz{{eggs\n}}",
95
93
                         i18n.gettext_per_paragraph("spam\nham\n\neggs\n"))
96
 
 
97
 
 
98
 
class TestInstall(tests.TestCase):
99
 
 
100
 
    def setUp(self):
101
 
        super(TestInstall, self).setUp()
102
 
        # Restore a proper env to test translation installation
103
 
        self.overrideAttr(i18n, '_translations', None)
104
 
 
105
 
    def test_custom_languages(self):
106
 
        i18n.install('nl:fy')
107
 
        # Whether we found a valid tranlsation or not doesn't matter, we got
108
 
        # one and _translations is not None anymore.
109
 
        self.assertIsInstance(i18n._translations,
110
 
                              i18n._gettext.NullTranslations)
111
 
 
112
 
    def test_no_env_variables(self):
113
 
        self.overrideEnv('LANGUAGE', None)
114
 
        self.overrideEnv('LC_ALL', None)
115
 
        self.overrideEnv('LC_MESSAGES', None)
116
 
        self.overrideEnv('LANG', None)
117
 
        i18n.install()
118
 
        # Whether we found a valid tranlsation or not doesn't matter, we got
119
 
        # one and _translations is not None anymore.
120
 
        self.assertIsInstance(i18n._translations,
121
 
                              i18n._gettext.NullTranslations)
122
 
 
123
 
    def test_disable_i18n(self):
124
 
        i18n.disable_i18n()
125
 
        i18n.install()
126
 
        # It's disabled, you can't install anything and we fallback to null
127
 
        self.assertIsInstance(i18n._translations,
128
 
                              i18n._gettext.NullTranslations)
129
 
 
130
 
 
131
 
class TestTranslate(tests.TestCaseWithTransport):
132
 
 
133
 
    def setUp(self):
134
 
        super(TestTranslate, self).setUp()
135
 
        self.overrideAttr(i18n, '_translations', ZzzTranslations())
136
 
 
137
 
    def test_error_message_translation(self):
138
 
        """do errors get translated?"""
139
 
        err = None
140
 
        tree = self.make_branch_and_tree('.')
141
 
        try:
142
 
            workingtree.WorkingTree.open('./foo')
143
 
        except errors.NotBranchError,e:
144
 
            err = str(e)
145
 
        self.assertContainsRe(err, 
146
 
                              u"zz\xe5{{Not a branch: .*}}".encode("utf-8"))
147
 
 
148
 
    def test_topic_help_translation(self):
149
 
        """does topic help get translated?"""
150
 
        from bzrlib import help
151
 
        from StringIO import StringIO
152
 
        out = StringIO()
153
 
        help.help("authentication", out)
154
 
        self.assertContainsRe(out.getvalue(), "zz\xe5{{Authentication Settings")