diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-11-12 00:23:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-11-12 00:23:15 (GMT) |
commit | e667e98faad93e76b8b569d853eb02d91591f5fb (patch) | |
tree | 009075f72468af1156312858aada27dd389678f3 /Lib/test/test_cmd_line_script.py | |
parent | 37bfa4e7ec5df1528aa208150933a3fc54508cf9 (diff) | |
download | cpython-e667e98faad93e76b8b569d853eb02d91591f5fb.zip cpython-e667e98faad93e76b8b569d853eb02d91591f5fb.tar.gz cpython-e667e98faad93e76b8b569d853eb02d91591f5fb.tar.bz2 |
Issue #16218, #16444: Backport improvment on tests for non-ASCII characters
Diffstat (limited to 'Lib/test/test_cmd_line_script.py')
-rw-r--r-- | Lib/test/test_cmd_line_script.py | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 6e097e3..f066204 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -363,14 +363,30 @@ class CmdLineTest(unittest.TestCase): self.assertTrue(text[1].startswith(' File ')) self.assertTrue(text[3].startswith('NameError')) - def test_non_utf8(self): + def test_non_ascii(self): + # Mac OS X denies the creation of a file with an invalid UTF-8 name. + # Windows allows to create a name with an arbitrary bytes name, but + # Python cannot a undecodable bytes argument to a subprocess. + #if (support.TESTFN_UNDECODABLE + #and sys.platform not in ('win32', 'darwin')): + # name = os.fsdecode(support.TESTFN_UNDECODABLE) + #elif support.TESTFN_NONASCII: + if support.TESTFN_NONASCII: + name = support.TESTFN_NONASCII + else: + self.skipTest("need support.TESTFN_NONASCII") + # Issue #16218 - with temp_dir() as script_dir: - script_name = _make_test_script(script_dir, - '\udcf1\udcea\udcf0\udce8\udcef\udcf2') - self._check_script(script_name, script_name, script_name, - script_dir, None, - importlib.machinery.SourceFileLoader) + source = 'print(ascii(__file__))\n' + script_name = _make_test_script(os.curdir, name, source) + self.addCleanup(support.unlink, script_name) + rc, stdout, stderr = assert_python_ok(script_name) + self.assertEqual( + ascii(script_name), + stdout.rstrip().decode('ascii'), + 'stdout=%r stderr=%r' % (stdout, stderr)) + self.assertEqual(0, rc) + def test_main(): support.run_unittest(CmdLineTest) |