-
-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathtest_curtsies_painting.py
More file actions
480 lines (439 loc) · 17.4 KB
/
test_curtsies_painting.py
File metadata and controls
480 lines (439 loc) · 17.4 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
# coding: utf8
from __future__ import unicode_literals
import sys
import os
from contextlib import contextmanager
try:
from unittest import skip
except ImportError:
def skip(f):
return lambda self: None
from curtsies.formatstringarray import FormatStringTest, fsarray
from curtsies.fmtfuncs import *
from bpython.curtsiesfrontend.events import RefreshRequestEvent
from bpython import config
from bpython.curtsiesfrontend.repl import Repl
from bpython.repl import History
from bpython.curtsiesfrontend.repl import INCONSISTENT_HISTORY_MSG, CONTIGUITY_BROKEN_MSG
def setup_config():
config_struct = config.Struct()
config.loadini(config_struct, os.devnull)
return config_struct
class TestCurtsiesPainting(FormatStringTest):
def setUp(self):
self.repl = Repl(config=setup_config())
self.repl.rl_history = History() # clear history
self.repl.height, self.repl.width = (5, 10)
def assert_paint(self, screen, cursor_row_col):
array, cursor_pos = self.repl.paint()
self.assertFSArraysEqual(array, screen)
self.assertEqual(cursor_pos, cursor_row_col)
def assert_paint_ignoring_formatting(self, screen, cursor_row_col=None):
array, cursor_pos = self.repl.paint()
self.assertFSArraysEqualIgnoringFormatting(array, screen)
if cursor_row_col is not None:
self.assertEqual(cursor_pos, cursor_row_col)
class TestCurtsiesPaintingTest(TestCurtsiesPainting):
def test_history_is_cleared(self):
self.assertEqual(self.repl.rl_history.entries, [''])
class TestCurtsiesPaintingSimple(TestCurtsiesPainting):
def test_startup(self):
screen = fsarray([cyan('>>> '), cyan('Welcome to')])
self.assert_paint(screen, (0, 4))
def test_enter_text(self):
[self.repl.add_normal_character(c) for c in '1 + 1']
screen = fsarray([cyan('>>> ') + bold(green('1')+cyan(' ')+
yellow('+') + cyan(' ') + green('1')), cyan('Welcome to')])
self.assert_paint(screen, (0, 9))
def test_run_line(self):
try:
orig_stdout = sys.stdout
sys.stdout = self.repl.stdout
[self.repl.add_normal_character(c) for c in '1 + 1']
self.repl.on_enter(insert_into_history=False)
screen = fsarray([u'>>> 1 + 1', '2', 'Welcome to'])
self.assert_paint_ignoring_formatting(screen, (1, 1))
finally:
sys.stdout = orig_stdout
def test_completion(self):
self.repl.height, self.repl.width = (5, 32)
self.repl.current_line = 'se'
self.cursor_offset = 2
screen = [u'>>> se',
u'┌───────────────────────┐',
u'│ set( setattr( │',
u'└───────────────────────┘',
u'Welcome to bpython! Press <F1> f']
self.assert_paint_ignoring_formatting(screen, (0, 4))
@contextmanager
def output_to_repl(repl):
old_out, old_err = sys.stdout, sys.stderr
try:
sys.stdout, sys.stderr = repl.stdout, repl.stderr
yield
finally:
sys.stdout, sys.stderr = old_out, old_err
class TestCurtsiesRewindRedraw(TestCurtsiesPainting):
def refresh(self):
self.refresh_requests.append(RefreshRequestEvent())
def send_refreshes(self):
while self.refresh_requests:
self.repl.process_event(self.refresh_requests.pop())
def enter(self, line=None):
"""Enter a line of text, avoiding autocompletion windows
autocomplete could still happen if the entered line has
autocompletion that would happen then, but intermediate
stages won't happen"""
if line is not None:
self.repl.current_line = line
with output_to_repl(self.repl):
self.repl.on_enter(insert_into_history=False)
self.assertEqual(self.repl.rl_history.entries, [''])
self.send_refreshes()
def undo(self):
with output_to_repl(self.repl):
self.repl.undo()
self.send_refreshes()
def setUp(self):
self.refresh_requests = []
self.repl = Repl(banner='', config=setup_config(), request_refresh=self.refresh)
self.repl.rl_history = History() # clear history
self.repl.height, self.repl.width = (5, 32)
def test_rewind(self):
self.repl.current_line = '1 + 1'
self.enter()
screen = [u'>>> 1 + 1',
u'2',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (2, 4))
self.repl.undo()
screen = [u'>>> ']
self.assert_paint_ignoring_formatting(screen, (0, 4))
def test_rewind_contiguity_loss(self):
self.enter('1 + 1')
self.enter('2 + 2')
self.enter('def foo(x):')
self.repl.current_line = ' return x + 1'
screen = [u'>>> 1 + 1',
u'2',
u'>>> 2 + 2',
u'4',
u'>>> def foo(x):',
u'... return x + 1']
self.assert_paint_ignoring_formatting(screen, (5, 8))
self.repl.scroll_offset = 1
self.assert_paint_ignoring_formatting(screen[1:], (4, 8))
self.undo()
screen = [u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (3, 4))
self.undo()
screen = [u'2',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (1, 4))
self.undo()
screen = [CONTIGUITY_BROKEN_MSG[:self.repl.width],
u'>>> ',
u'',
u'',
u'',
u' '] #TODO why is that there? Necessary?
self.assert_paint_ignoring_formatting(screen, (1, 4))
screen = [u'>>> ']
self.assert_paint_ignoring_formatting(screen, (0, 4))
def test_inconsistent_history_doesnt_happen_if_onscreen(self):
self.enter("1 + 1")
screen = [u">>> 1 + 1",
u'2',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (2, 4))
self.enter("2 + 2")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (4, 4))
self.repl.display_lines[0] = self.repl.display_lines[0] * 2
self.undo()
screen = [u">>> 1 + 1",
u'2',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (2, 4))
def test_rewind_inconsistent_history(self):
self.enter("1 + 1")
self.enter("2 + 2")
self.enter("3 + 3")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> 3 + 3',
u'6',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (6, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[2:], (4, 4))
self.repl.display_lines[0] = self.repl.display_lines[0] * 2
self.undo()
screen = [INCONSISTENT_HISTORY_MSG[:self.repl.width],
u'>>> 2 + 2',
u'4',
u'>>> ',
u'',
u' ']
self.assert_paint_ignoring_formatting(screen, (3, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[1:-2], (2, 4))
self.assert_paint_ignoring_formatting(screen[1:-2], (2, 4))
def test_rewind_inconsistent_history_more_lines_same_screen(self):
self.repl.width = 60
sys.a = 5
self.enter("import sys")
self.enter("for i in range(sys.a): print(sys.a)")
self.enter()
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> import sys",
u">>> for i in range(sys.a): print(sys.a)",
u'... ',
u'5',
u'5',
u'5',
u'5',
u'5',
u'>>> 1 + 1',
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (12, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[8:], (4, 4))
sys.a = 6
self.undo()
screen = [INCONSISTENT_HISTORY_MSG[:self.repl.width],
u'6',
u'>>> 1 + 1', # everything will jump down a line - that's perfectly reasonable
u'2',
u'>>> ',
u' ']
self.assert_paint_ignoring_formatting(screen, (4, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[1:-1], (3, 4))
def test_rewind_inconsistent_history_more_lines_lower_screen(self):
self.repl.width = 60
sys.a = 5
self.enter("import sys")
self.enter("for i in range(sys.a): print(sys.a)")
self.enter()
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> import sys",
u">>> for i in range(sys.a): print(sys.a)",
u'... ',
u'5',
u'5',
u'5',
u'5',
u'5',
u'>>> 1 + 1',
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (12, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[8:], (4, 4))
sys.a = 8
self.undo()
screen = [INCONSISTENT_HISTORY_MSG[:self.repl.width],
u'8',
u'8',
u'8',
u'>>> 1 + 1',
u'2',
u'>>> ']
self.assert_paint_ignoring_formatting(screen)
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[-5:])
def test_rewind_inconsistent_history_more_lines_raise_screen(self):
self.repl.width = 60
sys.a = 5
self.enter("import sys")
self.enter("for i in range(sys.a): print(sys.a)")
self.enter()
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> import sys",
u">>> for i in range(sys.a): print(sys.a)",
u'... ',
u'5',
u'5',
u'5',
u'5',
u'5',
u'>>> 1 + 1',
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (12, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[8:], (4, 4))
sys.a = 1
self.undo()
screen = [INCONSISTENT_HISTORY_MSG[:self.repl.width],
u'1',
u'>>> 1 + 1',
u'2',
u'>>> ',
u' ']
self.assert_paint_ignoring_formatting(screen)
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[1:-1])
def test_rewind_history_not_quite_inconsistent(self):
self.repl.width = 50
sys.a = 5
self.enter("for i in range(__import__('sys').a): print(i)")
self.enter()
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> for i in range(__import__('sys').a): print(i)",
u'... ',
u'0',
u'1',
u'2',
u'3',
u'4',
u'>>> 1 + 1',
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (11, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[7:], (4, 4))
sys.a = 6
self.undo()
screen = [u'5',
u'>>> 1 + 1', # everything will jump down a line - that's perfectly reasonable
u'2',
u'>>> ',]
self.assert_paint_ignoring_formatting(screen, (3, 4))
def test_rewind_barely_consistent(self):
self.enter("1 + 1")
self.enter("2 + 2")
self.enter("3 + 3")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> 3 + 3',
u'6',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (6, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[2:], (4, 4))
self.repl.display_lines[2] = self.repl.display_lines[2] * 2
self.undo()
screen = [u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (2, 4))
def test_clear_screen(self):
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ']
self.assert_paint_ignoring_formatting(screen, (4, 4))
self.repl.request_paint_to_clear_screen = True
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ', u'', u'', u'', u'']
self.assert_paint_ignoring_formatting(screen, (4, 4))
def test_scroll_down_while_banner_visible(self):
self.repl.status_bar.message('STATUS_BAR')
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ',
u'STATUS_BAR ']
self.assert_paint_ignoring_formatting(screen, (4, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[1:], (3, 4))
def test_clear_screen_while_banner_visible(self):
self.repl.status_bar.message('STATUS_BAR')
self.enter("1 + 1")
self.enter("2 + 2")
screen = [u">>> 1 + 1",
u'2',
u'>>> 2 + 2',
u'4',
u'>>> ',
u'STATUS_BAR ']
self.assert_paint_ignoring_formatting(screen, (4, 4))
self.repl.scroll_offset += len(screen) - self.repl.height
self.assert_paint_ignoring_formatting(screen[1:], (3, 4))
self.repl.request_paint_to_clear_screen = True
screen = [u'2',
u'>>> 2 + 2',
u'4',
u'>>> ',
u'', u'', u'',
u'STATUS_BAR ']
self.assert_paint_ignoring_formatting(screen, (3, 4))
def test_cursor_stays_at_bottom_of_screen(self):
"""infobox showing up during intermediate render was causing this to fail, #371"""
self.repl.width = 50
self.repl.current_line = "__import__('random').__name__"
with output_to_repl(self.repl):
self.repl.on_enter(insert_into_history=False)
screen = [u">>> __import__('random').__name__",
u"'random'"]
self.assert_paint_ignoring_formatting(screen)
with output_to_repl(self.repl):
self.repl.process_event(self.refresh_requests.pop())
screen = [u">>> __import__('random').__name__",
u"'random'",
u""]
self.assert_paint_ignoring_formatting(screen)
with output_to_repl(self.repl):
self.repl.process_event(self.refresh_requests.pop())
screen = [u">>> __import__('random').__name__",
u"'random'",
u">>> "]
self.assert_paint_ignoring_formatting(screen, (2, 4))
def test_unhighlight_paren_bugs(self):
"""two previous bugs, paren did't highlight until next render
and paren didn't unhighlight until enter"""
self.assertEqual(self.repl.rl_history.entries, [''])
self.enter('(')
self.assertEqual(self.repl.rl_history.entries, [''])
screen = [u">>> (",
u"... "]
self.assertEqual(self.repl.rl_history.entries, [''])
self.assert_paint_ignoring_formatting(screen)
self.assertEqual(self.repl.rl_history.entries, [''])
with output_to_repl(self.repl):
self.assertEqual(self.repl.rl_history.entries, [''])
self.repl.process_event(')')
self.assertEqual(self.repl.rl_history.entries, [''])
screen = fsarray([cyan(u">>> ")+on_magenta(bold(red('('))),
green(u"... ")+on_magenta(bold(red(')')))])
self.assert_paint(screen, (1, 5))
with output_to_repl(self.repl):
self.repl.process_event(' ')
screen = fsarray([cyan(u">>> ")+yellow('('),
green(u"... ")+yellow(')')+bold(cyan(" "))])
self.assert_paint(screen, (1, 6))