forked from prompt-toolkit/python-prompt-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_shortcuts.py
More file actions
49 lines (44 loc) · 1.65 KB
/
test_shortcuts.py
File metadata and controls
49 lines (44 loc) · 1.65 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
from prompt_toolkit.shortcuts.prompt import _split_multiline_prompt
def test_split_multiline_prompt():
# Test 1: no newlines:
tokens = [('class:testclass', 'ab')]
has_before_tokens, before, first_input_line = _split_multiline_prompt(lambda: tokens)
assert has_before_tokens() is False
assert before() == []
assert first_input_line() == [
('class:testclass', 'a'),
('class:testclass', 'b'),
]
# Test 1: multiple lines.
tokens = [('class:testclass', 'ab\ncd\nef')]
has_before_tokens, before, first_input_line = _split_multiline_prompt(lambda: tokens)
assert has_before_tokens() is True
assert before() == [
('class:testclass', 'a'),
('class:testclass', 'b'),
('class:testclass', '\n'),
('class:testclass', 'c'),
('class:testclass', 'd'),
]
assert first_input_line() == [
('class:testclass', 'e'),
('class:testclass', 'f'),
]
# Edge case 1: starting with a newline.
tokens = [('class:testclass', '\nab')]
has_before_tokens, before, first_input_line = _split_multiline_prompt(lambda: tokens)
assert has_before_tokens() is True
assert before() == []
assert first_input_line() == [
('class:testclass', 'a'),
('class:testclass', 'b')
]
# Edge case 2: starting with two newlines.
tokens = [('class:testclass', '\n\nab')]
has_before_tokens, before, first_input_line = _split_multiline_prompt(lambda: tokens)
assert has_before_tokens() is True
assert before() == [('class:testclass', '\n')]
assert first_input_line() == [
('class:testclass', 'a'),
('class:testclass', 'b')
]