forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[3.13] pythongh-126413: Add translation tests for getopt and optparse (…
…pythonGH-126698) (cherry picked from commit dff074d) Co-authored-by: Tomas R. <[email protected]>
- Loading branch information
Showing
7 changed files
with
114 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import re | ||
import subprocess | ||
import sys | ||
import unittest | ||
from pathlib import Path | ||
from test.support import REPO_ROOT, TEST_HOME_DIR, requires_subprocess | ||
from test.test_tools import skip_if_missing | ||
|
||
|
||
pygettext = Path(REPO_ROOT) / 'Tools' / 'i18n' / 'pygettext.py' | ||
|
||
msgid_pattern = re.compile(r'msgid(.*?)(?:msgid_plural|msgctxt|msgstr)', | ||
re.DOTALL) | ||
msgid_string_pattern = re.compile(r'"((?:\\"|[^"])*)"') | ||
|
||
|
||
def _generate_po_file(path, *, stdout_only=True): | ||
res = subprocess.run([sys.executable, pygettext, | ||
'--no-location', '-o', '-', path], | ||
stdout=subprocess.PIPE, stderr=subprocess.PIPE, | ||
text=True) | ||
if stdout_only: | ||
return res.stdout | ||
return res | ||
|
||
|
||
def _extract_msgids(po): | ||
msgids = [] | ||
for msgid in msgid_pattern.findall(po): | ||
msgid_string = ''.join(msgid_string_pattern.findall(msgid)) | ||
msgid_string = msgid_string.replace(r'\"', '"') | ||
if msgid_string: | ||
msgids.append(msgid_string) | ||
return sorted(msgids) | ||
|
||
|
||
def _get_snapshot_path(module_name): | ||
return Path(TEST_HOME_DIR) / 'translationdata' / module_name / 'msgids.txt' | ||
|
||
|
||
@requires_subprocess() | ||
class TestTranslationsBase(unittest.TestCase): | ||
|
||
def assertMsgidsEqual(self, module): | ||
'''Assert that msgids extracted from a given module match a | ||
snapshot. | ||
''' | ||
skip_if_missing('i18n') | ||
res = _generate_po_file(module.__file__, stdout_only=False) | ||
self.assertEqual(res.returncode, 0) | ||
self.assertEqual(res.stderr, '') | ||
msgids = _extract_msgids(res.stdout) | ||
snapshot_path = _get_snapshot_path(module.__name__) | ||
snapshot = snapshot_path.read_text().splitlines() | ||
self.assertListEqual(msgids, snapshot) | ||
|
||
|
||
def update_translation_snapshots(module): | ||
contents = _generate_po_file(module.__file__) | ||
msgids = _extract_msgids(contents) | ||
snapshot_path = _get_snapshot_path(module.__name__) | ||
snapshot_path.write_text('\n'.join(msgids)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# test_getopt.py | ||
# David Goodger <[email protected]> 2000-08-19 | ||
|
||
from test.support.os_helper import EnvironmentVarGuard | ||
import doctest | ||
import unittest | ||
|
||
import getopt | ||
import sys | ||
import unittest | ||
from test.support.i18n_helper import TestTranslationsBase, update_translation_snapshots | ||
from test.support.os_helper import EnvironmentVarGuard | ||
|
||
sentinel = object() | ||
|
||
|
@@ -173,10 +174,20 @@ def test_libref_examples(): | |
['a1', 'a2'] | ||
""" | ||
|
||
|
||
class TestTranslations(TestTranslationsBase): | ||
def test_translations(self): | ||
self.assertMsgidsEqual(getopt) | ||
|
||
|
||
def load_tests(loader, tests, pattern): | ||
tests.addTest(doctest.DocTestSuite()) | ||
return tests | ||
|
||
|
||
if __name__ == "__main__": | ||
if __name__ == '__main__': | ||
# To regenerate translation snapshots | ||
if len(sys.argv) > 1 and sys.argv[1] == '--snapshot-update': | ||
update_translation_snapshots(getopt) | ||
sys.exit(0) | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
option -%s not recognized | ||
option -%s requires argument | ||
option --%s must not have an argument | ||
option --%s not a unique prefix | ||
option --%s not recognized | ||
option --%s requires argument |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
%prog [options] | ||
%s option does not take a value | ||
Options | ||
Usage | ||
Usage: %s\n | ||
ambiguous option: %s (%s?) | ||
complex | ||
floating-point | ||
integer | ||
no such option: %s | ||
option %s: invalid %s value: %r | ||
option %s: invalid choice: %r (choose from %s) | ||
show program's version number and exit | ||
show this help message and exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters