diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 09:38:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-21 09:38:00 (GMT) |
commit | 4f5f0e54e07838b29e3a2e043e9c9b12aeecb12f (patch) | |
tree | cc5e30144b4ce05686542d88b970974bb958fd37 /Lib/test/test_ucn.py | |
parent | 410eee566f3bf2a33bfd1156ad8bb86f697c4749 (diff) | |
download | cpython-4f5f0e54e07838b29e3a2e043e9c9b12aeecb12f.zip cpython-4f5f0e54e07838b29e3a2e043e9c9b12aeecb12f.tar.gz cpython-4f5f0e54e07838b29e3a2e043e9c9b12aeecb12f.tar.bz2 |
Issue #16335: Fix integer overflow in unicode-escape decoder.
Diffstat (limited to 'Lib/test/test_ucn.py')
-rw-r--r-- | Lib/test/test_ucn.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/test/test_ucn.py b/Lib/test/test_ucn.py index fd620f0..de36cc3 100644 --- a/Lib/test/test_ucn.py +++ b/Lib/test/test_ucn.py @@ -8,6 +8,7 @@ Modified for Python 2.0 by Fredrik Lundh (fredrik@pythonware.com) """#" import unittest +import _testcapi from test import support @@ -141,6 +142,21 @@ class UnicodeNamesTest(unittest.TestCase): str, b"\\NSPACE", 'unicode-escape', 'strict' ) + @unittest.skipUnless(_testcapi.INT_MAX < _testcapi.PY_SSIZE_T_MAX, + "needs UINT_MAX < SIZE_MAX") + def test_issue16335(self): + # very very long bogus character name + try: + x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}' + except MemoryError: + raise unittest.SkipTest("not enough memory") + self.assertEqual(len(x), len(b'\\N{SPACE}') + (_testcapi.UINT_MAX + 1)) + self.assertRaisesRegex(UnicodeError, + 'unknown Unicode character name', + x.decode, 'unicode-escape' + ) + + def test_main(): support.run_unittest(UnicodeNamesTest) |