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
|
# coding=utf-8
# flake8: noqa E302
"""
Unit/functional testing for argparse completer in cmd2
"""
import argparse
from typing import List
import pytest
import cmd2
from cmd2 import with_argparser
from cmd2.argparse_completer import is_potential_flag
from cmd2.argparse_custom import Cmd2ArgParser
from cmd2.utils import StdSim, basic_complete
from .conftest import run_cmd, complete_tester
# Lists used in our tests
static_choices_list = ['static', 'choices', 'stop', 'here']
choices_from_function = ['choices', 'function', 'chatty', 'smith']
choices_from_method = ['choices', 'method', 'most', 'improved']
completions_from_function = ['completions', 'function', 'fairly', 'complete']
completions_from_method = ['completions', 'method', 'missed', 'spot']
def choices_function() -> List[str]:
"""Function that provides choices"""
return choices_from_function
def completer_function(text: str, line: str, begidx: int, endidx: int) -> List[str]:
"""Tab completion function"""
return basic_complete(text, line, begidx, endidx, completions_from_function)
# noinspection PyMethodMayBeStatic
class AutoCompleteTester(cmd2.Cmd):
"""Cmd2 app that exercises AutoCompleter class"""
def __init__(self):
super().__init__()
############################################################################################################
# Begin code related to testing choices, choices_function, and choices_method parameters
############################################################################################################
def choices_method(self) -> List[str]:
"""Method that provides choices"""
return choices_from_method
choices_parser = Cmd2ArgParser()
# Flag args for choices command
choices_parser.add_argument("-l", "--list", help="a flag populated with a choices list",
choices=static_choices_list)
choices_parser.add_argument("-f", "--function", help="a flag populated with a choices function",
choices_function=choices_function)
choices_parser.add_argument("-m", "--method", help="a flag populated with a choices method",
choices_method=choices_method)
# Positional args for choices command
choices_parser.add_argument("list_pos", help="a positional populated with a choices list",
choices=static_choices_list)
choices_parser.add_argument("function_pos", help="a positional populated with a choices function",
choices_function=choices_function)
choices_parser.add_argument("method_pos", help="a positional populated with a choices method",
choices_method=choices_method)
@with_argparser(choices_parser)
def do_choices(self, args: argparse.Namespace) -> None:
pass
############################################################################################################
# Begin code related to testing completer_function and completer_method parameters
############################################################################################################
def completer_method(self, text: str, line: str, begidx: int, endidx: int) -> List[str]:
"""Tab completion method"""
return basic_complete(text, line, begidx, endidx, completions_from_method)
completer_parser = Cmd2ArgParser()
# Flag args for completer command
completer_parser.add_argument("-f", "--function", help="a flag using a completer function",
completer_function=completer_function)
completer_parser.add_argument("-m", "--method", help="a flag using a completer method",
completer_method=completer_method)
# Positional args for completer command
completer_parser.add_argument("function_pos", help="a positional using a completer function",
completer_function=completer_function)
completer_parser.add_argument("method_pos", help="a positional using a completer method",
completer_method=completer_method)
@with_argparser(completer_parser)
def do_completer(self, args: argparse.Namespace) -> None:
pass
@pytest.fixture
def ac_app():
app = AutoCompleteTester()
app.stdout = StdSim(app.stdout)
return app
def test_help(ac_app):
out1, err1 = run_cmd(ac_app, 'alias -h')
out2, err2 = run_cmd(ac_app, 'help alias')
assert out1 == out2
def test_help_subcommand(ac_app):
out1, err1 = run_cmd(ac_app, 'alias create -h')
out2, err2 = run_cmd(ac_app, 'help alias create')
assert out1 == out2
def test_complete_help(ac_app):
text = 'al'
line = 'help {}'.format(text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == ['alias ']
def test_complete_help_subcommand(ac_app):
text = 'cre'
line = 'help alias {}'.format(text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == ['create ']
@pytest.mark.parametrize('num_aliases, show_description', [
# The number of completion results determines if the description field of CompletionItems gets displayed
# in the tab completions. The count must be greater than 1 and less than ac_app.max_completion_items,
# which defaults to 50.
(1, False),
(5, True),
(100, False),
])
def test_completion_items(ac_app, num_aliases, show_description):
# Create aliases
for i in range(0, num_aliases):
run_cmd(ac_app, 'alias create fake{} help'.format(i))
assert len(ac_app.aliases) == num_aliases
text = 'fake'
line = 'alias list {}'.format(text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None
assert len(ac_app.completion_matches) == num_aliases
assert len(ac_app.display_matches) == num_aliases
# If show_description is True, the alias's value will be in the display text
assert ('help' in ac_app.display_matches[0]) == show_description
@pytest.mark.parametrize('text, completions', [
('-', ['--function', '--help', '--list', '--method', '-f', '-h', '-l', '-m']),
('--', ['--function', '--help', '--list', '--method']),
('-f', ['-f ']),
('--f', ['--function ']),
])
def test_autcomp_flag_completion(ac_app, text, completions):
line = 'choices {}'.format(text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == completions
@pytest.mark.parametrize('flag, text, completions', [
('-l', '', static_choices_list),
('--list', 's', ['static', 'stop']),
('-f', '', choices_from_function),
('--function', 'ch', ['choices', 'chatty']),
('-m', '', choices_from_method),
('--method', 'm', ['method', 'most']),
])
def test_autocomp_flag_choices_completion(ac_app, flag, text, completions):
line = 'choices {} {}'.format(flag, text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == sorted(completions, key=ac_app.matches_sort_key)
@pytest.mark.parametrize('pos, text, completions', [
(1, '', static_choices_list),
(1, 's', ['static', 'stop']),
(2, '', choices_from_function),
(2, 'ch', ['choices', 'chatty']),
(3, '', choices_from_method),
(3, 'm', ['method', 'most']),
])
def test_autocomp_positional_choices_completion(ac_app, pos, text, completions):
# Generate line were preceding positionals are already filled
line = 'choices {} {}'.format('foo ' * (pos - 1), text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == sorted(completions, key=ac_app.matches_sort_key)
@pytest.mark.parametrize('flag, text, completions', [
('-f', '', completions_from_function),
('--function', 'f', ['function', 'fairly']),
('-m', '', completions_from_method),
('--method', 'm', ['method', 'missed']),
])
def test_autocomp_flag_completers(ac_app, flag, text, completions):
line = 'completer {} {}'.format(flag, text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == sorted(completions, key=ac_app.matches_sort_key)
@pytest.mark.parametrize('pos, text, completions', [
(1, '', completions_from_function),
(1, 'c', ['completions', 'complete']),
(2, '', completions_from_method),
(2, 'm', ['method', 'missed']),
])
def test_autocomp_positional_completers(ac_app, pos, text, completions):
# Generate line were preceding positionals are already filled
line = 'completer {} {}'.format('foo ' * (pos - 1), text)
endidx = len(line)
begidx = endidx - len(text)
first_match = complete_tester(text, line, begidx, endidx, ac_app)
assert first_match is not None and ac_app.completion_matches == sorted(completions, key=ac_app.matches_sort_key)
# def test_autcomp_hint_in_narg_range(cmd2_app, capsys):
# text = ''
# line = 'suggest -d 2 {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# out, err = capsys.readouterr()
#
# assert out == '''
# Hint:
# -d, --duration DURATION Duration constraint in minutes.
# single value - maximum duration
# [a, b] - duration range
#
# '''
#
# def test_autocomp_flags_narg_max(cmd2_app):
# text = ''
# line = 'suggest d 2 3 {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is None
#
#
# def test_autcomp_narg_beyond_max(cmd2_app):
# out, err = run_cmd(cmd2_app, 'suggest -t movie -d 3 4 5')
# assert 'Error: unrecognized arguments: 5' in err[1]
#
#
# def test_autocomp_subcmd_flag_comp_func_attr(cmd2_app):
# text = 'A'
# line = 'video movies list -a "{}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is not None and \
# cmd2_app.completion_matches == ['Adam Driver', 'Alec Guinness', 'Andy Serkis', 'Anthony Daniels']
#
#
# def test_autocomp_subcmd_flag_comp_list_attr(cmd2_app):
# text = 'G'
# line = 'video movies list -d {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is not None and first_match == '"Gareth Edwards'
#
#
# def test_autocomp_pos_consumed(cmd2_app):
# text = ''
# line = 'library movie add SW_EP01 {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is None
#
#
# def test_autocomp_pos_after_flag(cmd2_app):
# text = 'Joh'
# line = 'video movies add -d "George Lucas" -- "Han Solo" PG "Emilia Clarke" "{}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is not None and \
# cmd2_app.completion_matches == ['John Boyega" ']
#
#
# def test_autocomp_custom_func_dict_arg(cmd2_app):
# text = '/home/user/'
# line = 'video movies load {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is not None and \
# cmd2_app.completion_matches == ['/home/user/another.db', '/home/user/file space.db', '/home/user/file.db']
#
#
# def test_argparse_remainder_flag_completion(cmd2_app):
# import cmd2
# import argparse
#
# # Test flag completion as first arg of positional with nargs=argparse.REMAINDER
# text = '--h'
# line = 'help command {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# # --h should not complete into --help because we are in the argparse.REMAINDER section
# assert complete_tester(text, line, begidx, endidx, cmd2_app) is None
#
# # Test flag completion within an already started positional with nargs=argparse.REMAINDER
# text = '--h'
# line = 'help command subcommand {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# # --h should not complete into --help because we are in the argparse.REMAINDER section
# assert complete_tester(text, line, begidx, endidx, cmd2_app) is None
#
# # Test a flag with nargs=argparse.REMAINDER
# parser = argparse.ArgumentParser()
# parser.add_argument('-f', nargs=argparse.REMAINDER)
#
# # Overwrite eof's parser for this test
# cmd2.Cmd.do_eof.argparser = parser
#
# text = '--h'
# line = 'eof -f {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# # --h should not complete into --help because we are in the argparse.REMAINDER section
# assert complete_tester(text, line, begidx, endidx, cmd2_app) is None
#
#
# def test_completion_after_double_dash(cmd2_app):
# """
# Test completion after --, which argparse says (all args after -- are non-options)
# All of these tests occur outside of an argparse.REMAINDER section since those tests
# are handled in test_argparse_remainder_flag_completion
# """
#
# # Test -- as the last token
# text = '--'
# line = 'help {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# # Since -- is the last token, then it should show flag choices
# first_match = complete_tester(text, line, begidx, endidx, cmd2_app)
# assert first_match is not None and '--help' in cmd2_app.completion_matches
#
# # Test -- to end all flag completion
# text = '--'
# line = 'help -- {}'.format(text)
# endidx = len(line)
# begidx = endidx - len(text)
#
# # Since -- appeared before the -- being completed, nothing should be completed
# assert complete_tester(text, line, begidx, endidx, cmd2_app) is None
def test_is_potential_flag():
parser = Cmd2ArgParser()
# Not valid flags
assert not is_potential_flag('', parser)
assert not is_potential_flag('non-flag', parser)
assert not is_potential_flag('-', parser)
assert not is_potential_flag('--has space', parser)
assert not is_potential_flag('-2', parser)
# Valid flags
assert is_potential_flag('-flag', parser)
assert is_potential_flag('--flag', parser)
|