1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
|
"""Tests for width() function."""
# 3rd party
import pytest
# local
import wcwidth
from wcwidth.escape_sequences import ZERO_WIDTH_PATTERN, INDETERMINATE_EFFECT_SEQUENCE
BASIC_WIDTH_CASES = [
('', 0, 'empty'),
('hello', 5, 'ASCII'),
('コンニチハ', 10, 'CJK'),
('cafe\u0301', 4, 'combining'),
('\U0001F468\u200d\U0001F469\u200d\U0001F467', 2, 'ZWJ'),
]
@pytest.mark.parametrize('text,expected,name', BASIC_WIDTH_CASES)
def test_width_basic(text, expected, name):
"""Basic width measurement tests."""
assert wcwidth.width(text) == expected
IGNORE_MODE_CASES = [
('hello\x01world', 10, 'C0_control'),
('hello\x00world', 10, 'NUL'),
('abc\bd', 4, 'backspace'),
('abc\nxy', 5, 'LF'),
('\x1b[31mred\x1b[0m', 3, 'SGR_sequence'),
('hello\x80world', 10, 'C1_control'),
('\x1b', 0, 'lone_ESC'),
('a\x1bb', 1, 'fs_sequence_between'),
]
@pytest.mark.parametrize('text,expected,name', IGNORE_MODE_CASES)
def test_width_control_codes_ignore(text, expected, name):
"""Ignore mode strips control codes from width calculation."""
assert wcwidth.width(text, control_codes="ignore") == expected
STRICT_RAISES_CASES = [
('hello\x01world', 'C0_control'),
('hello\x1aworld', 'ctrl_z'),
('hello\x7fworld', 'DEL'),
('hello\x80world', 'C1_control'),
('hello\nworld', 'LF'),
('hello\rworld', 'CR'),
('hello\x1b[Hworld', 'cursor_home'),
('hello\x1b[Aworld', 'cursor_up'),
('hello\x1b[5Gworld', 'hpa'),
]
@pytest.mark.parametrize('text,name', STRICT_RAISES_CASES)
def test_width_control_codes_strict_raises(text, name):
"""Strict mode raises ValueError for illegal control codes."""
with pytest.raises(ValueError):
wcwidth.width(text, control_codes="strict")
STRICT_ALLOWED_CASES = [
('hello\x07world', 10, 'BEL'),
('hello\x00world', 10, 'NUL'),
('abc\bd', 3, 'backspace'),
('\x1b[31mred\x1b[0m', 3, 'SGR_sequence'),
('a\x1b[2Cb', 4, 'cursor_right'),
('ab\x1b[Db', 2, 'cursor_left'),
('\x1b', 0, 'lone_ESC'),
('a\x1bb', 1, 'fs_sequence_between'),
('\x1b!', 1, 'ESC_unrecognized'),
]
@pytest.mark.parametrize('text,expected,name', STRICT_ALLOWED_CASES)
def test_width_control_codes_strict_allowed(text, expected, name):
"""Strict mode allows certain control codes."""
assert wcwidth.width(text, control_codes="strict") == expected
STRICT_INDETERMINATE_SEQUENCES = [
('\x1b[?1049h', 'enter_fullscreen'),
('\x1b[?1049l', 'exit_fullscreen'),
('\x1bD', 'scroll_forward'),
('\x1bM', 'scroll_reverse'),
('\x1b8', 'restore_cursor'),
('\x1b[1P', 'parm_dch'),
('\x1b[1M', 'parm_delete_line'),
('\x1b[1L', 'parm_insert_line'),
('\x1b[1X', 'erase_chars'),
('\x1b[1S', 'parm_index'),
('\x1b[1T', 'parm_rindex'),
('\x1bc', 'full_reset'),
]
@pytest.mark.parametrize('seq,cap_name', STRICT_INDETERMINATE_SEQUENCES)
def test_width_strict_indeterminate_raises(seq, cap_name):
with pytest.raises(ValueError):
wcwidth.width(f"hello{seq}world", control_codes="strict")
PARSE_MODE_CASES = [
('hello\x01world', 10, 'C0_control'),
('abc\bd', 3, 'backspace'),
('abc\rxy', 3, 'CR'),
('abc\nxy', 5, 'LF_vertical'),
('a\x1b[2Cb', 4, 'cursor_right'),
('abcd\x1b[2De', 4, 'cursor_left'),
('\x1b[31mred\x1b[0m', 3, 'SGR'),
('ab\x1b[Hcd', 4, 'indeterminate'),
('def\x1b[3Dabc', 3, 'cursor_left_overwrite'),
('def\x1b[10Dabc', 3, 'cursor_left_past_start'),
('abc\x1b[5Gde', 6, 'hpa_parse'),
('abc\x1b[Gde', 3, 'hpa_no_param'),
('\x1b[5Gabc', 7, 'hpa_before_text'),
]
@pytest.mark.parametrize('text,expected,name', PARSE_MODE_CASES)
def test_width_control_codes_parse(text, expected, name):
"""Parse mode (default) handles control codes."""
assert wcwidth.width(text) == expected
TABSIZE_CASES = [
('\t', 8, 8, 'default'),
('abc\t', 8, 8, 'after_text'),
('ab\t', 4, 4, 'tabsize_4'),
]
@pytest.mark.parametrize('text,expected,tabsize,name', TABSIZE_CASES)
def test_width_tabsize(text, expected, tabsize, name):
"""Tabsize parameter controls tab width calculation."""
assert wcwidth.width(text, tabsize=tabsize) == expected
def test_width_tabsize_zero():
"""Tabs are zero-width with control_codes='ignore'."""
assert wcwidth.width('\t', control_codes='ignore') == 0
def test_width_tabsize_zero_parse():
"""Tab with tabsize=0 in parse mode is zero-width."""
assert wcwidth.width('ab\tc', tabsize=0) == 3
ESCAPE_SEQUENCE_CASES = [
('\x1b[m', 0, 'basic_SGR'),
('\x1b[38;2;255;0;0m', 0, 'RGB_SGR'),
('\x1b]8;;https://example.com\x07link\x1b]8;;\x07', 4, 'OSC_hyperlink'),
('\x1b]0;title\x07text', 4, 'OSC_title'),
('\x1b(B', 0, 'charset'),
('\x1b[', 0, 'Fe_CSI'),
]
@pytest.mark.parametrize('text,expected,name', ESCAPE_SEQUENCE_CASES)
def test_width_escape_sequences(text, expected, name):
"""Escape sequences are parsed correctly."""
assert wcwidth.width(text) == expected
EDGE_CASES = [
('\x1b[31m\x1b[0m', 0, 'only_escapes'),
('\x1b[31mhello\x1b[0m world', 11, 'mixed_content'),
('\x1b[31mコ\x1b[0m', 2, 'wide_with_escape'),
('\x1b', 0, 'lone_ESC'),
('\x1b!', 1, 'ESC_unrecognized'),
('*\x1b*', 2, 'lone_ESC_between_text'),
]
@pytest.mark.parametrize('text,expected,name', EDGE_CASES)
def test_width_edge_cases(text, expected, name):
"""Edge cases are handled correctly."""
assert wcwidth.width(text) == expected
def test_width_unknown_control_codes():
"""Unknown control_codes defaults to parse mode."""
assert wcwidth.width("hello", control_codes="invalid") == 5
assert wcwidth.width("abc\bd", control_codes="unknown") == 3
def test_vs16_selector():
"""VS16 converts narrow character to wide (width 2)."""
# Smiley face with VS16 should be width 2 (same as wcswidth)
assert wcwidth.width("\u263A\uFE0F") == 2
assert wcwidth.width("\u263A\uFE0F") == wcwidth.wcswidth("\u263A\uFE0F")
# Heart with VS16
assert wcwidth.width("\u2764\uFE0F") == 2
# VS16 without valid preceding char is zero-width
assert wcwidth.width("\uFE0F") == 0
# Character not in VS16 table followed by VS16 stays narrow
assert wcwidth.width("A\uFE0F") == 1
def test_zwj_with_non_emoji_chars():
"""
ZWJ with non-emoji characters and trailing VS16.
These are invalid Unicode sequences (ZWJ followed by non-emoji), so behavior is implementation-
defined. The emoji base (smiley, width 1) is narrow, and VS16 looks back to it across the ZWJ-
consumed characters, adding 1 cell for a total width of 2.
"""
# Control test,
assert wcwidth.width("\u263A\uFE0F") == 2 # smiley + VS16 = 2
# ZWJ followed by non-emoji: VS16 applies to the smiley base
assert wcwidth.width("\u263A\u200Da\uFE0F") == 2
assert wcwidth.width("\u263A\u200Dx\uFE0F") == 2
assert wcwidth.width("\u263A\u200Da\u200Db\uFE0F") == 2
# ZWJ at end of string
assert wcwidth.width("\u263A\u200D") == 1 # smiley + ZWJ = 1
# Long strings (>20 chars) use fast path which routes to wcswidth().
assert wcwidth.width("\u263A\u200Da\uFE0F" * 10) == 20
def test_vs16_after_control_chars():
"""VS16 after control characters does not apply (not adjacent)."""
# When VS16 is separated from a potential emoji by control characters or escape sequences,
# VS16 should NOT apply because it must immediately follow the character it modifies.
#
# Control tests,
assert wcwidth.width("a\uFE0F") == 1 # a(1) + VS16(0), 'a' not in VS16 table
assert wcwidth.width("\u263A\x1b[m\uFE0F") == 1 # smiley(1) + SGR(0) + VS16(0)
assert wcwidth.width("\u263A\x07\uFE0F") == 1 # smiley(1) + BEL(0) + VS16(0)
assert wcwidth.width("\u263A\x08\uFE0F") == 1 # smiley(1) + BS(-1) + VS16(0), extent=1
assert wcwidth.width("\u263A\x0d\uFE0F") == 1 # smiley(1) + CR(reset) + VS16(0), extent=1
# Long strings (>20 chars) use fast path which routes to wcswidth().
# In ignore mode, BEL is stripped, so VS16 is adjacent to the smiley and applies correctly.
# Multiply by 10 to exceed threshold
assert wcwidth.width(("\u263A\x07\uFE0F") * 10) == 20 # (smiley(1) + BEL-stripped(0) + VS16(+1)) * 10
def test_width_long_horizontal_fastpath():
# Long strings with horizontal movement chars use full parse loop (not fast path).
# width() returns max_extent (maximum position reached), not final position.
assert wcwidth.width("a" * 25 + "\b") == 25 # max is 25, BS reduces pos not max
assert wcwidth.width("a" * 25 + "\t") == 32 # 25 + tab to next 8-col stop
assert wcwidth.width("a" * 25 + "\r") == 25 # max is 25, CR resets pos not max
# Long strings with cursor movement sequences use full parse loop.
# Cursor right increases max, cursor left only decreases pos.
assert wcwidth.width("a" * 25 + "\x1b[C") == 26 # 25 + cursor right 1
assert wcwidth.width("a" * 25 + "\x1b[2D") == 25 # max is 25, cursor left reduces pos
# Long plain strings (no \x1b) take the fast path via wcswidth()
assert wcwidth.width("a" * 25) == 25
assert wcwidth.width("hello world, this is a test") == 27
# Long strings with non-cursor escape sequences (SGR) also take fast path
assert wcwidth.width("\x1b[31m" + "a" * 25 + "\x1b[0m") == 25
def test_backspace_at_column_zero():
"""Backspace at column 0 does not go negative."""
assert wcwidth.width('\b') == 0
assert wcwidth.width('\ba') == 1
def test_carriage_return_resets_column():
"""CR resets column, max extent is preserved."""
assert wcwidth.width('abc\rd') == 3
assert wcwidth.width('abc\rde') == 3
def test_carriage_return_strict_raises():
"""CR in strict mode raises ValueError (indeterminate starting column)."""
with pytest.raises(ValueError, match='Horizontal movement'):
wcwidth.width('hello\rworld', control_codes='strict')
def test_hpa_parse_best_effort():
"""HPA in parse mode assumes string begins at column 0."""
assert wcwidth.width('abc\x1b[5Gde') == 6
assert wcwidth.width('abc\x1b[Gde') == 3
assert wcwidth.width('\x1b[10Ghi') == 11
def test_hpa_strict_raises():
"""HPA in strict mode raises ValueError (indeterminate starting column)."""
with pytest.raises(ValueError, match='horizontal position'):
wcwidth.width('abc\x1b[5Gde', control_codes='strict')
def test_cursor_left_strict_out_of_bounds():
"""Cursor-left beyond string start raises ValueError in strict mode."""
with pytest.raises(ValueError, match='Cursor left movement'):
wcwidth.width('a\x1b[5Da', control_codes='strict')
def test_cursor_left_out_of_bounds_parse_no_raise():
"""Cursor-left beyond string start is silently clamped in parse mode."""
assert wcwidth.width('a\x1b[5Da') == 1
assert wcwidth.width('abc\x1b[99Ddef') == 3 # 99D clamped to col 0, then b,c,d overwritten
def test_cursor_left_out_of_bounds_ignore_mode():
"""Cursor-left beyond string start is zero-width in ignore mode."""
assert wcwidth.width('a\x1b[5Da', control_codes='ignore') == 2
def test_iter_sequences_lone_esc():
"""Lone ESC is yielded as a sequence."""
assert list(wcwidth.iter_sequences('\x1b')) == [('\x1b', True)]
assert list(wcwidth.iter_sequences('*\x1b*')) == [('*', False), ('\x1b', True), ('*', False)]
def test_tab_ignore_with_tabsize():
"""Tabs are zero-width with control_codes='ignore', tabsize has no effect."""
assert wcwidth.width("abc\t", control_codes="ignore", tabsize=8) == 3
def test_cursor_right_unparameterized():
"""Test unparameterized cursor_right sequence is handled correctly."""
seq = '\x1b[C'
# sequence is recognized as a sequence
segments = list(wcwidth.iter_sequences(seq))
assert segments == [(seq, True)]
# sequence alone moves cursor right by 1 (default), extent is 1
assert wcwidth.width(seq) == 1
# cursor moves right by 1: 'a'(1) + right(1) + 'b'(1) = 3
assert wcwidth.width('a' + seq + 'b') == 3
# strict mode allows cursor_right
assert wcwidth.width('a' + seq + 'b', control_codes='strict') == 3
INDETERMINATE_CAP_SAMPLES = [
('\x1b[1;1r', 'change_scroll_region'),
('\x1b[H\x1b[2J', 'clear_screen'),
('\x1b[K', 'clr_eol'),
('\x1b[1;1H', 'cursor_address'),
('\x1b[A', 'cursor_up'),
('\x1b[M', 'delete_line'),
('\x1b[?1049h', 'enter_fullscreen'),
('\x1b[1X', 'erase_chars'),
('\x1b[L', 'insert_line'),
('\x1b[1S', 'parm_index'),
('\x1b[1A', 'parm_up_cursor'),
('\x1b8', 'restore_cursor'),
('\x1b[1d', 'row_address'),
('\x1bD', 'scroll_forward'),
]
@pytest.mark.parametrize('seq,cap_name', INDETERMINATE_CAP_SAMPLES)
def test_indeterminate_caps_covered_by_term_seq_pattern(seq, cap_name):
"""Verify all INDETERMINATE_CAPS sequences are matched by ZERO_WIDTH_PATTERN."""
# local
assert ZERO_WIDTH_PATTERN.match(seq)
assert wcwidth.width(seq) == 0
ZERO_WIDTH_CAP_SAMPLES = [
('\x1b[3g', 'clear_all_tabs'),
('\x1b[?25l', 'cursor_invisible'),
('\x1b[?25h', 'cursor_normal'),
('\x1b[?12;25h', 'cursor_visible'),
('\x1b(0', 'enter_alt_charset_mode'),
('\x1b[5m', 'enter_blink_mode'),
('\x1b[1m', 'enter_bold_mode'),
('\x1b[2m', 'enter_dim_mode'),
('\x1b[3m', 'enter_italics_mode'),
('\x1b[7m', 'enter_reverse_mode'),
('\x1b[3m', 'enter_standout_mode'),
('\x1b[4m', 'enter_underline_mode'),
('\x1b(B', 'exit_alt_charset_mode'),
('\x1b[m', 'exit_attribute_mode'),
('\x1b[4l', 'exit_insert_mode'),
('\x1b[23m', 'exit_italics_mode'),
('\x1b[27m', 'exit_standout_mode'),
('\x1b[24m', 'exit_underline_mode'),
('\x1b[?5h\x1b[?5l', 'flash_screen_csi'),
('\x1bg', 'flash_screen_visual_bell'),
('\x1b>', 'keypad_local'),
('\x1b=', 'keypad_xmit'),
('\x1b[39;49m', 'orig_pair'),
('\x1b7', 'save_cursor'),
('\x1bH', 'set_tab'),
]
@pytest.mark.parametrize('seq,cap_name', ZERO_WIDTH_CAP_SAMPLES)
def test_zero_width_sequences_matched_by_pattern(seq, cap_name):
"""Verify zero-width terminfo sequences are matched by ZERO_WIDTH_PATTERN."""
for part, is_seq in wcwidth.iter_sequences(seq):
assert is_seq, f"{cap_name}: {repr(part)} not matched as sequence"
assert wcwidth.width(seq) == 0
MODERN_TERMINAL_SEQUENCES = [
('\x1b_Gf=100,i=1;base64data\x1b\\hello', 5, 'kitty_graphics_with_text'),
('\x1b_Ga=d\x07', 0, 'kitty_graphics_delete'),
('\x1bP0;1;0q#0~-\x1b\\test', 4, 'sixel_graphics_with_text'),
('\x1bP$q"p\x1b\\', 0, 'decrqss_query'),
('\x1b^private\x1b\\text', 4, 'pm_with_text'),
('\x1b]1337;SetMark\x07test', 4, 'iterm2_setmark'),
('\x1b]1337;File=inline=1:base64\x07img', 3, 'iterm2_inline_image'),
('\x1b]1337;CursorShape=1\x07', 0, 'iterm2_cursor_shape'),
('\x1b]1337;CurrentDir=/home\x07', 0, 'iterm2_currentdir'),
('\x1b]133;A\x07$ ', 2, 'shell_prompt_start'),
('\x1b]133;B\x07ls', 2, 'shell_command_start'),
('\x1b]133;C\x07', 0, 'shell_command_executed'),
('\x1b]133;D;0\x07', 0, 'shell_command_finished'),
('\x1b]99;i=1:d=0;Hello\x1b\\', 0, 'kitty_notification'),
('\x1b]5522;type=read\x07', 0, 'kitty_clipboard_read'),
('\x1b]22;pointer\x07', 0, 'kitty_pointer_shape'),
('\x1b]21;fg=?\x07', 0, 'kitty_color_query'),
('\x1b]30001\x1b\\', 0, 'kitty_color_push'),
('\x1b]30101\x1b\\', 0, 'kitty_color_pop'),
]
@pytest.mark.parametrize('seq,expected_width,name', MODERN_TERMINAL_SEQUENCES)
def test_modern_sequences(seq, expected_width, name):
"""Modern terminal sequences are recognized as zero-width."""
assert wcwidth.width(seq) == expected_width
assert wcwidth.width(seq, control_codes='strict') == expected_width
@pytest.mark.parametrize('codepoint,expected_width', [
(0x3164, 0),
(0xFFA0, 0),
(0x2065, 0),
(0xFFF0, 0),
(0xFFF1, 0),
(0xFFF8, 0),
(0xE0000, 0),
(0xE0002, 0),
(0xE001F, 0),
(0xE0080, 0),
(0xE00FF, 0),
(0xE01F0, 0),
(0xE0FFF, 0),
])
def test_default_ignorable_zero_width(codepoint, expected_width):
"""Default_Ignorable_Code_Point characters return width 0."""
result = wcwidth.wcwidth(chr(codepoint))
assert result == expected_width
@pytest.mark.parametrize('codepoint,expected_width', [
(0x00AD, 1),
(0x115F, 2),
])
def test_default_ignorable_exceptions(codepoint, expected_width):
"""Exceptions to Default_Ignorable_Code_Point zero-width rule."""
result = wcwidth.wcwidth(chr(codepoint))
assert result == expected_width
def test_hangul_filler_zero_width():
"""U+3164 HANGUL FILLER is width 0."""
result = wcwidth.wcwidth('\u3164')
assert result == 0
def test_halfwidth_hangul_filler_zero_width():
"""U+FFA0 HALFWIDTH HANGUL FILLER is width 0."""
result = wcwidth.wcwidth('\uFFA0')
assert result == 0
def test_hangul_choseong_filler_exception():
"""U+115F HANGUL CHOSEONG FILLER remains width 2 for jamo composition."""
result = wcwidth.wcwidth('\u115F')
assert result == 2
def test_soft_hyphen_exception():
"""U+00AD SOFT HYPHEN remains width 1 for ISO-8859-1 compatibility."""
result = wcwidth.wcwidth('\u00AD')
assert result == 1
def test_fitzpatrick_modifier_after_emoji():
"""Fitzpatrick modifier following emoji base adds zero-width in width()."""
result = wcwidth.width('\U0001F469\U0001F3FB')
assert result == 2
def test_fitzpatrick_modifier_standalone_width():
"""Standalone Fitzpatrick modifier, however, is wide character in width()."""
result = wcwidth.width('\U0001F3FB')
assert result == 2
FS_SEQUENCE_CASES = [
('\x1bc', 'ris'),
('\x1bl', 'memory_lock'),
('\x1bm', 'memory_unlock'),
('\x1bn', 'ls2'),
('\x1bo', 'ls3'),
('\x1b|', 'ls3r'),
('\x1b}', 'ls2r'),
('\x1b~', 'ls1r'),
]
@pytest.mark.parametrize('seq,name', FS_SEQUENCE_CASES)
def test_fs_sequences_matched(seq, name):
"""Fs (independent function) sequences are matched as zero-width."""
segments = list(wcwidth.iter_sequences(seq))
assert segments == [(seq, True)]
assert wcwidth.width(seq) == 0
FP_SEQUENCE_CASES = [
('\x1b7', 'decsc'),
('\x1b8', 'decrc'),
('\x1b=', 'deckpam'),
('\x1b>', 'deckpnm'),
('\x1b0', 'fp_0'),
('\x1b1', 'fp_1'),
('\x1b9', 'fp_9'),
]
@pytest.mark.parametrize('seq,name', FP_SEQUENCE_CASES)
def test_fp_sequences_matched(seq, name):
"""Fp (private use) sequences are matched as zero-width."""
segments = list(wcwidth.iter_sequences(seq))
assert segments == [(seq, True)]
assert wcwidth.width(seq) == 0
NF_SEQUENCE_CASES = [
('\x1b F', 's7c1t'),
('\x1b G', 's8c1t'),
('\x1b#3', 'decdhl_top'),
('\x1b#4', 'decdhl_bottom'),
('\x1b#5', 'decswl'),
('\x1b#6', 'decdwl'),
('\x1b#8', 'decaln'),
('\x1b%G', 'utf8_designate'),
('\x1b%@', 'iso2022_return'),
]
@pytest.mark.parametrize('seq,name', NF_SEQUENCE_CASES)
def test_nf_sequences_matched(seq, name):
"""NF (multi-byte) escape sequences are matched as zero-width."""
segments = list(wcwidth.iter_sequences(seq))
assert segments == [(seq, True)]
assert wcwidth.width(seq) == 0
def test_fs_sequence_embedded_in_text():
"""Fs sequence surrounded by text is correctly segmented."""
segments = list(wcwidth.iter_sequences('abc\x1bcdef'))
assert segments == [('abc', False), ('\x1bc', True), ('def', False)]
assert wcwidth.width('abc\x1bcdef') == 6
def test_nf_sequence_embedded_in_text():
"""NF sequence surrounded by text is correctly segmented."""
segments = list(wcwidth.iter_sequences('abc\x1b#8def'))
assert segments == [('abc', False), ('\x1b#8', True), ('def', False)]
assert wcwidth.width('abc\x1b#8def') == 6
def test_screen_title_sequences():
"""Screen/tmux title sequence ESC k hello ST."""
segments = list(wcwidth.iter_sequences('\x1bkhello\x1b\\'))
assert segments[0] == ('\x1bk', True)
def test_ris_indeterminate():
"""RIS (ESC c) is flagged as indeterminate effect."""
assert INDETERMINATE_EFFECT_SEQUENCE.match('\x1bc')
|