Esempio n. 1
0
 def per_task_partial_or_invalid_flags_print_all_flags(self):
     for flag in ('--arg1', '--otherarg'):
         for given in ('--ar', '--nope'):
             assert_contains(
                 _complete('multiple_args {0}'.format(given), 'foo'),
                 flag
             )
Esempio n. 2
0
 def bare_double_dash_shows_only_long_core_options(self):
     output = _complete('--')
     assert_contains(output, '--no-dedupe')
     assert_not_contains(output, '-V')
Esempio n. 3
0
 def top_level_with_dash_means_core_options(self):
     output = _complete('-')
     # No point mirroring all core options, just spot check a few
     for flag in ('--no-dedupe', '-d', '--debug', '-V', '--version'):
         assert_contains(output, "{0}\n".format(flag))
Esempio n. 4
0
 def task_name_completion_includes_aliases(self):
     for name in ('z\n', 'toplevel'):
         assert_contains(_complete('', 'alias_sorting'), name)
Esempio n. 5
0
 def core_partial_or_invalid_flags_print_all_flags(self):
     for flag in ('--echo', '--complete'):
         for given in ('--e', '--nope'):
             assert_contains(_complete(given), flag)
Esempio n. 6
0
 def core_bool_flags_have_task_name_completion(self):
     assert_contains(_complete('--echo', 'foo'), 'mytask')
Esempio n. 7
0
 def flag_completion_includes_inverse_booleans(self):
     output = _complete('basic_bool -', 'foo')
     assert_contains(output, '--no-mybool')
Esempio n. 8
0
 def per_task_flags_complete_with_single_dashes(self):
     for flag in ('--name', '-n'):
         assert_contains(_complete('print_name -', 'integration'), flag)
Esempio n. 9
0
 def tasks_with_positional_args_complete_with_flags(self):
     # Because otherwise completing them is invalid anyways.
     # NOTE: this currently duplicates another test because this test cares
     # about a specific detail.
     output = _complete('print_name --', 'integration')
     assert_contains(output, '--name')
Esempio n. 10
0
 def per_task_flags_complete_with_double_dashes(self):
     output = _complete('print_name --', 'integration')
     assert_contains(output, '--name')
     assert_not_contains(output, '-n\n') # newline because -n is in --name
Esempio n. 11
0
 def per_task_flags_complete_with_single_dashes(self):
     for flag in ('--name', '-n'):
         assert_contains(_complete('print_name -', 'integration'), flag)
Esempio n. 12
0
 def task_name_completion_includes_tasks_already_seen(self):
     # Because it's valid to call the same task >1 time.
     assert_contains(_complete('print_foo', 'integration'), 'print_foo')
Esempio n. 13
0
 def task_names_only_complete_other_task_names(self):
     # Because only tokens starting with a dash should result in options.
     assert_contains(_complete('print_foo', 'integration'), 'print_name')
Esempio n. 14
0
 def bare_double_dash_shows_only_long_core_options(self):
     output = _complete('--')
     assert_contains(output, '--no-dedupe')
     assert_not_contains(output, '-V')
Esempio n. 15
0
 def top_level_with_dash_means_core_options(self):
     output = _complete('-')
     # No point mirroring all core options, just spot check a few
     for flag in ('--no-dedupe', '-d', '--debug', '-V', '--version'):
         assert_contains(output, "{0}\n".format(flag))
Esempio n. 16
0
 def task_names_only_complete_other_task_names(self):
     # Because only tokens starting with a dash should result in options.
     assert_contains(_complete('print_foo', 'integration'), 'print_name')
Esempio n. 17
0
 def task_name_completion_includes_tasks_already_seen(self):
     # Because it's valid to call the same task >1 time.
     assert_contains(_complete('print_foo', 'integration'), 'print_foo')
Esempio n. 18
0
 def core_bool_flags_have_task_name_completion(self):
     assert_contains(_complete('--echo', 'foo'), 'mytask')
Esempio n. 19
0
 def per_task_flags_complete_with_double_dashes(self):
     output = _complete('print_name --', 'integration')
     assert_contains(output, '--name')
     assert_not_contains(output, '-n\n')  # newline because -n is in --name
Esempio n. 20
0
 def per_task_bool_flags_have_task_name_completion(self):
     assert_contains(_complete('basic_bool --mybool', 'foo'), 'mytask')
Esempio n. 21
0
 def tasks_with_positional_args_complete_with_flags(self):
     # Because otherwise completing them is invalid anyways.
     # NOTE: this currently duplicates another test because this test cares
     # about a specific detail.
     output = _complete('print_name --', 'integration')
     assert_contains(output, '--name')
Esempio n. 22
0
 def core_partial_or_invalid_flags_print_all_flags(self):
     for flag in ('--echo', '--complete'):
         for given in ('--e', '--nope'):
             assert_contains(_complete(given), flag)
Esempio n. 23
0
 def per_task_bool_flags_have_task_name_completion(self):
     assert_contains(_complete('basic_bool --mybool', 'foo'), 'mytask')
Esempio n. 24
0
 def task_name_completion_includes_aliases(self):
     for name in ('z\n', 'toplevel'):
         assert_contains(_complete('', 'alias_sorting'), name)
Esempio n. 25
0
 def per_task_partial_or_invalid_flags_print_all_flags(self):
     for flag in ('--arg1', '--otherarg'):
         for given in ('--ar', '--nope'):
             assert_contains(
                 _complete('multiple_args {0}'.format(given), 'foo'), flag)
Esempio n. 26
0
 def flag_completion_includes_inverse_booleans(self):
     output = _complete('basic_bool -', 'foo')
     assert_contains(output, '--no-mybool')