]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0040-parse-options.sh
test-parse-options: update to handle negative ints
[thirdparty/git.git] / t / t0040-parse-options.sh
CommitLineData
beb47437
JS
1#!/bin/sh
2#
3# Copyright (c) 2007 Johannes Schindelin
4#
5
6test_description='our own option parser'
7
8. ./test-lib.sh
9
9c7304e3 10cat > expect << EOF
beb47437
JS
11usage: test-parse-options <options>
12
b9e63ddd
RS
13 --yes get a boolean
14 -D, --no-doubt begins with 'no-'
15 -B, --no-fear be brave
16 -b, --boolean increment by one
010a2dac 17 -4, --or4 bitwise-or boolean with ...0100
2f4b97f9 18 --neg-or4 same as --no-or4
010a2dac 19
beb47437
JS
20 -i, --integer <n> get a integer
21 -j <n> get a integer, too
010a2dac
SB
22 --set23 set integer to 23
23 -t <time> get timestamp of <time>
24 -L, --length <str> get length of <str>
41dbcd45 25 -F, --file <file> set file to <file>
beb47437 26
010a2dac 27String options
beb47437
JS
28 -s, --string <string>
29 get a string
30 --string2 <str> get another string
243e0614 31 --st <st> get another string (pervert ordering)
3a9f0f41 32 -o <str> get another string
c8ba1639 33 --list <str> add str to list
beb47437 34
010a2dac 35Magic arguments
580d5bff 36 --quux means --quux
e0319ff5 37 -NUM set integer to NUM
51a9949e 38 + same as -b
6bbfd1fa
AS
39 --ambiguous positive ambiguity
40 --no-ambiguous negative ambiguity
580d5bff 41
010a2dac
SB
42Standard options
43 --abbrev[=<n>] use <n> digits to display SHA-1s
44 -v, --verbose be verbose
45 -n, --dry-run dry run
46 -q, --quiet be quiet
47
beb47437
JS
48EOF
49
50test_expect_success 'test help' '
010a2dac 51 test_must_fail test-parse-options -h > output 2> output.err &&
ca8d148d 52 test_must_be_empty output.err &&
9a001381 53 test_i18ncmp expect output
beb47437
JS
54'
55
9c7304e3
GS
56mv expect expect.err
57
b9e63ddd
RS
58cat >expect.template <<EOF
59boolean: 0
60integer: 0
61timestamp: 0
62string: (not set)
63abbrev: 7
64verbose: 0
65quiet: no
66dry run: no
67file: (not set)
68EOF
69
70check() {
71 what="$1" &&
72 shift &&
73 expect="$1" &&
74 shift &&
75 sed "s/^$what .*/$what $expect/" <expect.template >expect &&
76 test-parse-options $* >output 2>output.err &&
ca8d148d 77 test_must_be_empty output.err &&
b9e63ddd
RS
78 test_cmp expect output
79}
80
9a001381
JX
81check_i18n() {
82 what="$1" &&
83 shift &&
84 expect="$1" &&
85 shift &&
86 sed "s/^$what .*/$what $expect/" <expect.template >expect &&
87 test-parse-options $* >output 2>output.err &&
ca8d148d 88 test_must_be_empty output.err &&
9a001381
JX
89 test_i18ncmp expect output
90}
91
b9e63ddd
RS
92check_unknown() {
93 case "$1" in
94 --*)
95 echo error: unknown option \`${1#--}\' >expect ;;
96 -*)
97 echo error: unknown switch \`${1#-}\' >expect ;;
98 esac &&
99 cat expect.err >>expect &&
100 test_must_fail test-parse-options $* >output 2>output.err &&
ca8d148d 101 test_must_be_empty output &&
b9e63ddd
RS
102 test_cmp expect output.err
103}
104
9a001381
JX
105check_unknown_i18n() {
106 case "$1" in
107 --*)
108 echo error: unknown option \`${1#--}\' >expect ;;
109 -*)
110 echo error: unknown switch \`${1#-}\' >expect ;;
111 esac &&
112 cat expect.err >>expect &&
113 test_must_fail test-parse-options $* >output 2>output.err &&
ca8d148d 114 test_must_be_empty output &&
9a001381
JX
115 test_i18ncmp expect output.err
116}
117
b9e63ddd
RS
118test_expect_success 'OPT_BOOL() #1' 'check boolean: 1 --yes'
119test_expect_success 'OPT_BOOL() #2' 'check boolean: 1 --no-doubt'
120test_expect_success 'OPT_BOOL() #3' 'check boolean: 1 -D'
121test_expect_success 'OPT_BOOL() #4' 'check boolean: 1 --no-fear'
122test_expect_success 'OPT_BOOL() #5' 'check boolean: 1 -B'
123
124test_expect_success 'OPT_BOOL() is idempotent #1' 'check boolean: 1 --yes --yes'
125test_expect_success 'OPT_BOOL() is idempotent #2' 'check boolean: 1 -DB'
126
127test_expect_success 'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes'
128test_expect_success 'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt'
129
9a001381
JX
130test_expect_success 'OPT_BOOL() no negation #1' 'check_unknown_i18n --fear'
131test_expect_success 'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear'
b9e63ddd 132
0f1930c5 133test_expect_success 'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt'
b9e63ddd 134
81a48cc0
CB
135test_expect_success 'OPT_INT() negative' 'check integer: -2345 -i -2345'
136
beb47437
JS
137cat > expect << EOF
138boolean: 2
139integer: 1729
c4aca9cc 140timestamp: 0
beb47437 141string: 123
010a2dac
SB
142abbrev: 7
143verbose: 2
144quiet: no
145dry run: yes
df217ed6 146file: prefix/my.file
beb47437
JS
147EOF
148
149test_expect_success 'short options' '
df217ed6
SB
150 test-parse-options -s123 -b -i 1729 -b -vv -n -F my.file \
151 > output 2> output.err &&
3af82863 152 test_cmp expect output &&
ca8d148d 153 test_must_be_empty output.err
beb47437 154'
010a2dac 155
beb47437
JS
156cat > expect << EOF
157boolean: 2
158integer: 1729
c4aca9cc 159timestamp: 0
beb47437 160string: 321
010a2dac
SB
161abbrev: 10
162verbose: 2
163quiet: no
164dry run: no
df217ed6 165file: prefix/fi.le
beb47437
JS
166EOF
167
168test_expect_success 'long options' '
169 test-parse-options --boolean --integer 1729 --boolean --string2=321 \
df217ed6 170 --verbose --verbose --no-dry-run --abbrev=10 --file fi.le\
6acec038 171 --obsolete > output 2> output.err &&
ca8d148d 172 test_must_be_empty output.err &&
3af82863 173 test_cmp expect output
beb47437
JS
174'
175
d5d745f9 176test_expect_success 'missing required value' '
c21fc9d0
JK
177 test_expect_code 129 test-parse-options -s &&
178 test_expect_code 129 test-parse-options --string &&
179 test_expect_code 129 test-parse-options --file
d5d745f9
OM
180'
181
beb47437
JS
182cat > expect << EOF
183boolean: 1
184integer: 13
c4aca9cc 185timestamp: 0
beb47437 186string: 123
010a2dac
SB
187abbrev: 7
188verbose: 0
189quiet: no
190dry run: no
df217ed6 191file: (not set)
beb47437
JS
192arg 00: a1
193arg 01: b1
194arg 02: --boolean
195EOF
196
197test_expect_success 'intermingled arguments' '
198 test-parse-options a1 --string 123 b1 --boolean -j 13 -- --boolean \
199 > output 2> output.err &&
ca8d148d 200 test_must_be_empty output.err &&
3af82863 201 test_cmp expect output
beb47437
JS
202'
203
7f275b91
JS
204cat > expect << EOF
205boolean: 0
206integer: 2
c4aca9cc 207timestamp: 0
7f275b91 208string: (not set)
010a2dac
SB
209abbrev: 7
210verbose: 0
211quiet: no
212dry run: no
df217ed6 213file: (not set)
7f275b91
JS
214EOF
215
216test_expect_success 'unambiguously abbreviated option' '
217 test-parse-options --int 2 --boolean --no-bo > output 2> output.err &&
ca8d148d 218 test_must_be_empty output.err &&
3af82863 219 test_cmp expect output
7f275b91
JS
220'
221
222test_expect_success 'unambiguously abbreviated option with "="' '
223 test-parse-options --int=2 > output 2> output.err &&
ca8d148d 224 test_must_be_empty output.err &&
3af82863 225 test_cmp expect output
7f275b91
JS
226'
227
41ac414e 228test_expect_success 'ambiguously abbreviated option' '
c21fc9d0 229 test_expect_code 129 test-parse-options --strin 123
7f275b91
JS
230'
231
243e0614
JS
232cat > expect << EOF
233boolean: 0
234integer: 0
c4aca9cc 235timestamp: 0
243e0614 236string: 123
010a2dac
SB
237abbrev: 7
238verbose: 0
239quiet: no
240dry run: no
df217ed6 241file: (not set)
243e0614
JS
242EOF
243
244test_expect_success 'non ambiguous option (after two options it abbreviates)' '
245 test-parse-options --st 123 > output 2> output.err &&
ca8d148d 246 test_must_be_empty output.err &&
3af82863 247 test_cmp expect output
243e0614
JS
248'
249
010a2dac 250cat > typo.err << EOF
3a9f0f41
PH
251error: did you mean \`--boolean\` (with two dashes ?)
252EOF
253
254test_expect_success 'detect possible typos' '
010a2dac 255 test_must_fail test-parse-options -boolean > output 2> output.err &&
ca8d148d 256 test_must_be_empty output &&
010a2dac 257 test_cmp typo.err output.err
3a9f0f41
PH
258'
259
38916c5b
RS
260cat > typo.err << EOF
261error: did you mean \`--ambiguous\` (with two dashes ?)
262EOF
263
264test_expect_success 'detect possible typos' '
265 test_must_fail test-parse-options -ambiguous > output 2> output.err &&
ca8d148d 266 test_must_be_empty output &&
38916c5b
RS
267 test_cmp typo.err output.err
268'
269
580d5bff
PH
270cat > expect <<EOF
271boolean: 0
272integer: 0
c4aca9cc 273timestamp: 0
580d5bff 274string: (not set)
010a2dac
SB
275abbrev: 7
276verbose: 0
277quiet: no
278dry run: no
df217ed6 279file: (not set)
580d5bff
PH
280arg 00: --quux
281EOF
282
283test_expect_success 'keep some options as arguments' '
284 test-parse-options --quux > output 2> output.err &&
ca8d148d 285 test_must_be_empty output.err &&
3af82863 286 test_cmp expect output
580d5bff
PH
287'
288
010a2dac
SB
289cat > expect <<EOF
290boolean: 0
c4aca9cc
JH
291integer: 0
292timestamp: 1
20d1c652 293string: (not set)
010a2dac
SB
294abbrev: 7
295verbose: 0
296quiet: yes
297dry run: no
df217ed6 298file: (not set)
010a2dac
SB
299arg 00: foo
300EOF
301
20d1c652
MR
302test_expect_success 'OPT_DATE() works' '
303 test-parse-options -t "1970-01-01 00:00:01 +0000" \
010a2dac 304 foo -q > output 2> output.err &&
ca8d148d 305 test_must_be_empty output.err &&
010a2dac
SB
306 test_cmp expect output
307'
308
309cat > expect <<EOF
310Callback: "four", 0
311boolean: 5
312integer: 4
c4aca9cc 313timestamp: 0
010a2dac
SB
314string: (not set)
315abbrev: 7
316verbose: 0
317quiet: no
318dry run: no
df217ed6 319file: (not set)
010a2dac
SB
320EOF
321
322test_expect_success 'OPT_CALLBACK() and OPT_BIT() work' '
323 test-parse-options --length=four -b -4 > output 2> output.err &&
ca8d148d 324 test_must_be_empty output.err &&
010a2dac
SB
325 test_cmp expect output
326'
327
328cat > expect <<EOF
329Callback: "not set", 1
330EOF
331
332test_expect_success 'OPT_CALLBACK() and callback errors work' '
333 test_must_fail test-parse-options --no-length > output 2> output.err &&
9a001381
JX
334 test_i18ncmp expect output &&
335 test_i18ncmp expect.err output.err
010a2dac
SB
336'
337
338cat > expect <<EOF
339boolean: 1
340integer: 23
c4aca9cc 341timestamp: 0
010a2dac
SB
342string: (not set)
343abbrev: 7
344verbose: 0
345quiet: no
346dry run: no
df217ed6 347file: (not set)
010a2dac
SB
348EOF
349
350test_expect_success 'OPT_BIT() and OPT_SET_INT() work' '
351 test-parse-options --set23 -bbbbb --no-or4 > output 2> output.err &&
ca8d148d 352 test_must_be_empty output.err &&
010a2dac
SB
353 test_cmp expect output
354'
355
2f4b97f9
RS
356test_expect_success 'OPT_NEGBIT() and OPT_SET_INT() work' '
357 test-parse-options --set23 -bbbbb --neg-or4 > output 2> output.err &&
ca8d148d 358 test_must_be_empty output.err &&
2f4b97f9
RS
359 test_cmp expect output
360'
361
362cat > expect <<EOF
363boolean: 6
364integer: 0
365timestamp: 0
366string: (not set)
367abbrev: 7
368verbose: 0
369quiet: no
370dry run: no
df217ed6 371file: (not set)
2f4b97f9
RS
372EOF
373
374test_expect_success 'OPT_BIT() works' '
375 test-parse-options -bb --or4 > output 2> output.err &&
ca8d148d 376 test_must_be_empty output.err &&
2f4b97f9
RS
377 test_cmp expect output
378'
379
380test_expect_success 'OPT_NEGBIT() works' '
381 test-parse-options -bb --no-neg-or4 > output 2> output.err &&
ca8d148d 382 test_must_be_empty output.err &&
2f4b97f9
RS
383 test_cmp expect output
384'
010a2dac 385
b9e63ddd 386test_expect_success 'OPT_COUNTUP() with PARSE_OPT_NODASH works' '
51a9949e 387 test-parse-options + + + + + + > output 2> output.err &&
ca8d148d 388 test_must_be_empty output.err &&
51a9949e
RS
389 test_cmp expect output
390'
391
e0319ff5
RS
392cat > expect <<EOF
393boolean: 0
394integer: 12345
395timestamp: 0
396string: (not set)
397abbrev: 7
398verbose: 0
399quiet: no
400dry run: no
df217ed6 401file: (not set)
e0319ff5
RS
402EOF
403
404test_expect_success 'OPT_NUMBER_CALLBACK() works' '
405 test-parse-options -12345 > output 2> output.err &&
ca8d148d 406 test_must_be_empty output.err &&
e0319ff5
RS
407 test_cmp expect output
408'
409
6bbfd1fa
AS
410cat >expect <<EOF
411boolean: 0
412integer: 0
413timestamp: 0
414string: (not set)
415abbrev: 7
416verbose: 0
417quiet: no
418dry run: no
419file: (not set)
420EOF
421
422test_expect_success 'negation of OPT_NONEG flags is not ambiguous' '
423 test-parse-options --no-ambig >output 2>output.err &&
ca8d148d 424 test_must_be_empty output.err &&
6bbfd1fa
AS
425 test_cmp expect output
426'
427
c8ba1639
JK
428cat >>expect <<'EOF'
429list: foo
430list: bar
431list: baz
432EOF
433test_expect_success '--list keeps list of strings' '
434 test-parse-options --list foo --list=bar --list=baz >output &&
435 test_cmp expect output
436'
437
438test_expect_success '--no-list resets list' '
439 test-parse-options --list=other --list=irrelevant --list=options \
440 --no-list --list=foo --list=bar --list=baz >output &&
441 test_cmp expect output
442'
443
beb47437 444test_done