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
|
from inspect import signature
from unittest.mock import MagicMock
import pytest
from prompt_toolkit.completion import Completion as PTKCompletion
from prompt_toolkit.document import Document
from xonsh.aliases import Aliases
from xonsh.completer import Completer
from xonsh.completers.tools import RichCompletion
from xonsh.ptk_shell.completer import PromptToolkitCompleter
@pytest.mark.parametrize(
"completion, lprefix, ptk_completion",
[
(RichCompletion("x", 0, "x()", "func"), 0, None),
(RichCompletion("x", 1, "xx", "instance"), 0, None),
(
RichCompletion("x", description="wow"),
5,
PTKCompletion(RichCompletion("x"), -5, "x", "wow"),
),
(RichCompletion("x"), 5, PTKCompletion(RichCompletion("x"), -5, "x")),
("x", 5, PTKCompletion("x", -5, "x")),
],
)
def test_rich_completion(completion, lprefix, ptk_completion, monkeypatch, xession):
xonsh_completer_mock = MagicMock()
xonsh_completer_mock.complete.return_value = {completion}, lprefix
ptk_completer = PromptToolkitCompleter(xonsh_completer_mock, None, None)
ptk_completer.reserve_space = lambda: None
ptk_completer.suggestion_completion = lambda _, __: None
document_mock = MagicMock()
document_mock.text = ""
document_mock.current_line = ""
document_mock.cursor_position_col = 0
monkeypatch.setattr(xession.commands_cache, "aliases", Aliases())
completions = list(ptk_completer.get_completions(document_mock, MagicMock()))
if isinstance(completion, RichCompletion) and not ptk_completion:
assert completions == [
PTKCompletion(
completion,
-completion.prefix_len,
completion.display,
completion.description,
)
]
else:
assert completions == [ptk_completion]
@pytest.mark.parametrize(
"completions, document_text, ptk_completion",
[
(set(), "", "test_completion"),
(set(), "test_", "test_completion"),
({RichCompletion("test", 4, "test()", "func")}, "test", "test_completion"),
],
)
def test_auto_suggest_completion(completions, document_text, ptk_completion, xession):
lprefix = len(document_text)
xonsh_completer_mock = MagicMock()
xonsh_completer_mock.complete.return_value = completions, lprefix
xession.env["AUTO_SUGGEST_IN_COMPLETIONS"] = True
ptk_completer = PromptToolkitCompleter(xonsh_completer_mock, None, None)
ptk_completer.reserve_space = lambda: None
ptk_completer.suggestion_completion = lambda _, __: ptk_completion
document_mock = MagicMock()
document_mock.text = document_text
document_mock.current_line = document_text
document_mock.cursor_position_col = lprefix
auto_suggested = list(ptk_completer.get_completions(document_mock, MagicMock()))
assert PTKCompletion(ptk_completion, -lprefix) in auto_suggested
EXPANSION_CASES = (
(
"sanity",
6,
dict(
prefix="sanity",
line="sanity",
begidx=0,
endidx=6,
multiline_text="sanity",
cursor_index=6,
),
),
(
"gb ",
3,
dict(
prefix="",
line="git branch ",
begidx=11,
endidx=11,
multiline_text="git branch ",
cursor_index=11,
),
),
(
"gb ",
1,
dict(
prefix="g",
line="gb ",
begidx=0,
endidx=1,
multiline_text="gb ",
cursor_index=1,
),
),
(
"gb",
0,
dict(
prefix="",
line="gb",
begidx=0,
endidx=0,
multiline_text="gb",
cursor_index=0,
),
),
(
" gb ",
0,
dict(
prefix="",
line=" gb ", # the PTK completer `lstrip`s the line
begidx=0,
endidx=0,
multiline_text=" gb ",
cursor_index=0,
),
),
(
"gb --",
5,
dict(
prefix="--",
line="git branch --",
begidx=11,
endidx=13,
multiline_text="git branch --",
cursor_index=13,
),
),
(
"nice\ngb --",
10,
dict(
prefix="--",
line="git branch --",
begidx=11,
endidx=13,
multiline_text="nice\ngit branch --",
cursor_index=18,
),
),
(
"nice\n gb --",
11,
dict(
prefix="--",
line=" git branch --",
begidx=12,
endidx=14,
multiline_text="nice\n git branch --",
cursor_index=19,
),
),
(
"gb -- wow",
5,
dict(
prefix="--",
line="git branch -- wow",
begidx=11,
endidx=13,
multiline_text="git branch -- wow",
cursor_index=13,
),
),
(
"gb --wow",
5,
dict(
prefix="--",
line="git branch --wow",
begidx=11,
endidx=13,
multiline_text="git branch --wow",
cursor_index=13,
),
),
)
@pytest.mark.parametrize("code, index, expected_args", EXPANSION_CASES)
def test_alias_expansion(code, index, expected_args, monkeypatch, xession):
xonsh_completer_mock = MagicMock(spec=Completer)
xonsh_completer_mock.complete.return_value = set(), 0
ptk_completer = PromptToolkitCompleter(xonsh_completer_mock, None, None)
ptk_completer.reserve_space = lambda: None
ptk_completer.suggestion_completion = lambda _, __: None
monkeypatch.setattr(xession.commands_cache, "aliases", Aliases(gb=["git branch"]))
list(ptk_completer.get_completions(Document(code, index), MagicMock()))
mock_call = xonsh_completer_mock.complete.call_args
args, kwargs = mock_call
expected_args["self"] = None
expected_args["ctx"] = None
assert (
signature(Completer.complete).bind(None, *args, **kwargs).arguments
== expected_args
)
|