3 # Copyright (c) 2007 Johannes Schindelin
6 test_description
='our own option parser'
11 usage: test-parse-options <options>
14 -D, --no-doubt begins with 'no-'
15 -B, --no-fear be brave
16 -b, --boolean increment by one
17 -4, --or4 bitwise-or boolean with ...0100
18 --neg-or4 same as --no-or4
20 -i, --integer <n> get a integer
21 -j <n> get a integer, too
22 --set23 set integer to 23
23 -t <time> get timestamp of <time>
24 -L, --length <str> get length of <str>
25 -F, --file <file> set file to <file>
30 --string2 <str> get another string
31 --st <st> get another string (pervert ordering)
32 -o <str> get another string
33 --default-string set string to default
34 --list <str> add str to list
38 -NUM set integer to NUM
40 --ambiguous positive ambiguity
41 --no-ambiguous negative ambiguity
44 --abbrev[=<n>] use <n> digits to display SHA-1s
45 -v, --verbose be verbose
51 test_expect_success
'test help' '
52 test_must_fail test-parse-options -h > output 2> output.err &&
53 test_must_be_empty output.err &&
54 test_i18ncmp expect output
59 cat >expect.template
<<EOF
76 sed "s/^$what .*/$what $expect/" <expect.template
>expect
&&
77 test-parse-options $
* >output
2>output.err
&&
78 test_must_be_empty output.err
&&
79 test_cmp expect output
87 sed "s/^$what .*/$what $expect/" <expect.template
>expect
&&
88 test-parse-options $
* >output
2>output.err
&&
89 test_must_be_empty output.err
&&
90 test_i18ncmp expect output
96 echo error
: unknown option \
`${1#--}\' >expect ;;
98 echo error: unknown switch \`${1#-}\' >expect
;;
100 cat expect.err
>>expect
&&
101 test_must_fail test-parse-options $
* >output
2>output.err
&&
102 test_must_be_empty output
&&
103 test_cmp expect output.err
106 check_unknown_i18n
() {
109 echo error
: unknown option \
`${1#--}\' >expect ;;
111 echo error: unknown switch \`${1#-}\' >expect
;;
113 cat expect.err
>>expect
&&
114 test_must_fail test-parse-options $
* >output
2>output.err
&&
115 test_must_be_empty output
&&
116 test_i18ncmp expect output.err
119 test_expect_success
'OPT_BOOL() #1' 'check boolean: 1 --yes'
120 test_expect_success
'OPT_BOOL() #2' 'check boolean: 1 --no-doubt'
121 test_expect_success
'OPT_BOOL() #3' 'check boolean: 1 -D'
122 test_expect_success
'OPT_BOOL() #4' 'check boolean: 1 --no-fear'
123 test_expect_success
'OPT_BOOL() #5' 'check boolean: 1 -B'
125 test_expect_success
'OPT_BOOL() is idempotent #1' 'check boolean: 1 --yes --yes'
126 test_expect_success
'OPT_BOOL() is idempotent #2' 'check boolean: 1 -DB'
128 test_expect_success
'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes'
129 test_expect_success
'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt'
131 test_expect_success
'OPT_BOOL() no negation #1' 'check_unknown_i18n --fear'
132 test_expect_success
'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear'
134 test_expect_success
'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt'
148 test_expect_success
'short options' '
149 test-parse-options -s123 -b -i 1729 -b -vv -n -F my.file \
150 > output 2> output.err &&
151 test_cmp expect output &&
152 test_must_be_empty output.err
167 test_expect_success
'long options' '
168 test-parse-options --boolean --integer 1729 --boolean --string2=321 \
169 --verbose --verbose --no-dry-run --abbrev=10 --file fi.le\
170 --obsolete > output 2> output.err &&
171 test_must_be_empty output.err &&
172 test_cmp expect output
175 test_expect_success
'missing required value' '
176 test-parse-options -s;
178 test-parse-options --string;
180 test-parse-options --file;
199 test_expect_success
'intermingled arguments' '
200 test-parse-options a1 --string 123 b1 --boolean -j 13 -- --boolean \
201 > output 2> output.err &&
202 test_must_be_empty output.err &&
203 test_cmp expect output
218 test_expect_success
'unambiguously abbreviated option' '
219 test-parse-options --int 2 --boolean --no-bo > output 2> output.err &&
220 test_must_be_empty output.err &&
221 test_cmp expect output
224 test_expect_success
'unambiguously abbreviated option with "="' '
225 test-parse-options --int=2 > output 2> output.err &&
226 test_must_be_empty output.err &&
227 test_cmp expect output
230 test_expect_success
'ambiguously abbreviated option' '
231 test-parse-options --strin 123;
247 test_expect_success
'non ambiguous option (after two options it abbreviates)' '
248 test-parse-options --st 123 > output 2> output.err &&
249 test_must_be_empty output.err &&
250 test_cmp expect output
253 cat > typo.err
<< EOF
254 error: did you mean \`--boolean\` (with two dashes ?)
257 test_expect_success
'detect possible typos' '
258 test_must_fail test-parse-options -boolean > output 2> output.err &&
259 test_must_be_empty output &&
260 test_cmp typo.err output.err
263 cat > typo.err
<< EOF
264 error: did you mean \`--ambiguous\` (with two dashes ?)
267 test_expect_success
'detect possible typos' '
268 test_must_fail test-parse-options -ambiguous > output 2> output.err &&
269 test_must_be_empty output &&
270 test_cmp typo.err output.err
286 test_expect_success
'keep some options as arguments' '
287 test-parse-options --quux > output 2> output.err &&
288 test_must_be_empty output.err &&
289 test_cmp expect output
305 test_expect_success
'OPT_DATE() and OPT_SET_PTR() work' '
306 test-parse-options -t "1970-01-01 00:00:01 +0000" --default-string \
307 foo -q > output 2> output.err &&
308 test_must_be_empty output.err &&
309 test_cmp expect output
325 test_expect_success
'OPT_CALLBACK() and OPT_BIT() work' '
326 test-parse-options --length=four -b -4 > output 2> output.err &&
327 test_must_be_empty output.err &&
328 test_cmp expect output
332 Callback: "not set", 1
335 test_expect_success
'OPT_CALLBACK() and callback errors work' '
336 test_must_fail test-parse-options --no-length > output 2> output.err &&
337 test_i18ncmp expect output &&
338 test_i18ncmp expect.err output.err
353 test_expect_success
'OPT_BIT() and OPT_SET_INT() work' '
354 test-parse-options --set23 -bbbbb --no-or4 > output 2> output.err &&
355 test_must_be_empty output.err &&
356 test_cmp expect output
359 test_expect_success
'OPT_NEGBIT() and OPT_SET_INT() work' '
360 test-parse-options --set23 -bbbbb --neg-or4 > output 2> output.err &&
361 test_must_be_empty output.err &&
362 test_cmp expect output
377 test_expect_success
'OPT_BIT() works' '
378 test-parse-options -bb --or4 > output 2> output.err &&
379 test_must_be_empty output.err &&
380 test_cmp expect output
383 test_expect_success
'OPT_NEGBIT() works' '
384 test-parse-options -bb --no-neg-or4 > output 2> output.err &&
385 test_must_be_empty output.err &&
386 test_cmp expect output
389 test_expect_success
'OPT_COUNTUP() with PARSE_OPT_NODASH works' '
390 test-parse-options + + + + + + > output 2> output.err &&
391 test_must_be_empty output.err &&
392 test_cmp expect output
407 test_expect_success
'OPT_NUMBER_CALLBACK() works' '
408 test-parse-options -12345 > output 2> output.err &&
409 test_must_be_empty output.err &&
410 test_cmp expect output
425 test_expect_success
'negation of OPT_NONEG flags is not ambiguous' '
426 test-parse-options --no-ambig >output 2>output.err &&
427 test_must_be_empty output.err &&
428 test_cmp expect output
436 test_expect_success
'--list keeps list of strings' '
437 test-parse-options --list foo --list=bar --list=baz >output &&
438 test_cmp expect output
441 test_expect_success
'--no-list resets list' '
442 test-parse-options --list=other --list=irrelevant --list=options \
443 --no-list --list=foo --list=bar --list=baz >output &&
444 test_cmp expect output