3 # Copyright (c) 2007 Johannes Schindelin
6 test_description
='our own option parser'
11 usage
: test-parse-options
<options
>
13 A helper
function for the parse-options API.
16 -D, --no-doubt begins with
'no-'
17 -B, --no-fear be brave
18 -b, --boolean increment by one
19 -4, --or4 bitwise-or boolean with ..
.0100
20 --neg-or4 same as
--no-or4
22 -i, --integer <n
> get a integer
23 -j <n
> get a integer
, too
24 -m, --magnitude <n
> get a magnitude
25 --set23 set integer to
23
26 -t <time> get timestamp of
<time>
27 -L, --length <str
> get length of
<str
>
28 -F, --file <file> set file to
<file>
33 --string2 <str
> get another string
34 --st <st
> get another string
(pervert ordering
)
35 -o <str
> get another string
36 --list <str
> add str to list
40 -NUM set integer to NUM
42 --ambiguous positive ambiguity
43 --no-ambiguous negative ambiguity
46 --abbrev[=<n
>] use
<n
> digits to display SHA-1s
47 -v, --verbose be verbose
50 --expect <string
> expected output
in the variable dump
54 test_expect_success
'test help' '
55 test_must_fail test-parse-options -h >output 2>output.err &&
56 test_must_be_empty output.err &&
57 test_i18ncmp expect output
67 test-parse-options
--expect="$what $expect" "$@"
70 check_unknown_i18n
() {
73 echo error
: unknown option \
`${1#--}\' >expect ;;
75 echo error: unknown switch \`${1#-}\' >expect
;;
77 cat expect.err
>>expect
&&
78 test_must_fail test-parse-options $
* >output
2>output.err
&&
79 test_must_be_empty output
&&
80 test_i18ncmp expect output.err
83 test_expect_success
'OPT_BOOL() #1' 'check boolean: 1 --yes'
84 test_expect_success
'OPT_BOOL() #2' 'check boolean: 1 --no-doubt'
85 test_expect_success
'OPT_BOOL() #3' 'check boolean: 1 -D'
86 test_expect_success
'OPT_BOOL() #4' 'check boolean: 1 --no-fear'
87 test_expect_success
'OPT_BOOL() #5' 'check boolean: 1 -B'
89 test_expect_success
'OPT_BOOL() is idempotent #1' 'check boolean: 1 --yes --yes'
90 test_expect_success
'OPT_BOOL() is idempotent #2' 'check boolean: 1 -DB'
92 test_expect_success
'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes'
93 test_expect_success
'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt'
95 test_expect_success
'OPT_BOOL() no negation #1' 'check_unknown_i18n --fear'
96 test_expect_success
'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear'
98 test_expect_success
'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt'
100 test_expect_success
'OPT_INT() negative' 'check integer: -2345 -i -2345'
102 test_expect_success
'OPT_MAGNITUDE() simple' '
103 check magnitude: 2345678 -m 2345678
106 test_expect_success
'OPT_MAGNITUDE() kilo' '
107 check magnitude: 239616 -m 234k
110 test_expect_success
'OPT_MAGNITUDE() mega' '
111 check magnitude: 104857600 -m 100m
114 test_expect_success
'OPT_MAGNITUDE() giga' '
115 check magnitude: 1073741824 -m 1g
118 test_expect_success
'OPT_MAGNITUDE() 3giga' '
119 check magnitude: 3221225472 -m 3g
135 test_expect_success
'short options' '
136 test-parse-options -s123 -b -i 1729 -m 16k -b -vv -n -F my.file \
137 >output 2>output.err &&
138 test_cmp expect output &&
139 test_must_be_empty output.err
155 test_expect_success
'long options' '
156 test-parse-options --boolean --integer 1729 --magnitude 16k \
157 --boolean --string2=321 --verbose --verbose --no-dry-run \
158 --abbrev=10 --file fi.le --obsolete \
159 >output 2>output.err &&
160 test_must_be_empty output.err &&
161 test_cmp expect output
164 test_expect_success
'missing required value' '
165 test_expect_code 129 test-parse-options -s &&
166 test_expect_code 129 test-parse-options --string &&
167 test_expect_code 129 test-parse-options --file
186 test_expect_success
'intermingled arguments' '
187 test-parse-options a1 --string 123 b1 --boolean -j 13 -- --boolean \
188 >output 2>output.err &&
189 test_must_be_empty output.err &&
190 test_cmp expect output
206 test_expect_success
'unambiguously abbreviated option' '
207 test-parse-options --int 2 --boolean --no-bo >output 2>output.err &&
208 test_must_be_empty output.err &&
209 test_cmp expect output
212 test_expect_success
'unambiguously abbreviated option with "="' '
213 test-parse-options --expect="integer: 2" --int=2
216 test_expect_success
'ambiguously abbreviated option' '
217 test_expect_code 129 test-parse-options --strin 123
220 test_expect_success
'non ambiguous option (after two options it abbreviates)' '
221 test-parse-options --expect="string: 123" --st 123
225 error
: did you mean
`--boolean` (with two dashes ?
)
228 test_expect_success
'detect possible typos' '
229 test_must_fail test-parse-options -boolean >output 2>output.err &&
230 test_must_be_empty output &&
231 test_cmp typo.err output.err
235 error
: did you mean
`--ambiguous` (with two dashes ?
)
238 test_expect_success
'detect possible typos' '
239 test_must_fail test-parse-options -ambiguous >output 2>output.err &&
240 test_must_be_empty output &&
241 test_cmp typo.err output.err
244 test_expect_success
'keep some options as arguments' '
245 test-parse-options --expect="arg 00: --quux" --quux
262 test_expect_success
'OPT_DATE() works' '
263 test-parse-options -t "1970-01-01 00:00:01 +0000" \
264 foo -q >output 2>output.err &&
265 test_must_be_empty output.err &&
266 test_cmp expect output
283 test_expect_success
'OPT_CALLBACK() and OPT_BIT() work' '
284 test-parse-options --length=four -b -4 >output 2>output.err &&
285 test_must_be_empty output.err &&
286 test_cmp expect output
291 test_expect_success
'OPT_CALLBACK() and callback errors work' '
292 test_must_fail test-parse-options --no-length >output 2>output.err &&
293 test_i18ncmp expect output &&
294 test_must_be_empty output.err
310 test_expect_success
'OPT_BIT() and OPT_SET_INT() work' '
311 test-parse-options --set23 -bbbbb --no-or4 >output 2>output.err &&
312 test_must_be_empty output.err &&
313 test_cmp expect output
316 test_expect_success
'OPT_NEGBIT() and OPT_SET_INT() work' '
317 test-parse-options --set23 -bbbbb --neg-or4 >output 2>output.err &&
318 test_must_be_empty output.err &&
319 test_cmp expect output
322 test_expect_success
'OPT_BIT() works' '
323 test-parse-options --expect="boolean: 6" -bb --or4
326 test_expect_success
'OPT_NEGBIT() works' '
327 test-parse-options --expect="boolean: 6" -bb --no-neg-or4
330 test_expect_success
'OPT_COUNTUP() with PARSE_OPT_NODASH works' '
331 test-parse-options --expect="boolean: 6" + + + + + +
334 test_expect_success
'OPT_NUMBER_CALLBACK() works' '
335 test-parse-options --expect="integer: 12345" -12345
351 test_expect_success
'negation of OPT_NONEG flags is not ambiguous' '
352 test-parse-options --no-ambig >output 2>output.err &&
353 test_must_be_empty output.err &&
354 test_cmp expect output
362 test_expect_success
'--list keeps list of strings' '
363 test-parse-options --list foo --list=bar --list=baz >output &&
364 test_cmp expect output
367 test_expect_success
'--no-list resets list' '
368 test-parse-options --list=other --list=irrelevant --list=options \
369 --no-list --list=foo --list=bar --list=baz >output &&
370 test_cmp expect output
373 test_expect_success
'multiple quiet levels' '
374 test-parse-options --expect="quiet: 3" -q -q -q
377 test_expect_success
'multiple verbose levels' '
378 test-parse-options --expect="verbose: 3" -v -v -v
381 test_expect_success
'--no-quiet sets --quiet to 0' '
382 test-parse-options --expect="quiet: 0" --no-quiet
385 test_expect_success
'--no-quiet resets multiple -q to 0' '
386 test-parse-options --expect="quiet: 0" -q -q -q --no-quiet
389 test_expect_success
'--no-verbose sets verbose to 0' '
390 test-parse-options --expect="verbose: 0" --no-verbose
393 test_expect_success
'--no-verbose resets multiple verbose to 0' '
394 test-parse-options --expect="verbose: 0" -v -v -v --no-verbose