mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Some checks are pending
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Android (x86_64) (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Android (aarch64) (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
(cherry picked from commit 4e6dba0ef7)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
Co-authored-by: yihong <zouzou0208@gmail.com>
Co-authored-by: grayjk <grayjk@gmail.com>
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
from unittest import TestCase
|
|
|
|
from _pyrepl.utils import str_width, wlen
|
|
|
|
|
|
class TestUtils(TestCase):
|
|
def test_str_width(self):
|
|
characters = [
|
|
'a',
|
|
'1',
|
|
'_',
|
|
'!',
|
|
'\x1a',
|
|
'\u263A',
|
|
'\uffb9',
|
|
'\N{LATIN SMALL LETTER E WITH ACUTE}', # é
|
|
'\N{LATIN SMALL LETTER E WITH CEDILLA}', # ȩ
|
|
'\u00ad',
|
|
]
|
|
for c in characters:
|
|
self.assertEqual(str_width(c), 1)
|
|
|
|
zero_width_characters = [
|
|
'\N{COMBINING ACUTE ACCENT}',
|
|
'\N{ZERO WIDTH JOINER}',
|
|
]
|
|
for c in zero_width_characters:
|
|
with self.subTest(character=c):
|
|
self.assertEqual(str_width(c), 0)
|
|
|
|
characters = [chr(99989), chr(99999)]
|
|
for c in characters:
|
|
self.assertEqual(str_width(c), 2)
|
|
|
|
def test_wlen(self):
|
|
for c in ['a', 'b', '1', '!', '_']:
|
|
self.assertEqual(wlen(c), 1)
|
|
self.assertEqual(wlen('\x1a'), 2)
|
|
|
|
char_east_asian_width_N = chr(3800)
|
|
self.assertEqual(wlen(char_east_asian_width_N), 1)
|
|
char_east_asian_width_W = chr(4352)
|
|
self.assertEqual(wlen(char_east_asian_width_W), 2)
|
|
|
|
self.assertEqual(wlen('hello'), 5)
|
|
self.assertEqual(wlen('hello' + '\x1a'), 7)
|
|
self.assertEqual(wlen('e\N{COMBINING ACUTE ACCENT}'), 1)
|
|
self.assertEqual(wlen('a\N{ZERO WIDTH JOINER}b'), 2)
|