annotate babel/messages/tests/frontend.py @ 162:661cb602781d

Add MO file generation. Closes #21.
author cmlenz
date Thu, 21 Jun 2007 14:38:30 +0000
parents ade36d5897f4
children 6655bb6ae28d
rev   line source
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
2 #
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
3 # Copyright (C) 2007 Edgewall Software
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
4 # All rights reserved.
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
5 #
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
8 # are also available at http://babel.edgewall.org/wiki/License.
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
9 #
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
12 # history and logs, available at http://babel.edgewall.org/log/.
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
13
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
14 from datetime import datetime
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
15 from distutils.dist import Distribution
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
16 from distutils.errors import DistutilsOptionError, DistutilsSetupError
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
17 from distutils.log import _global_log
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
18 import doctest
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
19 import os
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
20 import shutil
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
21 from StringIO import StringIO
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
22 import sys
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
23 import time
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
24 import unittest
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
25
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
26 from babel import __version__ as VERSION
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
27 from babel.dates import format_datetime
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
28 from babel.messages import frontend
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
29 from babel.util import LOCALTZ
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
30
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
31
162
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
32 class CompileCatalogTestCase(unittest.TestCase):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
33
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
34 def setUp(self):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
35 self.olddir = os.getcwd()
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
36 self.datadir = os.path.join(os.path.dirname(__file__), 'data')
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
37 os.chdir(self.datadir)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
38 _global_log.threshold = 5 # shut up distutils logging
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
39
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
40 self.dist = Distribution(dict(
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
41 name='TestProject',
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
42 version='0.1',
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
43 packages=['project']
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
44 ))
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
45 self.cmd = frontend.compile_catalog(self.dist)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
46 self.cmd.initialize_options()
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
47
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
48 def tearDown(self):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
49 os.chdir(self.olddir)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
50
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
51 def test_no_locale_specified(self):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
52 self.cmd.directory = 'dummy'
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
53 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
54
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
55 def test_no_directory_or_output_file_specified(self):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
56 self.cmd.locale = 'en_US'
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
57 self.cmd.input_file = 'dummy'
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
58 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
59
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
60 def test_no_directory_or_input_file_specified(self):
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
61 self.cmd.locale = 'en_US'
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
62 self.cmd.output_file = 'dummy'
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
63 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
64
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
65
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
66 class ExtractMessagesTestCase(unittest.TestCase):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
67
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
68 def setUp(self):
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
69 self.olddir = os.getcwd()
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
70 self.datadir = os.path.join(os.path.dirname(__file__), 'data')
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
71 os.chdir(self.datadir)
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
72 _global_log.threshold = 5 # shut up distutils logging
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
73
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
74 self.dist = Distribution(dict(
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
75 name='TestProject',
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
76 version='0.1',
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
77 packages=['project']
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
78 ))
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
79 self.cmd = frontend.extract_messages(self.dist)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
80 self.cmd.initialize_options()
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
81
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
82 def tearDown(self):
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
83 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
84 if os.path.isfile(pot_file):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
85 os.unlink(pot_file)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
86
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
87 os.chdir(self.olddir)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
88
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
89 def test_neither_default_nor_custom_keywords(self):
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
90 self.cmd.output_file = 'dummy'
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
91 self.cmd.no_default_keywords = True
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
92 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
93
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
94 def test_no_output_file_specified(self):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
95 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
96
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
97 def test_both_sort_output_and_sort_by_file(self):
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
98 self.cmd.output_file = 'dummy'
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
99 self.cmd.sort_output = True
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
100 self.cmd.sort_by_file = True
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
101 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
102
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
103 def test_extraction_with_default_mapping(self):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
104 self.cmd.copyright_holder = 'FooBar, Inc.'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
105 self.cmd.msgid_bugs_address = 'bugs.address@email.tld'
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
106 self.cmd.output_file = 'project/i18n/temp.pot'
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
107 self.cmd.add_comments = 'TRANSLATOR:,TRANSLATORS:'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
108
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
109 self.cmd.finalize_options()
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
110 self.cmd.run()
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
111
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
112 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
113 assert os.path.isfile(pot_file)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
114
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
115 self.assertEqual(
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
116 r"""# Translations template for TestProject.
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
117 # Copyright (C) %(year)s FooBar, Inc.
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
118 # This file is distributed under the same license as the TestProject
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
119 # project.
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
120 # FIRST AUTHOR <EMAIL@ADDRESS>, %(year)s.
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
121 #
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
122 #, fuzzy
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
123 msgid ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
124 msgstr ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
125 "Project-Id-Version: TestProject 0.1\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
126 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
127 "POT-Creation-Date: %(date)s\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
128 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
129 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
130 "Language-Team: LANGUAGE <LL@li.org>\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
131 "MIME-Version: 1.0\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
132 "Content-Type: text/plain; charset=utf-8\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
133 "Content-Transfer-Encoding: 8bit\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
134 "Generated-By: Babel %(version)s\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
135
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
136 #. This will be a translator coment,
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
137 #. that will include several lines
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
138 #: project/file1.py:8
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
139 msgid "bar"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
140 msgstr ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
141
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
142 #: project/file2.py:9
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
143 msgid "foobar"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
144 msgid_plural "foobars"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
145 msgstr[0] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
146 msgstr[1] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
147
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
148 #: project/CVS/this_wont_normally_be_here.py:11
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
149 msgid "FooBar"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
150 msgid_plural "FooBars"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
151 msgstr[0] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
152 msgstr[1] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
153
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
154 """ % {'version': VERSION,
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
155 'year': time.strftime('%Y'),
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
156 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
157 tzinfo=LOCALTZ, locale='en')},
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
158 open(pot_file, 'U').read())
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
159
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
160 def test_extraction_with_mapping_file(self):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
161 self.cmd.copyright_holder = 'FooBar, Inc.'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
162 self.cmd.msgid_bugs_address = 'bugs.address@email.tld'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
163 self.cmd.mapping_file = 'mapping.cfg'
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
164 self.cmd.output_file = 'project/i18n/temp.pot'
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
165 self.cmd.add_comments = 'TRANSLATOR:,TRANSLATORS:'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
166
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
167 self.cmd.finalize_options()
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
168 self.cmd.run()
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
169
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
170 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
171 assert os.path.isfile(pot_file)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
172
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
173 self.assertEqual(
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
174 r"""# Translations template for TestProject.
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
175 # Copyright (C) %(year)s FooBar, Inc.
116
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
176 # This file is distributed under the same license as the TestProject
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
177 # project.
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
178 # FIRST AUTHOR <EMAIL@ADDRESS>, %(year)s.
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
179 #
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
180 #, fuzzy
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
181 msgid ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
182 msgstr ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
183 "Project-Id-Version: TestProject 0.1\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
184 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
185 "POT-Creation-Date: %(date)s\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
186 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
187 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
188 "Language-Team: LANGUAGE <LL@li.org>\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
189 "MIME-Version: 1.0\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
190 "Content-Type: text/plain; charset=utf-8\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
191 "Content-Transfer-Encoding: 8bit\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
192 "Generated-By: Babel %(version)s\n"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
193
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
194 #. This will be a translator coment,
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
195 #. that will include several lines
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
196 #: project/file1.py:8
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
197 msgid "bar"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
198 msgstr ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
199
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
200 #: project/file2.py:9
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
201 msgid "foobar"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
202 msgid_plural "foobars"
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
203 msgstr[0] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
204 msgstr[1] ""
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
205
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
206 """ % {'version': VERSION,
c6214115e4da Added some minor distutils frontend tests, corrected and moved mapping.cfg to the appropriate place.
palgarvio
parents: 56
diff changeset
207 'year': time.strftime('%Y'),
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
208 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
209 tzinfo=LOCALTZ, locale='en')},
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
210 open(pot_file, 'U').read())
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
211
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
212 def test_extraction_with_mapping_dict(self):
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
213 self.dist.message_extractors = {
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
214 'project': [
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
215 ('**/CVS/**.*', 'ignore', None),
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
216 ('**.py', 'python', None),
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
217 ]
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
218 }
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
219 self.cmd.copyright_holder = 'FooBar, Inc.'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
220 self.cmd.msgid_bugs_address = 'bugs.address@email.tld'
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
221 self.cmd.output_file = 'project/i18n/temp.pot'
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
222 self.cmd.add_comments = 'TRANSLATOR:,TRANSLATORS:'
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
223
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
224 self.cmd.finalize_options()
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
225 self.cmd.run()
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
226
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
227 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
228 assert os.path.isfile(pot_file)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
229
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
230 self.assertEqual(
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
231 r"""# Translations template for TestProject.
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
232 # Copyright (C) %(year)s FooBar, Inc.
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
233 # This file is distributed under the same license as the TestProject
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
234 # project.
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
235 # FIRST AUTHOR <EMAIL@ADDRESS>, %(year)s.
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
236 #
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
237 #, fuzzy
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
238 msgid ""
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
239 msgstr ""
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
240 "Project-Id-Version: TestProject 0.1\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
241 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
242 "POT-Creation-Date: %(date)s\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
243 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
244 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
245 "Language-Team: LANGUAGE <LL@li.org>\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
246 "MIME-Version: 1.0\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
247 "Content-Type: text/plain; charset=utf-8\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
248 "Content-Transfer-Encoding: 8bit\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
249 "Generated-By: Babel %(version)s\n"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
250
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
251 #. This will be a translator coment,
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
252 #. that will include several lines
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
253 #: project/file1.py:8
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
254 msgid "bar"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
255 msgstr ""
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
256
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
257 #: project/file2.py:9
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
258 msgid "foobar"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
259 msgid_plural "foobars"
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
260 msgstr[0] ""
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
261 msgstr[1] ""
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
262
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
263 """ % {'version': VERSION,
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
264 'year': time.strftime('%Y'),
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
265 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
266 tzinfo=LOCALTZ, locale='en')},
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
267 open(pot_file, 'U').read())
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
268
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
269
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
270 class NewCatalogTestCase(unittest.TestCase):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
271
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
272 def setUp(self):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
273 self.olddir = os.getcwd()
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
274 self.datadir = os.path.join(os.path.dirname(__file__), 'data')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
275 os.chdir(self.datadir)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
276 _global_log.threshold = 5 # shut up distutils logging
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
277
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
278 self.dist = Distribution(dict(
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
279 name='TestProject',
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
280 version='0.1',
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
281 packages=['project']
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
282 ))
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
283 self.cmd = frontend.new_catalog(self.dist)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
284 self.cmd.initialize_options()
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
285
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
286 def tearDown(self):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
287 locale_dir = os.path.join(self.datadir, 'project', 'i18n', 'en_US')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
288 if os.path.isdir(locale_dir):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
289 shutil.rmtree(locale_dir)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
290
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
291 os.chdir(self.olddir)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
292
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
293 def test_no_input_file(self):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
294 self.cmd.locale = 'en_US'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
295 self.cmd.output_file = 'dummy'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
296 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
297
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
298 def test_no_locale(self):
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
299 self.cmd.input_file = 'dummy'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
300 self.cmd.output_file = 'dummy'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
301 self.assertRaises(DistutilsOptionError, self.cmd.finalize_options)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
302
123
5b4f302abf53 Fix parsing of timezone in POT creation date.
cmlenz
parents: 122
diff changeset
303 def test_with_output_dir(self):
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
304 self.cmd.input_file = 'project/i18n/messages.pot'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
305 self.cmd.locale = 'en_US'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
306 self.cmd.output_dir = 'project/i18n'
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
307
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
308 self.cmd.finalize_options()
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
309 self.cmd.run()
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
310
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
311 po_file = os.path.join(self.datadir, 'project', 'i18n', 'en_US',
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
312 'LC_MESSAGES', 'messages.po')
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
313 assert os.path.isfile(po_file)
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
314
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
315 self.assertEqual(
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
316 r"""# English (United States) translations for TestProject.
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
317 # Copyright (C) 2007 FooBar, Inc.
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
318 # This file is distributed under the same license as the TestProject
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
319 # project.
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
320 # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
321 #
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
322 #, fuzzy
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
323 msgid ""
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
324 msgstr ""
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
325 "Project-Id-Version: TestProject 0.1\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
326 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
327 "POT-Creation-Date: 2007-04-01 15:30+0200\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
328 "PO-Revision-Date: %(date)s\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
329 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
330 "Language-Team: en_US <LL@li.org>\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
331 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
332 "MIME-Version: 1.0\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
333 "Content-Type: text/plain; charset=utf-8\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
334 "Content-Transfer-Encoding: 8bit\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
335 "Generated-By: Babel %(version)s\n"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
336
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
337 #. This will be a translator coment,
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
338 #. that will include several lines
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
339 #: project/file1.py:8
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
340 msgid "bar"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
341 msgstr ""
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
342
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
343 #: project/file2.py:9
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
344 msgid "foobar"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
345 msgid_plural "foobars"
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
346 msgstr[0] ""
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
347 msgstr[1] ""
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
348
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
349 """ % {'version': VERSION,
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
350 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
351 tzinfo=LOCALTZ, locale='en')},
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
352 open(po_file, 'U').read())
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
353
117
0b4796ed9426 Added new logo.
cmlenz
parents: 116
diff changeset
354
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
355 class CommandLineInterfaceTestCase(unittest.TestCase):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
356
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
357 def setUp(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
358 self.datadir = os.path.join(os.path.dirname(__file__), 'data')
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
359 self.orig_argv = sys.argv
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
360 self.orig_stdout = sys.stdout
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
361 self.orig_stderr = sys.stderr
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
362 sys.argv = ['babel']
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
363 sys.stdout = StringIO()
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
364 sys.stderr = StringIO()
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
365 self.cli = frontend.CommandLineInterface()
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
366
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
367 def tearDown(self):
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
368 sys.argv = self.orig_argv
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
369 sys.stdout = self.orig_stdout
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
370 sys.stderr = self.orig_stderr
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
371
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
372 def test_usage(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
373 try:
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
374 self.cli.run(sys.argv)
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
375 self.fail('Expected SystemExit')
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
376 except SystemExit, e:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
377 self.assertEqual(2, e.code)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
378 self.assertEqual("""\
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
379 usage: babel command [options] [args]
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
380
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
381 babel: error: incorrect number of arguments
137
ade36d5897f4 Fix frontend tests on Python 2.5, where the case of some of the output of optparse usage has changed.
cmlenz
parents: 136
diff changeset
382 """, sys.stderr.getvalue().lower())
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
383
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
384 def test_help(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
385 try:
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
386 self.cli.run(sys.argv + ['--help'])
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
387 self.fail('Expected SystemExit')
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
388 except SystemExit, e:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
389 self.assertEqual(0, e.code)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
390 self.assertEqual("""\
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
391 usage: babel command [options] [args]
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
392
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
393 options:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
394 --version show program's version number and exit
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
395 -h, --help show this help message and exit
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
396
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
397 commands:
162
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
398 compile compile a message catalog to a mo file
137
ade36d5897f4 Fix frontend tests on Python 2.5, where the case of some of the output of optparse usage has changed.
cmlenz
parents: 136
diff changeset
399 extract extract messages from source files and generate a pot file
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
400 init create new message catalogs from a template
137
ade36d5897f4 Fix frontend tests on Python 2.5, where the case of some of the output of optparse usage has changed.
cmlenz
parents: 136
diff changeset
401 """, sys.stdout.getvalue().lower())
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
402
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
403 def test_extract_with_default_mapping(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
404 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
405 try:
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
406 self.cli.run(sys.argv + ['extract',
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
407 '--copyright-holder', 'FooBar, Inc.',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
408 '--msgid-bugs-address', 'bugs.address@email.tld',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
409 '-c', 'TRANSLATOR', '-c', 'TRANSLATORS:',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
410 '-o', pot_file, os.path.join(self.datadir, 'project')])
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
411 except SystemExit, e:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
412 self.assertEqual(0, e.code)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
413 assert os.path.isfile(pot_file)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
414 self.assertEqual(
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
415 r"""# Translations template for TestProject.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
416 # Copyright (C) %(year)s FooBar, Inc.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
417 # This file is distributed under the same license as the TestProject
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
418 # project.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
419 # FIRST AUTHOR <EMAIL@ADDRESS>, %(year)s.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
420 #
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
421 #, fuzzy
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
422 msgid ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
423 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
424 "Project-Id-Version: TestProject 0.1\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
425 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
426 "POT-Creation-Date: %(date)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
427 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
428 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
429 "Language-Team: LANGUAGE <LL@li.org>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
430 "MIME-Version: 1.0\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
431 "Content-Type: text/plain; charset=utf-8\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
432 "Content-Transfer-Encoding: 8bit\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
433 "Generated-By: Babel %(version)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
434
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
435 #. This will be a translator coment,
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
436 #. that will include several lines
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
437 #: project/file1.py:8
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
438 msgid "bar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
439 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
440
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
441 #: project/file2.py:9
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
442 msgid "foobar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
443 msgid_plural "foobars"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
444 msgstr[0] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
445 msgstr[1] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
446
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
447 #: project/CVS/this_wont_normally_be_here.py:11
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
448 msgid "FooBar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
449 msgid_plural "FooBars"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
450 msgstr[0] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
451 msgstr[1] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
452
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
453 """ % {'version': VERSION,
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
454 'year': time.strftime('%Y'),
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
455 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
456 tzinfo=LOCALTZ, locale='en')},
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
457 open(pot_file, 'U').read())
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
458
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
459 def test_extract_with_mapping_file(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
460 pot_file = os.path.join(self.datadir, 'project', 'i18n', 'temp.pot')
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
461 try:
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
462 self.cli.run(sys.argv + ['extract',
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
463 '--copyright-holder', 'FooBar, Inc.',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
464 '--msgid-bugs-address', 'bugs.address@email.tld',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
465 '--mapping', os.path.join(self.datadir, 'mapping.cfg'),
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
466 '-c', 'TRANSLATOR', '-c', 'TRANSLATORS:',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
467 '-o', pot_file, os.path.join(self.datadir, 'project')])
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
468 except SystemExit, e:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
469 self.assertEqual(0, e.code)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
470 assert os.path.isfile(pot_file)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
471 self.assertEqual(
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
472 r"""# Translations template for TestProject.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
473 # Copyright (C) %(year)s FooBar, Inc.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
474 # This file is distributed under the same license as the TestProject
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
475 # project.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
476 # FIRST AUTHOR <EMAIL@ADDRESS>, %(year)s.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
477 #
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
478 #, fuzzy
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
479 msgid ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
480 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
481 "Project-Id-Version: TestProject 0.1\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
482 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
483 "POT-Creation-Date: %(date)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
484 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
485 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
486 "Language-Team: LANGUAGE <LL@li.org>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
487 "MIME-Version: 1.0\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
488 "Content-Type: text/plain; charset=utf-8\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
489 "Content-Transfer-Encoding: 8bit\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
490 "Generated-By: Babel %(version)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
491
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
492 #. This will be a translator coment,
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
493 #. that will include several lines
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
494 #: project/file1.py:8
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
495 msgid "bar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
496 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
497
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
498 #: project/file2.py:9
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
499 msgid "foobar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
500 msgid_plural "foobars"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
501 msgstr[0] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
502 msgstr[1] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
503
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
504 """ % {'version': VERSION,
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
505 'year': time.strftime('%Y'),
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
506 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
507 tzinfo=LOCALTZ, locale='en')},
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
508 open(pot_file, 'U').read())
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
509
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
510 def test_init_with_output_dir(self):
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
511 po_file = os.path.join(self.datadir, 'project', 'i18n', 'en_US',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
512 'LC_MESSAGES', 'messages.po')
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
513 try:
130
383b18bfcc95 Fake `sys.argv` for CLI tests.
cmlenz
parents: 129
diff changeset
514 self.cli.run(sys.argv + ['init',
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
515 '--locale', 'en_US',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
516 '-d', os.path.join(self.datadir, 'project', 'i18n'),
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
517 '-i', os.path.join(self.datadir, 'project', 'i18n',
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
518 'messages.pot')])
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
519 except SystemExit, e:
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
520 self.assertEqual(0, e.code)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
521 assert os.path.isfile(pot_file)
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
522 self.assertEqual(
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
523 r"""# English (United States) translations for TestProject.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
524 # Copyright (C) 2007 FooBar, Inc.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
525 # This file is distributed under the same license as the TestProject
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
526 # project.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
527 # FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
528 #
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
529 #, fuzzy
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
530 msgid ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
531 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
532 "Project-Id-Version: TestProject 0.1\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
533 "Report-Msgid-Bugs-To: bugs.address@email.tld\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
534 "POT-Creation-Date: 2007-04-01 15:30+0200\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
535 "PO-Revision-Date: %(date)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
536 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
537 "Language-Team: en_US <LL@li.org>\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
538 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
539 "MIME-Version: 1.0\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
540 "Content-Type: text/plain; charset=utf-8\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
541 "Content-Transfer-Encoding: 8bit\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
542 "Generated-By: Babel %(version)s\n"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
543
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
544 #. This will be a translator coment,
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
545 #. that will include several lines
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
546 #: project/file1.py:8
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
547 msgid "bar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
548 msgstr ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
549
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
550 #: project/file2.py:9
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
551 msgid "foobar"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
552 msgid_plural "foobars"
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
553 msgstr[0] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
554 msgstr[1] ""
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
555
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
556 """ % {'version': VERSION,
136
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
557 'date': format_datetime(datetime.now(LOCALTZ), 'yyyy-MM-dd HH:mmZ',
9e3d2b227ec3 More fixes for Windows compatibility:
cmlenz
parents: 130
diff changeset
558 tzinfo=LOCALTZ, locale='en')},
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
559 open(po_file, 'U').read())
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
560
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
561
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
562 def suite():
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
563 suite = unittest.TestSuite()
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
564 suite.addTest(doctest.DocTestSuite(frontend))
162
661cb602781d Add MO file generation. Closes #21.
cmlenz
parents: 137
diff changeset
565 suite.addTest(unittest.makeSuite(CompileCatalogTestCase))
119
c84f629da9de Made new frontend tests more ''unit-y'', i.e. calling the APIs directly instead of launching the scripts.
cmlenz
parents: 117
diff changeset
566 suite.addTest(unittest.makeSuite(ExtractMessagesTestCase))
122
03f106700f02 Added tests for `new_catalog` distutils command.
cmlenz
parents: 119
diff changeset
567 suite.addTest(unittest.makeSuite(NewCatalogTestCase))
129
d6aef0675953 Add a couple of CLI tests.
cmlenz
parents: 123
diff changeset
568 suite.addTest(unittest.makeSuite(CommandLineInterfaceTestCase))
14
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
569 return suite
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
570
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
571 if __name__ == '__main__':
29ef15a6fd75 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents:
diff changeset
572 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software