-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathtest_screen.py
More file actions
1704 lines (1361 loc) · 50.2 KB
/
test_screen.py
File metadata and controls
1704 lines (1361 loc) · 50.2 KB
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import copy
import pytest
import pyte
from pyte import modes as mo, control as ctrl, graphics as g
from pyte.screens import Char
# Test helpers.
def update(screen, lines, colored=[]):
"""Updates a given screen object with given lines, colors each line
from ``colored`` in "red" and returns the modified screen.
"""
for y, line in enumerate(lines):
for x, char in enumerate(line):
if y in colored:
attrs = {"fg": "red"}
else:
attrs = {}
screen.buffer[y][x] = Char(data=char, **attrs)
return screen
def tolist(screen):
return [[screen.buffer[y][x] for x in range(screen.columns)]
for y in range(screen.lines)]
# Tests.
def test_initialize_char():
# Make sure that char can be correctly initialized with keyword
# arguments. See #24 on GitHub for details.
for field in Char._fields[1:]:
char = Char(field[0], **{field: True})
assert getattr(char, field)
def test_remove_non_existant_attribute():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(24) # underline-off.
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
assert not screen.cursor.attrs.underscore
def test_attributes():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(1) # bold.
# Still default, since we haven't written anything.
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
assert screen.cursor.attrs.bold
screen.draw("f")
assert tolist(screen) == [
[Char("f", "default", "default", bold=True), screen.default_char],
[screen.default_char, screen.default_char]
]
def test_blink():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(5) # blink.
screen.draw("f")
assert tolist(screen) == [
[Char("f", "default", "default", blink=True), screen.default_char],
[screen.default_char, screen.default_char]
]
def test_colors():
screen = pyte.Screen(2, 2)
screen.select_graphic_rendition(30)
screen.select_graphic_rendition(40)
assert screen.cursor.attrs.fg == "black"
assert screen.cursor.attrs.bg == "black"
screen.select_graphic_rendition(31)
assert screen.cursor.attrs.fg == "red"
assert screen.cursor.attrs.bg == "black"
def test_colors256():
screen = pyte.Screen(2, 2)
# a) OK-case.
screen.select_graphic_rendition(g.FG_256, 5, 0)
screen.select_graphic_rendition(g.BG_256, 5, 15)
assert screen.cursor.attrs.fg == "000000"
assert screen.cursor.attrs.bg == "ffffff"
# b) invalid color.
screen.select_graphic_rendition(48, 5, 100500)
def test_colors256_missing_attrs():
# Test from https://github.com/selectel/pyte/issues/115
screen = pyte.Screen(2, 2)
screen.select_graphic_rendition(g.FG_256)
screen.select_graphic_rendition(g.BG_256)
assert screen.cursor.attrs == screen.default_char
def test_colors24bit():
screen = pyte.Screen(2, 2)
# a) OK-case
screen.select_graphic_rendition(38, 2, 0, 0, 0)
screen.select_graphic_rendition(48, 2, 255, 255, 255)
assert screen.cursor.attrs.fg == "000000"
assert screen.cursor.attrs.bg == "ffffff"
# b) invalid color.
screen.select_graphic_rendition(48, 2, 255)
def test_colors_aixterm():
# See issue #57 on GitHub.
screen = pyte.Screen(2, 2)
# a) foreground color.
screen.select_graphic_rendition(94)
assert screen.cursor.attrs.fg == "brightblue"
# b) background color.
screen.select_graphic_rendition(104)
assert screen.cursor.attrs.bg == "brightblue"
def test_colors_ignore_invalid():
screen = pyte.Screen(2, 2)
default_attrs = screen.cursor.attrs
screen.select_graphic_rendition(100500)
assert screen.cursor.attrs == default_attrs
screen.select_graphic_rendition(38, 100500)
assert screen.cursor.attrs == default_attrs
screen.select_graphic_rendition(48, 100500)
assert screen.cursor.attrs == default_attrs
def test_reset_resets_colors():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(30)
screen.select_graphic_rendition(40)
assert screen.cursor.attrs.fg == "black"
assert screen.cursor.attrs.bg == "black"
screen.select_graphic_rendition(0)
assert screen.cursor.attrs == screen.default_char
def test_reset_works_between_attributes():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
# Red fg, reset, red bg
screen.select_graphic_rendition(31, 0, 41)
assert screen.cursor.attrs.fg == "default"
assert screen.cursor.attrs.bg == "red"
def test_multi_attribs():
screen = pyte.Screen(2, 2)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(1)
screen.select_graphic_rendition(3)
assert screen.cursor.attrs.bold
assert screen.cursor.attrs.italics
def test_attributes_reset():
screen = pyte.Screen(2, 2)
screen.set_mode(mo.LNM)
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.select_graphic_rendition(1)
screen.draw("f")
screen.draw("o")
screen.draw("o")
assert tolist(screen) == [
[Char("f", bold=True), Char("o", bold=True)],
[Char("o", bold=True), screen.default_char],
]
screen.cursor_position()
screen.select_graphic_rendition(0) # Reset
screen.draw("f")
assert tolist(screen) == [
[Char("f"), Char("o", bold=True)],
[Char("o", bold=True), screen.default_char],
]
def test_resize():
screen = pyte.Screen(2, 2)
screen.set_mode(mo.DECOM)
screen.set_margins(0, 1)
assert screen.columns == screen.lines == 2
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
screen.resize(3, 3)
assert screen.columns == screen.lines == 3
assert tolist(screen) == [
[screen.default_char, screen.default_char, screen.default_char]
] * 3
assert mo.DECOM in screen.mode
assert screen.margins is None
screen.resize(2, 2)
assert screen.columns == screen.lines == 2
assert tolist(screen) == [[screen.default_char, screen.default_char]] * 2
# Quirks:
# a) if the current display is narrower than the requested size,
# new columns should be added to the right.
screen = update(pyte.Screen(2, 2), ["bo", "sh"], [None, None])
screen.resize(2, 3)
assert screen.display == ["bo ", "sh "]
# b) if the current display is wider than the requested size,
# columns should be removed from the right...
screen = update(pyte.Screen(2, 2), ["bo", "sh"], [None, None])
screen.resize(2, 1)
assert screen.display == ["b", "s"]
# c) if the current display is shorter than the requested
# size, new rows should be added on the bottom.
screen = update(pyte.Screen(2, 2), ["bo", "sh"], [None, None])
screen.resize(3, 2)
assert screen.display == ["bo", "sh", " "]
# d) if the current display is taller than the requested
# size, rows should be removed from the top.
screen = update(pyte.Screen(2, 2), ["bo", "sh"], [None, None])
screen.resize(1, 2)
assert screen.display == ["sh"]
def test_resize_same():
screen = pyte.Screen(2, 2)
screen.dirty.clear()
screen.resize(2, 2)
assert not screen.dirty
def test_set_mode():
# Test mo.DECCOLM mode
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"])
screen.cursor_position(1, 1)
screen.set_mode(mo.DECCOLM)
for line in range(3):
for char in tolist(screen)[line]:
assert char == screen.default_char
assert screen.columns == 132
assert screen.cursor.x == 0
assert screen.cursor.y == 0
screen.reset_mode(mo.DECCOLM)
assert screen.columns == 3
# Test mo.DECOM mode
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"])
screen.cursor_position(1, 1)
screen.set_mode(mo.DECOM)
assert screen.cursor.x == 0
assert screen.cursor.y == 0
# Test mo.DECSCNM mode
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"])
screen.set_mode(mo.DECSCNM)
for line in range(3):
for char in tolist(screen)[line]:
assert char.reverse
assert screen.default_char.reverse
screen.reset_mode(mo.DECSCNM)
for line in range(3):
for char in tolist(screen)[line]:
assert not char.reverse
assert not screen.default_char.reverse
# Test mo.DECTCEM mode
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"])
screen.cursor.hidden = True
screen.set_mode(mo.DECTCEM)
assert not screen.cursor.hidden
screen.reset_mode(mo.DECTCEM)
assert screen.cursor.hidden
def test_draw():
# ``DECAWM`` on (default).
screen = pyte.Screen(3, 3)
screen.set_mode(mo.LNM)
assert mo.DECAWM in screen.mode
for ch in "abc":
screen.draw(ch)
assert screen.display == ["abc", " ", " "]
assert (screen.cursor.y, screen.cursor.x) == (0, 3)
# ... one` more character -- now we got a linefeed!
screen.draw("a")
assert (screen.cursor.y, screen.cursor.x) == (1, 1)
# ``DECAWM`` is off.
screen = pyte.Screen(3, 3)
screen.reset_mode(mo.DECAWM)
for ch in "abc":
screen.draw(ch)
assert screen.display == ["abc", " ", " "]
assert (screen.cursor.y, screen.cursor.x) == (0, 3)
# No linefeed is issued on the end of the line ...
screen.draw("a")
assert screen.display == ["aba", " ", " "]
assert (screen.cursor.y, screen.cursor.x) == (0, 3)
# ``IRM`` mode is on, expecting new characters to move the old ones
# instead of replacing them.
screen.set_mode(mo.IRM)
screen.cursor_position()
screen.draw("x")
assert screen.display == ["xab", " ", " "]
screen.cursor_position()
screen.draw("y")
assert screen.display == ["yxa", " ", " "]
def test_draw_russian():
# Test from https://github.com/selectel/pyte/issues/65
screen = pyte.Screen(20, 1)
stream = pyte.Stream(screen)
stream.feed("Нерусский текст")
assert screen.display == ["Нерусский текст "]
def test_draw_multiple_chars():
screen = pyte.Screen(10, 1)
screen.draw("foobar")
assert screen.cursor.x == 6
assert screen.display == ["foobar "]
def test_draw_utf8():
# See https://github.com/selectel/pyte/issues/62
screen = pyte.Screen(1, 1)
stream = pyte.ByteStream(screen)
stream.feed(b"\xE2\x80\x9D")
assert screen.display == ["”"]
def test_draw_width2():
# Example from https://github.com/selectel/pyte/issues/9
screen = pyte.Screen(10, 1)
screen.draw("コンニチハ")
assert screen.cursor.x == screen.columns
def test_draw_width2_line_end():
# Test from https://github.com/selectel/pyte/issues/55
screen = pyte.Screen(10, 1)
screen.draw(" コンニチハ")
assert screen.cursor.x == screen.columns
@pytest.mark.xfail
def test_draw_width2_irm():
screen = pyte.Screen(2, 1)
screen.draw("コ")
assert screen.display == ["コ"]
assert tolist(screen) == [[Char("コ"), Char(" ")]]
# Overwrite the stub part of a width 2 character.
screen.set_mode(mo.IRM)
screen.cursor_to_column(screen.columns)
screen.draw("x")
assert screen.display == [" x"]
def test_draw_width0_combining():
screen = pyte.Screen(4, 2)
# a) no prev. character
screen.draw("\N{COMBINING DIAERESIS}")
assert screen.display == [" ", " "]
screen.draw("bad")
# b) prev. character is on the same line
screen.draw("\N{COMBINING DIAERESIS}")
assert screen.display == ["bad̈ ", " "]
# c) prev. character is on the prev. line
screen.draw("!")
screen.draw("\N{COMBINING DIAERESIS}")
assert screen.display == ["bad̈!̈", " "]
def test_draw_width0_irm():
screen = pyte.Screen(10, 1)
screen.set_mode(mo.IRM)
# The following should not insert any blanks.
screen.draw("\N{ZERO WIDTH SPACE}")
screen.draw("\u0007") # DELETE.
assert screen.display == [" " * screen.columns]
def test_draw_width0_decawm_off():
screen = pyte.Screen(10, 1)
screen.reset_mode(mo.DECAWM)
screen.draw(" コンニチハ")
assert screen.cursor.x == screen.columns
# The following should not advance the cursor.
screen.draw("\N{ZERO WIDTH SPACE}")
screen.draw("\u0007") # DELETE.
assert screen.cursor.x == screen.columns
def test_draw_cp437():
screen = pyte.Screen(5, 1)
stream = pyte.ByteStream(screen)
assert screen.charset == 0
screen.define_charset("U", "(")
stream.select_other_charset("@")
stream.feed("α ± ε".encode("cp437"))
assert screen.display == ["α ± ε"]
def test_draw_with_carriage_return():
# See https://github.com/selectel/pyte/issues/66
line = """\
ipcs -s | grep nobody |awk '{print$2}'|xargs -n1 i\
pcrm sem ;ps aux|grep -P 'httpd|fcgi'|grep -v grep\
|awk '{print$2 \x0D}'|xargs kill -9;/etc/init.d/ht\
tpd startssl"""
screen = pyte.Screen(50, 3)
stream = pyte.Stream(screen)
stream.feed(line)
assert screen.display == [
"ipcs -s | grep nobody |awk '{print$2}'|xargs -n1 i",
"pcrm sem ;ps aux|grep -P 'httpd|fcgi'|grep -v grep",
"}'|xargs kill -9;/etc/init.d/httpd startssl "
]
def test_display_wcwidth():
screen = pyte.Screen(10, 1)
screen.draw("コンニチハ")
assert screen.display == ["コンニチハ"]
def test_display_multi_char_emoji():
screen = pyte.Screen(4, 1)
screen.draw("👨\u200d💻a")
assert screen.display == ["👨\u200d💻a "]
def test_display_complex_emoji():
emoji = "\U0001f926\U0001f3fd\u200d\u2642\ufe0f"
screen = pyte.Screen(4, 1)
screen.draw(emoji + "a")
assert screen.display == [emoji + "a "]
def test_vs16_heart_emoji_40_in_80_columns():
screen = pyte.Screen(80, 1)
# RED HEART + VARIATION SELECTOR-16: ❤️ (wide)
heart_vs16 = '\u2764\ufe0f'
screen.draw(heart_vs16 * 40)
assert screen.cursor.x == 80
assert screen.buffer[0][0].data == heart_vs16
assert screen.buffer[0][1].data == ''
def test_heart_bare_is_narrow():
screen = pyte.Screen(80, 1)
# RED HEART (text presentation): ❤ (narrow)
heart_bare = '\u2764'
screen.draw(heart_bare * 80)
assert screen.cursor.x == 80
def test_zwj_emoji_40_in_80_columns():
screen = pyte.Screen(80, 1)
# MAN + ZWJ + WOMAN + ZWJ + GIRL (family): 👨👩👧
family = '\U0001F468\u200D\U0001F469\u200D\U0001F467'
screen.draw(family * 40)
assert screen.cursor.x == 80
assert screen.buffer[0][0].data == family
assert screen.buffer[0][1].data == ''
def test_flag_emoji_40_in_80_columns():
screen = pyte.Screen(80, 1)
# REGIONAL INDICATOR U + REGIONAL INDICATOR S (US flag): 🇺🇸
flag_us = '\U0001F1FA\U0001F1F8'
screen.draw(flag_us * 40)
assert screen.cursor.x == 80
assert screen.buffer[0][0].data == flag_us
assert screen.buffer[0][1].data == ''
def test_mixed_emoji_widths():
screen = pyte.Screen(10, 1)
# ❤ (width 1) + ❤️ (width 2) + 🇺🇸 (width 2) + 'a' (width 1) = 6
text = '\u2764' + '\u2764\ufe0f' + '\U0001F1FA\U0001F1F8' + 'a'
screen.draw(text)
assert screen.cursor.x == 6
@pytest.mark.parametrize(("grapheme", "expected_width"), [
('\U0001F44B\U0001F3FB', 2),
('\U0001F469\U0001F3FB\u200D\U0001F4BB', 2),
('\U0001F9D1\U0001F3FB\u200D\u2764\uFE0F\u200D\U0001F48B\u200D\U0001F9D1\U0001F3FD', 2),
('\u26F9\U0001F3FB\u200D\u2640\uFE0F', 2),
], ids=['wave_skin', 'woman_technologist', 'kiss_couple', 'person_ball_female'])
def test_wide_grapheme_cluster(grapheme, expected_width):
"""Wide grapheme clusters occupy expected width and store as single unit."""
screen = pyte.Screen(10, 1)
screen.draw(grapheme)
assert screen.cursor.x == expected_width
assert screen.buffer[0][0].data == grapheme
assert screen.buffer[0][1].data == ''
@pytest.mark.parametrize(("grapheme",), [
('cafe\u0301',),
('ok\u1100\u1161ok',),
('ok\uAC00\u11A8ok',),
], ids=['combining_accent', 'hangul_lv', 'hangul_lvt'])
def test_grapheme_cluster_in_context(grapheme):
"""Grapheme clusters with combining/jamo characters stored correctly."""
screen = pyte.Screen(10, 1)
screen.draw(grapheme)
assert screen.buffer[0][2].data in ('\u1100\u1161', '\uAC00\u11A8', 'f')
if grapheme.startswith('cafe'):
assert screen.buffer[0][3].data == 'e\u0301'
def test_regional_indicator_graphemes():
"""Regional indicator pairs form flags; odd RI stays separate."""
screen = pyte.Screen(10, 1)
# four unicode RI's make two flags, 4 total cells
screen.draw('\U0001F1FA\U0001F1F8\U0001F1E6\U0001F1FA')
assert screen.cursor.x == 4
assert screen.buffer[0][0].data == '\U0001F1FA\U0001F1F8'
assert screen.buffer[0][2].data == '\U0001F1E6\U0001F1FA'
def test_carriage_return():
screen = pyte.Screen(3, 3)
screen.cursor.x = 2
screen.carriage_return()
assert screen.cursor.x == 0
def test_index():
screen = update(pyte.Screen(2, 2), ["wo", "ot"], colored=[1])
# a) indexing on a row that isn't the last should just move
# the cursor down.
screen.index()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert tolist(screen) == [
[Char("w"), Char("o")],
[Char("o", fg="red"), Char("t", fg="red")]
]
# b) indexing on the last row should push everything up and
# create a new row at the bottom.
screen.index()
assert screen.cursor.y == 1
assert tolist(screen) == [
[Char("o", fg="red"), Char("t", fg="red")],
[screen.default_char, screen.default_char]
]
# c) same with margins
screen = update(pyte.Screen(2, 5), ["bo", "sh", "th", "er", "oh"],
colored=[1, 2])
screen.set_margins(2, 4)
screen.cursor.y = 3
# ... go!
screen.index()
assert (screen.cursor.y, screen.cursor.x) == (3, 0)
assert screen.display == ["bo", "th", "er", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o", "default")],
[Char("t", "red"), Char("h", "red")],
[Char("e"), Char("r")],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
# ... and again ...
screen.index()
assert (screen.cursor.y, screen.cursor.x) == (3, 0)
assert screen.display == ["bo", "er", " ", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[Char("e"), Char("r")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
# ... and again ...
screen.index()
assert (screen.cursor.y, screen.cursor.x) == (3, 0)
assert screen.display == ["bo", " ", " ", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
# look, nothing changes!
screen.index()
assert (screen.cursor.y, screen.cursor.x) == (3, 0)
assert screen.display == ["bo", " ", " ", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
def test_reverse_index():
screen = update(pyte.Screen(2, 2), ["wo", "ot"], colored=[0])
# a) reverse indexing on the first row should push rows down
# and create a new row at the top.
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert tolist(screen) == [
[screen.default_char, screen.default_char],
[Char("w", fg="red"), Char("o", fg="red")]
]
# b) once again ...
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert tolist(screen) == [
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
]
# c) same with margins
screen = update(pyte.Screen(2, 5), ["bo", "sh", "th", "er", "oh"],
colored=[2, 3])
screen.set_margins(2, 4)
screen.cursor.y = 1
# ... go!
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["bo", " ", "sh", "th", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[Char("s"), Char("h")],
[Char("t", fg="red"), Char("h", fg="red")],
[Char("o"), Char("h")],
]
# ... and again ...
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["bo", " ", " ", "sh", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("s"), Char("h")],
[Char("o"), Char("h")],
]
# ... and again ...
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["bo", " ", " ", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
# look, nothing changes!
screen.reverse_index()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["bo", " ", " ", " ", "oh"]
assert tolist(screen) == [
[Char("b"), Char("o")],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[screen.default_char, screen.default_char],
[Char("o"), Char("h")],
]
def test_linefeed():
screen = update(pyte.Screen(2, 2), ["bo", "sh"], [None, None])
screen.set_mode(mo.LNM)
# a) LNM on by default (that's what `vttest` forces us to do).
assert mo.LNM in screen.mode
screen.cursor.x, screen.cursor.y = 1, 0
screen.linefeed()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
# b) LNM off.
screen.reset_mode(mo.LNM)
screen.cursor.x, screen.cursor.y = 1, 0
screen.linefeed()
assert (screen.cursor.y, screen.cursor.x) == (1, 1)
def test_linefeed_margins():
# See issue #63 on GitHub.
screen = pyte.Screen(80, 24)
screen.set_margins(3, 27)
screen.cursor_position()
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
screen.linefeed()
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
def test_tabstops():
screen = pyte.Screen(10, 10)
# Making sure initial tabstops are in place ...
assert screen.tabstops == {8}
# ... and clearing them.
screen.clear_tab_stop(3)
assert not screen.tabstops
screen.cursor.x = 1
screen.set_tab_stop()
screen.cursor.x = 8
screen.set_tab_stop()
screen.cursor.x = 0
screen.tab()
assert screen.cursor.x == 1
screen.tab()
assert screen.cursor.x == 8
screen.tab()
assert screen.cursor.x == 9
screen.tab()
assert screen.cursor.x == 9
def test_clear_tabstops():
screen = pyte.Screen(10, 10)
screen.clear_tab_stop(3)
# a) clear a tabstop at current cursor location
screen.cursor.x = 1
screen.set_tab_stop()
screen.cursor.x = 5
screen.set_tab_stop()
screen.clear_tab_stop()
assert screen.tabstops == {1}
screen.set_tab_stop()
screen.clear_tab_stop(0)
assert screen.tabstops == {1}
# b) all tabstops
screen.set_tab_stop()
screen.cursor.x = 9
screen.set_tab_stop()
screen.clear_tab_stop(3)
assert not screen.tabstops
def test_backspace():
screen = pyte.Screen(2, 2)
assert screen.cursor.x == 0
screen.backspace()
assert screen.cursor.x == 0
screen.cursor.x = 1
screen.backspace()
assert screen.cursor.x == 0
def test_save_cursor():
# a) cursor position
screen = pyte.Screen(10, 10)
screen.save_cursor()
screen.cursor.x, screen.cursor.y = 3, 5
screen.save_cursor()
screen.cursor.x, screen.cursor.y = 4, 4
screen.restore_cursor()
assert screen.cursor.x == 3
assert screen.cursor.y == 5
screen.restore_cursor()
assert screen.cursor.x == 0
assert screen.cursor.y == 0
# b) modes
screen = pyte.Screen(10, 10)
screen.set_mode(mo.DECAWM, mo.DECOM)
screen.save_cursor()
screen.reset_mode(mo.DECAWM)
screen.restore_cursor()
assert mo.DECAWM in screen.mode
assert mo.DECOM in screen.mode
# c) attributes
screen = pyte.Screen(10, 10)
screen.select_graphic_rendition(4)
screen.save_cursor()
screen.select_graphic_rendition(24)
assert screen.cursor.attrs == screen.default_char
screen.restore_cursor()
assert screen.cursor.attrs != screen.default_char
assert screen.cursor.attrs == Char(" ", underscore=True)
def test_restore_cursor_with_none_saved():
screen = pyte.Screen(10, 10)
screen.set_mode(mo.DECOM)
screen.cursor.x, screen.cursor.y = 5, 5
screen.restore_cursor()
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert mo.DECOM not in screen.mode
def test_restore_cursor_out_of_bounds():
screen = pyte.Screen(10, 10)
# a) origin mode off.
screen.cursor_position(5, 5)
screen.save_cursor()
screen.resize(3, 3)
screen.reset()
screen.restore_cursor()
assert (screen.cursor.y, screen.cursor.x) == (2, 2)
# b) origin mode is on.
screen.resize(10, 10)
screen.cursor_position(8, 8)
screen.save_cursor()
screen.resize(5, 5)
screen.reset()
screen.set_mode(mo.DECOM)
screen.set_margins(2, 3)
screen.restore_cursor()
assert (screen.cursor.y, screen.cursor.x) == (2, 4)
def test_insert_lines():
# a) without margins
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"], colored=[1])
screen.insert_lines()
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert screen.display == [" ", "sam", "is "]
assert tolist(screen) == [
[screen.default_char] * 3,
[Char("s"), Char("a"), Char("m")],
[Char("i", fg="red"), Char("s", fg="red"), Char(" ", fg="red")],
]
screen = update(pyte.Screen(3, 3), ["sam", "is ", "foo"], colored=[1])
screen.insert_lines(2)
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert screen.display == [" ", " ", "sam"]
assert tolist(screen) == [
[screen.default_char] * 3,
[screen.default_char] * 3,
[Char("s"), Char("a"), Char("m")]
]
# b) with margins
screen = update(pyte.Screen(3, 5), ["sam", "is ", "foo", "bar", "baz"],
colored=[2, 3])
screen.set_margins(1, 4)
screen.cursor.y = 1
screen.insert_lines(1)
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["sam", " ", "is ", "foo", "baz"]
assert tolist(screen) == [
[Char("s"), Char("a"), Char("m")],
[screen.default_char] * 3,
[Char("i"), Char("s"), Char(" ")],
[Char("f", fg="red"), Char("o", fg="red"), Char("o", fg="red")],
[Char("b"), Char("a"), Char("z")],
]
screen = update(pyte.Screen(3, 5), ["sam", "is ", "foo", "bar", "baz"],
colored=[2, 3])
screen.set_margins(1, 3)
screen.cursor.y = 1
screen.insert_lines(1)
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["sam", " ", "is ", "bar", "baz"]
assert tolist(screen) == [
[Char("s"), Char("a"), Char("m")],
[screen.default_char] * 3,
[Char("i"), Char("s"), Char(" ")],
[Char("b", fg="red"), Char("a", fg="red"), Char("r", fg="red")],
[Char("b"), Char("a"), Char("z")],
]
screen.insert_lines(2)
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["sam", " ", " ", "bar", "baz"]
assert tolist(screen) == [
[Char("s"), Char("a"), Char("m")],
[screen.default_char] * 3,
[screen.default_char] * 3,
[Char("b", fg="red"), Char("a", fg="red"), Char("r", fg="red")],
[Char("b"), Char("a"), Char("z")],
]
# c) with margins -- trying to insert more than we have available
screen = update(pyte.Screen(3, 5), ["sam", "is ", "foo", "bar", "baz"],
colored=[2, 3])
screen.set_margins(2, 4)
screen.cursor.y = 1
screen.insert_lines(20)
assert (screen.cursor.y, screen.cursor.x) == (1, 0)
assert screen.display == ["sam", " ", " ", " ", "baz"]
assert tolist(screen) == [
[Char("s"), Char("a"), Char("m")],
[screen.default_char] * 3,
[screen.default_char] * 3,
[screen.default_char] * 3,
[Char("b"), Char("a"), Char("z")],
]
# d) with margins -- trying to insert outside scroll boundaries;
# expecting nothing to change
screen = update(pyte.Screen(3, 5), ["sam", "is ", "foo", "bar", "baz"],
colored=[2, 3])
screen.set_margins(2, 4)
screen.insert_lines(5)
assert (screen.cursor.y, screen.cursor.x) == (0, 0)
assert screen.display == ["sam", "is ", "foo", "bar", "baz"]
assert tolist(screen) == [
[Char("s"), Char("a"), Char("m")],
[Char("i"), Char("s"), Char(" ")],
[Char("f", fg="red"), Char("o", fg="red"), Char("o", fg="red")],
[Char("b", fg="red"), Char("a", fg="red"), Char("r", fg="red")],
[Char("b"), Char("a"), Char("z")],
]