-
Notifications
You must be signed in to change notification settings - Fork 73
/
cats_autocomplete
1587 lines (1507 loc) · 50.4 KB
/
cats_autocomplete
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env bash
#
# cats Bash Completion
# =======================
#
# Bash completion support for the `cats` command,
# generated by [picocli](https://picocli.info/) version 4.7.6.
#
# Installation
# ------------
#
# 1. Source all completion scripts in your .bash_profile
#
# cd $YOUR_APP_HOME/bin
# for f in $(find . -name "*_completion"); do line=". $(pwd)/$f"; grep "$line" ~/.bash_profile || echo "$line" >> ~/.bash_profile; done
#
# 2. Open a new bash console, and type `cats [TAB][TAB]`
#
# 1a. Alternatively, if you have [bash-completion](https://github.com/scop/bash-completion) installed:
# Place this file in a `bash-completion.d` folder:
#
# * /etc/bash-completion.d
# * /usr/local/etc/bash-completion.d
# * ~/bash-completion.d
#
# Documentation
# -------------
# The script is called by bash whenever [TAB] or [TAB][TAB] is pressed after
# 'cats (..)'. By reading entered command line parameters,
# it determines possible bash completions and writes them to the COMPREPLY variable.
# Bash then completes the user input if only one entry is listed in the variable or
# shows the options if more than one is listed in COMPREPLY.
#
# References
# ----------
# [1] http://stackoverflow.com/a/12495480/1440785
# [2] http://tiswww.case.edu/php/chet/bash/FAQ
# [3] https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html
# [4] http://zsh.sourceforge.net/Doc/Release/Options.html#index-COMPLETE_005fALIASES
# [5] https://stackoverflow.com/questions/17042057/bash-check-element-in-array-for-elements-in-another-array/17042655#17042655
# [6] https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion.html#Programmable-Completion
# [7] https://stackoverflow.com/questions/3249432/can-a-bash-tab-completion-script-be-used-in-zsh/27853970#27853970
#
if [ -n "$BASH_VERSION" ]; then
# Enable programmable completion facilities when using bash (see [3])
shopt -s progcomp
elif [ -n "$ZSH_VERSION" ]; then
# Make alias a distinct command for completion purposes when using zsh (see [4])
setopt COMPLETE_ALIASES
alias compopt=complete
# Enable bash completion in zsh (see [7])
# Only initialize completions module once to avoid unregistering existing completions.
if ! type compdef > /dev/null; then
autoload -U +X compinit && compinit
fi
autoload -U +X bashcompinit && bashcompinit
fi
# CompWordsContainsArray takes an array and then checks
# if all elements of this array are in the global COMP_WORDS array.
#
# Returns zero (no error) if all elements of the array are in the COMP_WORDS array,
# otherwise returns 1 (error).
function CompWordsContainsArray() {
declare -a localArray
localArray=("$@")
local findme
for findme in "${localArray[@]}"; do
if ElementNotInCompWords "$findme"; then return 1; fi
done
return 0
}
function ElementNotInCompWords() {
local findme="$1"
local element
for element in "${COMP_WORDS[@]}"; do
if [[ "$findme" = "$element" ]]; then return 1; fi
done
return 0
}
# The `currentPositionalIndex` function calculates the index of the current positional parameter.
#
# currentPositionalIndex takes three parameters:
# the command name,
# a space-separated string with the names of options that take a parameter, and
# a space-separated string with the names of boolean options (that don't take any params).
# When done, this function echos the current positional index to std_out.
#
# Example usage:
# local currIndex=$(currentPositionalIndex "mysubcommand" "$ARG_OPTS" "$FLAG_OPTS")
function currentPositionalIndex() {
local commandName="$1"
local optionsWithArgs="$2"
local booleanOptions="$3"
local previousWord
local result=0
for i in $(seq $((COMP_CWORD - 1)) -1 0); do
previousWord=${COMP_WORDS[i]}
if [ "${previousWord}" = "$commandName" ]; then
break
fi
if [[ "${optionsWithArgs}" =~ ${previousWord} ]]; then
((result-=2)) # Arg option and its value not counted as positional param
elif [[ "${booleanOptions}" =~ ${previousWord} ]]; then
((result-=1)) # Flag option itself not counted as positional param
fi
((result++))
done
echo "$result"
}
# compReplyArray generates a list of completion suggestions based on an array, ensuring all values are properly escaped.
#
# compReplyArray takes a single parameter: the array of options to be displayed
#
# The output is echoed to std_out, one option per line.
#
# Example usage:
# local options=("foo", "bar", "baz")
# local IFS=$'\n'
# COMPREPLY=($(compReplyArray "${options[@]}"))
function compReplyArray() {
declare -a options
options=("$@")
local curr_word=${COMP_WORDS[COMP_CWORD]}
local i
local quoted
local optionList=()
for (( i=0; i<${#options[@]}; i++ )); do
# Double escape, since we want escaped values, but compgen -W expands the argument
printf -v quoted %q "${options[i]}"
quoted=\'${quoted//\'/\'\\\'\'}\'
optionList[i]=$quoted
done
# We also have to add another round of escaping to $curr_word.
curr_word=${curr_word//\\/\\\\}
curr_word=${curr_word//\'/\\\'}
# Actually generate completions.
local IFS=$'\n'
echo -e "$(compgen -W "${optionList[*]}" -- "$curr_word")"
}
# Bash completion entry point function.
# _complete_cats finds which commands and subcommands have been specified
# on the command line and delegates to the appropriate function
# to generate possible options and subcommands for the last specified subcommand.
function _complete_cats() {
# Edge case: if command line has no space after subcommand, then don't assume this subcommand is selected (remkop/picocli#1468).
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} generate-completion" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} help" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} list" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} replay" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} run" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} template" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} fuzz" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} lint" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} info" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} stats" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} validate" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} random" ]; then _picocli_cats; return $?; fi
if [ "${COMP_LINE}" = "${COMP_WORDS[0]} generate" ]; then _picocli_cats; return $?; fi
# Find the longest sequence of subcommands and call the bash function for that subcommand.
local cmds0=(generate-completion)
local cmds1=(help)
local cmds2=(list)
local cmds3=(replay)
local cmds4=(run)
local cmds5=(template)
local cmds6=(fuzz)
local cmds7=(lint)
local cmds8=(info)
local cmds9=(stats)
local cmds10=(validate)
local cmds11=(random)
local cmds12=(generate)
if CompWordsContainsArray "${cmds12[@]}"; then _picocli_cats_generate; return $?; fi
if CompWordsContainsArray "${cmds11[@]}"; then _picocli_cats_random; return $?; fi
if CompWordsContainsArray "${cmds10[@]}"; then _picocli_cats_validate; return $?; fi
if CompWordsContainsArray "${cmds9[@]}"; then _picocli_cats_stats; return $?; fi
if CompWordsContainsArray "${cmds8[@]}"; then _picocli_cats_info; return $?; fi
if CompWordsContainsArray "${cmds7[@]}"; then _picocli_cats_lint; return $?; fi
if CompWordsContainsArray "${cmds6[@]}"; then _picocli_cats_fuzz; return $?; fi
if CompWordsContainsArray "${cmds5[@]}"; then _picocli_cats_template; return $?; fi
if CompWordsContainsArray "${cmds4[@]}"; then _picocli_cats_run; return $?; fi
if CompWordsContainsArray "${cmds3[@]}"; then _picocli_cats_replay; return $?; fi
if CompWordsContainsArray "${cmds2[@]}"; then _picocli_cats_list; return $?; fi
if CompWordsContainsArray "${cmds1[@]}"; then _picocli_cats_help; return $?; fi
if CompWordsContainsArray "${cmds0[@]}"; then _picocli_cats_generatecompletion; return $?; fi
# No subcommands were specified; generate completions for the top-level command.
_picocli_cats; return $?;
}
# Generates completions for the options and subcommands of the `cats` command.
function _picocli_cats() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands="generate-completion help list replay run template fuzz lint info stats validate random generate"
local flag_opts="-A --checkHeaders -F --checkFields -T --checkHttp -C --checkContract --includeContract --includeLinters -W --includeWhitespaces -E --includeEmojis -U --includeControlChars --createRefData -d --dryRun --skipDeprecatedOperations --ignoreResponseCodeUndocumentedCheck --iu --ignoreResponseBodyCheck --ib --ignoreResponseContentTypeCheck --it -k --skipReportingForIgnoredCodes --skipReportingForIgnored --sri --srs --skipReportingForSuccess --srw --skipReportingForWarning -b --blackbox --useExamples --useRequestBodyExamples --useResponseBodyExamples --useSchemaExamples --usePropertyExamples --cachePayloads --rfc7396 --allowInvalidEnumValues --useDefaults -D --debug --printExecutionStatistics --printDetailedExecutionStatistics --timestampReports -j --json --checkUpdate --color --printProgress --nameReplace --simpleReplace --matchInput --mi -h --help -V --version"
local arg_opts="--maxRequestsPerMinute --connectionTimeout --writeTimeout --readTimeout --userAgent -c --contract -s --server --sslKeystore --sslKeystorePwd --sslKeyPwd --basicAuth --basicauth --proxyHost --proxyPort --authRefreshScript --ars --authRefreshInterval --ari --fuzzersConfig --urlParams -P --headers -H --queryParams --pathsRunOrder -Q --refData -R --functionalFuzzerFile --securityFuzzerFile --mutators -m -f --fuzzers --fuzzer -p --paths --path --skipPaths --skipPath --skipFuzzers --skipFuzzer --httpMethods --httpMethod -X --skipHttpMethods --skipHttpMethod --fieldTypes --fieldType --skipFieldTypes --skipFieldType --fieldFormats --fieldFormat --skipFieldFormats --skipFieldFormat --skipFields --skipField --skipHeaders --skipHeader -t --tags --tag --skipTags --skipTag -i --ignoreResponseCodes --ic --ignoreResponseSize --is --ignoreResponseWords --iw --ignoreResponseLines --il --ignoreResponseRegex --ir --filterResponseCodes --fc --filterResponseSize --fs --filterResponseWords --fw --filterResponseLines --fl --filterResponseRegex --fr --fieldsFuzzingStrategy --maxFieldsToRemove --edgeSpacesStrategy --sanitizationStrategy --largeStringsSize --randomHeadersNumber --selfReferenceDepth -L --contentType --oneOfSelection --anyOfSelection --limitXxxOfCombinations --limitFuzzedFields -l --log -g --skipLog -O --onlyLog --reportFormat -o --output --maxResponseTimeInMs --verbosity --maskHeaders --words -w --matchResponseCodes --mc --matchResponseSize --ms --matchResponseWords --mw --matchResponseLines --ml --matchResponseRegex --mr"
local httpMethods_option_args=("POST" "PUT" "GET" "TRACE" "DELETE" "PATCH" "HEAD" "CONNECT" "COPY" "MOVE" "PROPPATCH" "PROPFIND" "MKCOL" "LOCK" "UNLOCK" "SEARCH" "BIND" "UNBIND" "REBIND" "MKREDIRECTREF" "UPDATEREDIRECTREF" "ORDERPATCH" "ACL" "REPORT" "DIFF" "VERIFY" "PUBLISH" "UNPUBLISH" "BATCH" "VIEW" "PURGE" "DEBUG" "SUBSCRIBE" "UNSUBSCRIBE" "MERGE" "INDEX") # --httpMethods values
local skippedHttpMethods_option_args=("POST" "PUT" "GET" "TRACE" "DELETE" "PATCH" "HEAD" "CONNECT" "COPY" "MOVE" "PROPPATCH" "PROPFIND" "MKCOL" "LOCK" "UNLOCK" "SEARCH" "BIND" "UNBIND" "REBIND" "MKREDIRECTREF" "UPDATEREDIRECTREF" "ORDERPATCH" "ACL" "REPORT" "DIFF" "VERIFY" "PUBLISH" "UNPUBLISH" "BATCH" "VIEW" "PURGE" "DEBUG" "SUBSCRIBE" "UNSUBSCRIBE" "MERGE" "INDEX") # --skipHttpMethods values
local fieldTypes_option_args=("STRING" "NUMBER" "INTEGER" "BOOLEAN") # --fieldTypes values
local skipFieldTypes_option_args=("STRING" "NUMBER" "INTEGER" "BOOLEAN") # --skipFieldTypes values
local fieldFormats_option_args=("FLOAT" "DOUBLE" "INT32" "INT64" "DATE" "DATE_TIME" "PASSWORD" "BYTE" "BINARY" "EMAIL" "UUID" "URI" "URL" "HOSTNAME" "IPV4" "IPV6") # --fieldFormats values
local skipFieldFormats_option_args=("FLOAT" "DOUBLE" "INT32" "INT64" "DATE" "DATE_TIME" "PASSWORD" "BYTE" "BINARY" "EMAIL" "UUID" "URI" "URL" "HOSTNAME" "IPV4" "IPV6") # --skipFieldFormats values
local fieldsFuzzingStrategy_option_args=("POWERSET" "SIZE" "ONEBYONE") # --fieldsFuzzingStrategy values
local edgeSpacesStrategy_option_args=("VALIDATE_AND_TRIM" "TRIM_AND_VALIDATE") # --edgeSpacesStrategy values
local sanitizationStrategy_option_args=("VALIDATE_AND_SANITIZE" "SANITIZE_AND_VALIDATE") # --sanitizationStrategy values
local reportFormat_option_args=("HTML_ONLY" "HTML_JS" "JUNIT") # --reportFormat values
local verbosity_option_args=("SUMMARY" "DETAILED") # --verbosity values
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--maxRequestsPerMinute)
return
;;
--connectionTimeout)
return
;;
--writeTimeout)
return
;;
--readTimeout)
return
;;
--userAgent)
return
;;
-c|--contract)
return
;;
-s|--server)
return
;;
--sslKeystore)
return
;;
--sslKeystorePwd)
return
;;
--sslKeyPwd)
return
;;
--basicAuth|--basicauth)
return
;;
--proxyHost)
return
;;
--proxyPort)
return
;;
--authRefreshScript|--ars)
return
;;
--authRefreshInterval|--ari)
return
;;
--fuzzersConfig)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--urlParams)
return
;;
-P)
return
;;
--headers)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
-H)
return
;;
--queryParams)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--pathsRunOrder)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
-Q)
return
;;
--refData)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
-R)
return
;;
--functionalFuzzerFile)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--securityFuzzerFile)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--mutators|-m)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
-f|--fuzzers|--fuzzer)
return
;;
-p|--paths|--path)
return
;;
--skipPaths|--skipPath)
return
;;
--skipFuzzers|--skipFuzzer)
return
;;
--httpMethods|--httpMethod|-X)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${httpMethods_option_args[@]}" ) )
return $?
;;
--skipHttpMethods|--skipHttpMethod)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${skippedHttpMethods_option_args[@]}" ) )
return $?
;;
--fieldTypes|--fieldType)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${fieldTypes_option_args[@]}" ) )
return $?
;;
--skipFieldTypes|--skipFieldType)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${skipFieldTypes_option_args[@]}" ) )
return $?
;;
--fieldFormats|--fieldFormat)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${fieldFormats_option_args[@]}" ) )
return $?
;;
--skipFieldFormats|--skipFieldFormat)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${skipFieldFormats_option_args[@]}" ) )
return $?
;;
--skipFields|--skipField)
return
;;
--skipHeaders|--skipHeader)
return
;;
-t|--tags|--tag)
return
;;
--skipTags|--skipTag)
return
;;
-i|--ignoreResponseCodes|--ic)
return
;;
--ignoreResponseSize|--is)
return
;;
--ignoreResponseWords|--iw)
return
;;
--ignoreResponseLines|--il)
return
;;
--ignoreResponseRegex|--ir)
return
;;
--filterResponseCodes|--fc)
return
;;
--filterResponseSize|--fs)
return
;;
--filterResponseWords|--fw)
return
;;
--filterResponseLines|--fl)
return
;;
--filterResponseRegex|--fr)
return
;;
--fieldsFuzzingStrategy)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${fieldsFuzzingStrategy_option_args[@]}" ) )
return $?
;;
--maxFieldsToRemove)
return
;;
--edgeSpacesStrategy)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${edgeSpacesStrategy_option_args[@]}" ) )
return $?
;;
--sanitizationStrategy)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${sanitizationStrategy_option_args[@]}" ) )
return $?
;;
--largeStringsSize)
return
;;
--randomHeadersNumber)
return
;;
--selfReferenceDepth|-L)
return
;;
--contentType)
return
;;
--oneOfSelection|--anyOfSelection)
return
;;
--limitXxxOfCombinations)
return
;;
--limitFuzzedFields)
return
;;
-l|--log)
return
;;
-g|--skipLog)
return
;;
-O|--onlyLog)
return
;;
--reportFormat)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${reportFormat_option_args[@]}" ) )
return $?
;;
-o|--output)
return
;;
--maxResponseTimeInMs)
return
;;
--verbosity)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${verbosity_option_args[@]}" ) )
return $?
;;
--maskHeaders)
return
;;
--words|-w)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--matchResponseCodes|--mc)
return
;;
--matchResponseSize|--ms)
return
;;
--matchResponseWords|--mw)
return
;;
--matchResponseLines|--ml)
return
;;
--matchResponseRegex|--mr)
return
;;
esac
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `generate-completion` subcommand.
function _picocli_cats_generatecompletion() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local commands=""
local flag_opts="-h --help -V --version"
local arg_opts=""
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_cats_help() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local commands="generate-completion list replay run template lint info stats validate random generate"
local flag_opts="-h --help"
local arg_opts=""
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `list` subcommand.
function _picocli_cats_list() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands=""
local flag_opts="-p --paths paths -f --fuzzers fuzzers -m --mutators mutators --cmt --customMutatorTypes -s --fieldsFuzzerStrategies fieldsFuzzerStrategies --formats formats -j --json -h --help -V --version"
local arg_opts="--path --tag -c --contract"
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--path)
return
;;
--tag)
return
;;
-c|--contract)
return
;;
esac
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `replay` subcommand.
function _picocli_cats_replay() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands=""
local flag_opts="-D --debug -h --help -V --version"
local arg_opts="--sslKeystore --sslKeystorePwd --sslKeyPwd --basicAuth --basicauth --proxyHost --proxyPort --authRefreshScript --ars --authRefreshInterval --ari -H -s --server -o --output"
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--sslKeystore)
return
;;
--sslKeystorePwd)
return
;;
--sslKeyPwd)
return
;;
--basicAuth|--basicauth)
return
;;
--proxyHost)
return
;;
--proxyPort)
return
;;
--authRefreshScript|--ars)
return
;;
--authRefreshInterval|--ari)
return
;;
-H)
return
;;
-s|--server)
return
;;
-o|--output)
return
;;
esac
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `run` subcommand.
function _picocli_cats_run() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands=""
local flag_opts="-D --debug --printExecutionStatistics --printDetailedExecutionStatistics --timestampReports -j --json --checkUpdate --color --printProgress --createRefData --ignoreResponseCodeUndocumentedCheck --iu --ignoreResponseBodyCheck --ib --ignoreResponseContentTypeCheck --it -k --skipReportingForIgnoredCodes --skipReportingForIgnored --sri --srs --skipReportingForSuccess --srw --skipReportingForWarning -b --blackbox -h --help -V --version"
local arg_opts="--maxRequestsPerMinute --connectionTimeout --writeTimeout --readTimeout --userAgent -c --contract -s --server --sslKeystore --sslKeystorePwd --sslKeyPwd --basicAuth --basicauth --proxyHost --proxyPort --authRefreshScript --ars --authRefreshInterval --ari -l --log -g --skipLog -O --onlyLog --reportFormat -o --output --maxResponseTimeInMs --verbosity --maskHeaders --headers --queryParams -H --refData --contentType --oneOfSelection --anyOfSelection -i --ignoreResponseCodes --ic --ignoreResponseSize --is --ignoreResponseWords --iw --ignoreResponseLines --il --ignoreResponseRegex --ir --filterResponseCodes --fc --filterResponseSize --fs --filterResponseWords --fw --filterResponseLines --fl --filterResponseRegex --fr"
local reportFormat_option_args=("HTML_ONLY" "HTML_JS" "JUNIT") # --reportFormat values
local verbosity_option_args=("SUMMARY" "DETAILED") # --verbosity values
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--maxRequestsPerMinute)
return
;;
--connectionTimeout)
return
;;
--writeTimeout)
return
;;
--readTimeout)
return
;;
--userAgent)
return
;;
-c|--contract)
return
;;
-s|--server)
return
;;
--sslKeystore)
return
;;
--sslKeystorePwd)
return
;;
--sslKeyPwd)
return
;;
--basicAuth|--basicauth)
return
;;
--proxyHost)
return
;;
--proxyPort)
return
;;
--authRefreshScript|--ars)
return
;;
--authRefreshInterval|--ari)
return
;;
-l|--log)
return
;;
-g|--skipLog)
return
;;
-O|--onlyLog)
return
;;
--reportFormat)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${reportFormat_option_args[@]}" ) )
return $?
;;
-o|--output)
return
;;
--maxResponseTimeInMs)
return
;;
--verbosity)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${verbosity_option_args[@]}" ) )
return $?
;;
--maskHeaders)
return
;;
--headers)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--queryParams)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
-H)
return
;;
--refData)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--contentType)
return
;;
--oneOfSelection|--anyOfSelection)
return
;;
-i|--ignoreResponseCodes|--ic)
return
;;
--ignoreResponseSize|--is)
return
;;
--ignoreResponseWords|--iw)
return
;;
--ignoreResponseLines|--il)
return
;;
--ignoreResponseRegex|--ir)
return
;;
--filterResponseCodes|--fc)
return
;;
--filterResponseSize|--fs)
return
;;
--filterResponseWords|--fw)
return
;;
--filterResponseLines|--fl)
return
;;
--filterResponseRegex|--fr)
return
;;
esac
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local currIndex
currIndex=$(currentPositionalIndex "run" "${arg_opts}" "${flag_opts}")
if (( currIndex >= 0 && currIndex <= 0 )); then
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
positionals=$( compgen -f -- "${curr_word}" ) # files
fi
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `template` subcommand.
function _picocli_cats_template() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands=""
local flag_opts="-D --debug --printExecutionStatistics --printDetailedExecutionStatistics --timestampReports -j --json --checkUpdate --color --printProgress --matchInput --mi --ignoreResponseCodeUndocumentedCheck --iu --ignoreResponseBodyCheck --ib --ignoreResponseContentTypeCheck --it -k --skipReportingForIgnoredCodes --skipReportingForIgnored --sri --srs --skipReportingForSuccess --srw --skipReportingForWarning -b --blackbox --nameReplace --simpleReplace --random -h --help -V --version"
local arg_opts="--maxRequestsPerMinute --connectionTimeout --writeTimeout --readTimeout --userAgent -c --contract -s --server --sslKeystore --sslKeystorePwd --sslKeyPwd --basicAuth --basicauth --proxyHost --proxyPort --authRefreshScript --ars --authRefreshInterval --ari -l --log -g --skipLog -O --onlyLog --reportFormat -o --output --maxResponseTimeInMs --verbosity --maskHeaders --matchResponseCodes --mc --matchResponseSize --ms --matchResponseWords --mw --matchResponseLines --ml --matchResponseRegex --mr -i --ignoreResponseCodes --ic --ignoreResponseSize --is --ignoreResponseWords --iw --ignoreResponseLines --il --ignoreResponseRegex --ir --filterResponseCodes --fc --filterResponseSize --fs --filterResponseWords --fw --filterResponseLines --fl --filterResponseRegex --fr --stopAfterTimeInSec --st --stopAfterErrors --se --stopAfterMutations --sm --words -w --headers -H --data -d --httpMethod -X --targetFields -t"
local reportFormat_option_args=("HTML_ONLY" "HTML_JS" "JUNIT") # --reportFormat values
local verbosity_option_args=("SUMMARY" "DETAILED") # --verbosity values
local httpMethod_option_args=("POST" "PUT" "GET" "TRACE" "DELETE" "PATCH" "HEAD" "CONNECT" "COPY" "MOVE" "PROPPATCH" "PROPFIND" "MKCOL" "LOCK" "UNLOCK" "SEARCH" "BIND" "UNBIND" "REBIND" "MKREDIRECTREF" "UPDATEREDIRECTREF" "ORDERPATCH" "ACL" "REPORT" "DIFF" "VERIFY" "PUBLISH" "UNPUBLISH" "BATCH" "VIEW" "PURGE" "DEBUG" "SUBSCRIBE" "UNSUBSCRIBE" "MERGE" "INDEX") # --httpMethod values
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--maxRequestsPerMinute)
return
;;
--connectionTimeout)
return
;;
--writeTimeout)
return
;;
--readTimeout)
return
;;
--userAgent)
return
;;
-c|--contract)
return
;;
-s|--server)
return
;;
--sslKeystore)
return
;;
--sslKeystorePwd)
return
;;
--sslKeyPwd)
return
;;
--basicAuth|--basicauth)
return
;;
--proxyHost)
return
;;
--proxyPort)
return
;;
--authRefreshScript|--ars)
return
;;
--authRefreshInterval|--ari)
return
;;
-l|--log)
return
;;
-g|--skipLog)
return
;;
-O|--onlyLog)
return
;;
--reportFormat)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${reportFormat_option_args[@]}" ) )
return $?
;;
-o|--output)
return
;;
--maxResponseTimeInMs)
return
;;
--verbosity)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${verbosity_option_args[@]}" ) )
return $?
;;
--maskHeaders)
return
;;
--matchResponseCodes|--mc)
return
;;
--matchResponseSize|--ms)
return
;;
--matchResponseWords|--mw)
return
;;
--matchResponseLines|--ml)
return
;;
--matchResponseRegex|--mr)
return
;;
-i|--ignoreResponseCodes|--ic)
return
;;
--ignoreResponseSize|--is)
return
;;
--ignoreResponseWords|--iw)
return
;;
--ignoreResponseLines|--il)
return
;;
--ignoreResponseRegex|--ir)
return
;;
--filterResponseCodes|--fc)
return
;;
--filterResponseSize|--fs)
return
;;
--filterResponseWords|--fw)
return
;;
--filterResponseLines|--fl)
return
;;
--filterResponseRegex|--fr)
return
;;
--stopAfterTimeInSec|--st)
return
;;
--stopAfterErrors|--se)
return
;;
--stopAfterMutations|--sm)
return
;;
--words|-w)
local IFS=$'\n'
type compopt &>/dev/null && compopt -o filenames
COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
return $?
;;
--headers|-H)
return
;;
--data|-d)
return
;;
--httpMethod|-X)
local IFS=$'\n'
COMPREPLY=( $( compReplyArray "${httpMethod_option_args[@]}" ) )
return $?
;;
--targetFields|-t)
return
;;
esac
if [[ "${curr_word}" == -* ]]; then
COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
else
local positionals=""
local IFS=$'\n'
COMPREPLY=( $(compgen -W "${commands// /$'\n'}${IFS}${positionals}" -- "${curr_word}") )
fi
}
# Generates completions for the options and subcommands of the `fuzz` subcommand.
function _picocli_cats_fuzz() {
# Get completion data
local curr_word=${COMP_WORDS[COMP_CWORD]}
local prev_word=${COMP_WORDS[COMP_CWORD-1]}
local commands=""
local flag_opts="-D --debug --printExecutionStatistics --printDetailedExecutionStatistics --timestampReports -j --json --checkUpdate --color --printProgress --matchInput --mi --ignoreResponseCodeUndocumentedCheck --iu --ignoreResponseBodyCheck --ib --ignoreResponseContentTypeCheck --it -k --skipReportingForIgnoredCodes --skipReportingForIgnored --sri --srs --skipReportingForSuccess --srw --skipReportingForWarning -b --blackbox --nameReplace --simpleReplace --random -h --help -V --version"
local arg_opts="--maxRequestsPerMinute --connectionTimeout --writeTimeout --readTimeout --userAgent -c --contract -s --server --sslKeystore --sslKeystorePwd --sslKeyPwd --basicAuth --basicauth --proxyHost --proxyPort --authRefreshScript --ars --authRefreshInterval --ari -l --log -g --skipLog -O --onlyLog --reportFormat -o --output --maxResponseTimeInMs --verbosity --maskHeaders --matchResponseCodes --mc --matchResponseSize --ms --matchResponseWords --mw --matchResponseLines --ml --matchResponseRegex --mr -i --ignoreResponseCodes --ic --ignoreResponseSize --is --ignoreResponseWords --iw --ignoreResponseLines --il --ignoreResponseRegex --ir --filterResponseCodes --fc --filterResponseSize --fs --filterResponseWords --fw --filterResponseLines --fl --filterResponseRegex --fr --stopAfterTimeInSec --st --stopAfterErrors --se --stopAfterMutations --sm --words -w --headers -H --data -d --httpMethod -X --targetFields -t"
local reportFormat_option_args=("HTML_ONLY" "HTML_JS" "JUNIT") # --reportFormat values
local verbosity_option_args=("SUMMARY" "DETAILED") # --verbosity values
local httpMethod_option_args=("POST" "PUT" "GET" "TRACE" "DELETE" "PATCH" "HEAD" "CONNECT" "COPY" "MOVE" "PROPPATCH" "PROPFIND" "MKCOL" "LOCK" "UNLOCK" "SEARCH" "BIND" "UNBIND" "REBIND" "MKREDIRECTREF" "UPDATEREDIRECTREF" "ORDERPATCH" "ACL" "REPORT" "DIFF" "VERIFY" "PUBLISH" "UNPUBLISH" "BATCH" "VIEW" "PURGE" "DEBUG" "SUBSCRIBE" "UNSUBSCRIBE" "MERGE" "INDEX") # --httpMethod values
type compopt &>/dev/null && compopt +o default
case ${prev_word} in
--maxRequestsPerMinute)
return
;;