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