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