]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0040-parse-options.sh
Documentation: user-manual: "git commit -a" doesn't motivate .gitignore
[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
10cat > expect.err << EOF
11usage: test-parse-options <options>
12
13 -b, --boolean get a boolean
010a2dac
SB
14 -4, --or4 bitwise-or boolean with ...0100
15
beb47437
JS
16 -i, --integer <n> get a integer
17 -j <n> get a integer, too
010a2dac
SB
18 --set23 set integer to 23
19 -t <time> get timestamp of <time>
20 -L, --length <str> get length of <str>
beb47437 21
010a2dac 22String options
beb47437
JS
23 -s, --string <string>
24 get a string
25 --string2 <str> get another string
243e0614 26 --st <st> get another string (pervert ordering)
3a9f0f41 27 -o <str> get another string
010a2dac 28 --default-string set string to default
beb47437 29
010a2dac 30Magic arguments
580d5bff
PH
31 --quux means --quux
32
010a2dac
SB
33Standard options
34 --abbrev[=<n>] use <n> digits to display SHA-1s
35 -v, --verbose be verbose
36 -n, --dry-run dry run
37 -q, --quiet be quiet
38
beb47437
JS
39EOF
40
41test_expect_success 'test help' '
010a2dac 42 test_must_fail test-parse-options -h > output 2> output.err &&
beb47437 43 test ! -s output &&
3af82863 44 test_cmp expect.err output.err
beb47437
JS
45'
46
47cat > expect << EOF
48boolean: 2
49integer: 1729
c4aca9cc 50timestamp: 0
beb47437 51string: 123
010a2dac
SB
52abbrev: 7
53verbose: 2
54quiet: no
55dry run: yes
beb47437
JS
56EOF
57
58test_expect_success 'short options' '
010a2dac 59 test-parse-options -s123 -b -i 1729 -b -vv -n > output 2> output.err &&
3af82863 60 test_cmp expect output &&
beb47437
JS
61 test ! -s output.err
62'
010a2dac 63
beb47437
JS
64cat > expect << EOF
65boolean: 2
66integer: 1729
c4aca9cc 67timestamp: 0
beb47437 68string: 321
010a2dac
SB
69abbrev: 10
70verbose: 2
71quiet: no
72dry run: no
beb47437
JS
73EOF
74
75test_expect_success 'long options' '
76 test-parse-options --boolean --integer 1729 --boolean --string2=321 \
010a2dac 77 --verbose --verbose --no-dry-run --abbrev=10 \
beb47437
JS
78 > output 2> output.err &&
79 test ! -s output.err &&
3af82863 80 test_cmp expect output
beb47437
JS
81'
82
d5d745f9
OM
83test_expect_success 'missing required value' '
84 test-parse-options -s;
85 test $? = 129 &&
86 test-parse-options --string;
87 test $? = 129
88'
89
beb47437
JS
90cat > expect << EOF
91boolean: 1
92integer: 13
c4aca9cc 93timestamp: 0
beb47437 94string: 123
010a2dac
SB
95abbrev: 7
96verbose: 0
97quiet: no
98dry run: no
beb47437
JS
99arg 00: a1
100arg 01: b1
101arg 02: --boolean
102EOF
103
104test_expect_success 'intermingled arguments' '
105 test-parse-options a1 --string 123 b1 --boolean -j 13 -- --boolean \
106 > output 2> output.err &&
107 test ! -s output.err &&
3af82863 108 test_cmp expect output
beb47437
JS
109'
110
7f275b91
JS
111cat > expect << EOF
112boolean: 0
113integer: 2
c4aca9cc 114timestamp: 0
7f275b91 115string: (not set)
010a2dac
SB
116abbrev: 7
117verbose: 0
118quiet: no
119dry run: no
7f275b91
JS
120EOF
121
122test_expect_success 'unambiguously abbreviated option' '
123 test-parse-options --int 2 --boolean --no-bo > output 2> output.err &&
124 test ! -s output.err &&
3af82863 125 test_cmp expect output
7f275b91
JS
126'
127
128test_expect_success 'unambiguously abbreviated option with "="' '
129 test-parse-options --int=2 > output 2> output.err &&
130 test ! -s output.err &&
3af82863 131 test_cmp expect output
7f275b91
JS
132'
133
41ac414e 134test_expect_success 'ambiguously abbreviated option' '
7f275b91 135 test-parse-options --strin 123;
41ac414e 136 test $? = 129
7f275b91
JS
137'
138
243e0614
JS
139cat > expect << EOF
140boolean: 0
141integer: 0
c4aca9cc 142timestamp: 0
243e0614 143string: 123
010a2dac
SB
144abbrev: 7
145verbose: 0
146quiet: no
147dry run: no
243e0614
JS
148EOF
149
150test_expect_success 'non ambiguous option (after two options it abbreviates)' '
151 test-parse-options --st 123 > output 2> output.err &&
152 test ! -s output.err &&
3af82863 153 test_cmp expect output
243e0614
JS
154'
155
010a2dac 156cat > typo.err << EOF
3a9f0f41
PH
157error: did you mean \`--boolean\` (with two dashes ?)
158EOF
159
160test_expect_success 'detect possible typos' '
010a2dac 161 test_must_fail test-parse-options -boolean > output 2> output.err &&
3a9f0f41 162 test ! -s output &&
010a2dac 163 test_cmp typo.err output.err
3a9f0f41
PH
164'
165
580d5bff
PH
166cat > expect <<EOF
167boolean: 0
168integer: 0
c4aca9cc 169timestamp: 0
580d5bff 170string: (not set)
010a2dac
SB
171abbrev: 7
172verbose: 0
173quiet: no
174dry run: no
580d5bff
PH
175arg 00: --quux
176EOF
177
178test_expect_success 'keep some options as arguments' '
179 test-parse-options --quux > output 2> output.err &&
180 test ! -s output.err &&
3af82863 181 test_cmp expect output
580d5bff
PH
182'
183
010a2dac
SB
184cat > expect <<EOF
185boolean: 0
c4aca9cc
JH
186integer: 0
187timestamp: 1
010a2dac
SB
188string: default
189abbrev: 7
190verbose: 0
191quiet: yes
192dry run: no
193arg 00: foo
194EOF
195
196test_expect_success 'OPT_DATE() and OPT_SET_PTR() work' '
197 test-parse-options -t "1970-01-01 00:00:01 +0000" --default-string \
198 foo -q > output 2> output.err &&
199 test ! -s output.err &&
200 test_cmp expect output
201'
202
203cat > expect <<EOF
204Callback: "four", 0
205boolean: 5
206integer: 4
c4aca9cc 207timestamp: 0
010a2dac
SB
208string: (not set)
209abbrev: 7
210verbose: 0
211quiet: no
212dry run: no
213EOF
214
215test_expect_success 'OPT_CALLBACK() and OPT_BIT() work' '
216 test-parse-options --length=four -b -4 > output 2> output.err &&
217 test ! -s output.err &&
218 test_cmp expect output
219'
220
221cat > expect <<EOF
222Callback: "not set", 1
223EOF
224
225test_expect_success 'OPT_CALLBACK() and callback errors work' '
226 test_must_fail test-parse-options --no-length > output 2> output.err &&
227 test_cmp expect output &&
228 test_cmp expect.err output.err
229'
230
231cat > expect <<EOF
232boolean: 1
233integer: 23
c4aca9cc 234timestamp: 0
010a2dac
SB
235string: (not set)
236abbrev: 7
237verbose: 0
238quiet: no
239dry run: no
240EOF
241
242test_expect_success 'OPT_BIT() and OPT_SET_INT() work' '
243 test-parse-options --set23 -bbbbb --no-or4 > output 2> output.err &&
244 test ! -s output.err &&
245 test_cmp expect output
246'
247
248# --or4
249# --no-or4
250
beb47437 251test_done