commit doc: document that -c, -C, -F and --fixup with -m error
[git.git] / t / t3070-wildmatch.sh
blob163a14a1c2cb77b2a644a7342fd554940f7dd2e3
1 #!/bin/sh
3 test_description='wildmatch tests'
5 . ./test-lib.sh
7 match() {
8 if [ $1 = 1 ]; then
9 test_expect_success "wildmatch: match '$3' '$4'" "
10 test-wildmatch wildmatch '$3' '$4'
12 else
13 test_expect_success "wildmatch: no match '$3' '$4'" "
14 ! test-wildmatch wildmatch '$3' '$4'
19 imatch() {
20 if [ $1 = 1 ]; then
21 test_expect_success "iwildmatch: match '$2' '$3'" "
22 test-wildmatch iwildmatch '$2' '$3'
24 else
25 test_expect_success "iwildmatch: no match '$2' '$3'" "
26 ! test-wildmatch iwildmatch '$2' '$3'
31 pathmatch() {
32 if [ $1 = 1 ]; then
33 test_expect_success "pathmatch: match '$2' '$3'" "
34 test-wildmatch pathmatch '$2' '$3'
36 else
37 test_expect_success "pathmatch: no match '$2' '$3'" "
38 ! test-wildmatch pathmatch '$2' '$3'
43 # Basic wildmat features
44 match 1 1 foo foo
45 match 0 0 foo bar
46 match 1 1 '' ""
47 match 1 1 foo '???'
48 match 0 0 foo '??'
49 match 1 1 foo '*'
50 match 1 1 foo 'f*'
51 match 0 0 foo '*f'
52 match 1 1 foo '*foo*'
53 match 1 1 foobar '*ob*a*r*'
54 match 1 1 aaaaaaabababab '*ab'
55 match 1 1 'foo*' 'foo\*'
56 match 0 0 foobar 'foo\*bar'
57 match 1 1 'f\oo' 'f\\oo'
58 match 1 1 ball '*[al]?'
59 match 0 0 ten '[ten]'
60 match 0 1 ten '**[!te]'
61 match 0 0 ten '**[!ten]'
62 match 1 1 ten 't[a-g]n'
63 match 0 0 ten 't[!a-g]n'
64 match 1 1 ton 't[!a-g]n'
65 match 1 1 ton 't[^a-g]n'
66 match 1 x 'a]b' 'a[]]b'
67 match 1 x a-b 'a[]-]b'
68 match 1 x 'a]b' 'a[]-]b'
69 match 0 x aab 'a[]-]b'
70 match 1 x aab 'a[]a-]b'
71 match 1 1 ']' ']'
73 # Extended slash-matching features
74 match 0 0 'foo/baz/bar' 'foo*bar'
75 match 0 0 'foo/baz/bar' 'foo**bar'
76 match 0 1 'foobazbar' 'foo**bar'
77 match 1 1 'foo/baz/bar' 'foo/**/bar'
78 match 1 0 'foo/baz/bar' 'foo/**/**/bar'
79 match 1 0 'foo/b/a/z/bar' 'foo/**/bar'
80 match 1 0 'foo/b/a/z/bar' 'foo/**/**/bar'
81 match 1 0 'foo/bar' 'foo/**/bar'
82 match 1 0 'foo/bar' 'foo/**/**/bar'
83 match 0 0 'foo/bar' 'foo?bar'
84 match 0 0 'foo/bar' 'foo[/]bar'
85 match 0 0 'foo/bar' 'foo[^a-z]bar'
86 match 0 0 'foo/bar' 'f[^eiu][^eiu][^eiu][^eiu][^eiu]r'
87 match 1 1 'foo-bar' 'f[^eiu][^eiu][^eiu][^eiu][^eiu]r'
88 match 1 0 'foo' '**/foo'
89 match 1 x 'XXX/foo' '**/foo'
90 match 1 0 'bar/baz/foo' '**/foo'
91 match 0 0 'bar/baz/foo' '*/foo'
92 match 0 0 'foo/bar/baz' '**/bar*'
93 match 1 0 'deep/foo/bar/baz' '**/bar/*'
94 match 0 0 'deep/foo/bar/baz/' '**/bar/*'
95 match 1 0 'deep/foo/bar/baz/' '**/bar/**'
96 match 0 0 'deep/foo/bar' '**/bar/*'
97 match 1 0 'deep/foo/bar/' '**/bar/**'
98 match 0 0 'foo/bar/baz' '**/bar**'
99 match 1 0 'foo/bar/baz/x' '*/bar/**'
100 match 0 0 'deep/foo/bar/baz/x' '*/bar/**'
101 match 1 0 'deep/foo/bar/baz/x' '**/bar/*/*'
103 # Various additional tests
104 match 0 0 'acrt' 'a[c-c]st'
105 match 1 1 'acrt' 'a[c-c]rt'
106 match 0 0 ']' '[!]-]'
107 match 1 x 'a' '[!]-]'
108 match 0 0 '' '\'
109 match 0 x '\' '\'
110 match 0 x 'XXX/\' '*/\'
111 match 1 x 'XXX/\' '*/\\'
112 match 1 1 'foo' 'foo'
113 match 1 1 '@foo' '@foo'
114 match 0 0 'foo' '@foo'
115 match 1 1 '[ab]' '\[ab]'
116 match 1 1 '[ab]' '[[]ab]'
117 match 1 x '[ab]' '[[:]ab]'
118 match 0 x '[ab]' '[[::]ab]'
119 match 1 x '[ab]' '[[:digit]ab]'
120 match 1 x '[ab]' '[\[:]ab]'
121 match 1 1 '?a?b' '\??\?b'
122 match 1 1 'abc' '\a\b\c'
123 match 0 0 'foo' ''
124 match 1 0 'foo/bar/baz/to' '**/t[o]'
126 # Character class tests
127 match 1 x 'a1B' '[[:alpha:]][[:digit:]][[:upper:]]'
128 match 0 x 'a' '[[:digit:][:upper:][:space:]]'
129 match 1 x 'A' '[[:digit:][:upper:][:space:]]'
130 match 1 x '1' '[[:digit:][:upper:][:space:]]'
131 match 0 x '1' '[[:digit:][:upper:][:spaci:]]'
132 match 1 x ' ' '[[:digit:][:upper:][:space:]]'
133 match 0 x '.' '[[:digit:][:upper:][:space:]]'
134 match 1 x '.' '[[:digit:][:punct:][:space:]]'
135 match 1 x '5' '[[:xdigit:]]'
136 match 1 x 'f' '[[:xdigit:]]'
137 match 1 x 'D' '[[:xdigit:]]'
138 match 1 x '_' '[[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
139 match 1 x '.' '[^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:lower:][:space:][:upper:][:xdigit:]]'
140 match 1 x '5' '[a-c[:digit:]x-z]'
141 match 1 x 'b' '[a-c[:digit:]x-z]'
142 match 1 x 'y' '[a-c[:digit:]x-z]'
143 match 0 x 'q' '[a-c[:digit:]x-z]'
145 # Additional tests, including some malformed wildmats
146 match 1 x ']' '[\\-^]'
147 match 0 0 '[' '[\\-^]'
148 match 1 x '-' '[\-_]'
149 match 1 x ']' '[\]]'
150 match 0 0 '\]' '[\]]'
151 match 0 0 '\' '[\]]'
152 match 0 0 'ab' 'a[]b'
153 match 0 x 'a[]b' 'a[]b'
154 match 0 x 'ab[' 'ab['
155 match 0 0 'ab' '[!'
156 match 0 0 'ab' '[-'
157 match 1 1 '-' '[-]'
158 match 0 0 '-' '[a-'
159 match 0 0 '-' '[!a-'
160 match 1 x '-' '[--A]'
161 match 1 x '5' '[--A]'
162 match 1 1 ' ' '[ --]'
163 match 1 1 '$' '[ --]'
164 match 1 1 '-' '[ --]'
165 match 0 0 '0' '[ --]'
166 match 1 x '-' '[---]'
167 match 1 x '-' '[------]'
168 match 0 0 'j' '[a-e-n]'
169 match 1 x '-' '[a-e-n]'
170 match 1 x 'a' '[!------]'
171 match 0 0 '[' '[]-a]'
172 match 1 x '^' '[]-a]'
173 match 0 0 '^' '[!]-a]'
174 match 1 x '[' '[!]-a]'
175 match 1 1 '^' '[a^bc]'
176 match 1 x '-b]' '[a-]b]'
177 match 0 0 '\' '[\]'
178 match 1 1 '\' '[\\]'
179 match 0 0 '\' '[!\\]'
180 match 1 1 'G' '[A-\\]'
181 match 0 0 'aaabbb' 'b*a'
182 match 0 0 'aabcaa' '*ba*'
183 match 1 1 ',' '[,]'
184 match 1 1 ',' '[\\,]'
185 match 1 1 '\' '[\\,]'
186 match 1 1 '-' '[,-.]'
187 match 0 0 '+' '[,-.]'
188 match 0 0 '-.]' '[,-.]'
189 match 1 1 '2' '[\1-\3]'
190 match 1 1 '3' '[\1-\3]'
191 match 0 0 '4' '[\1-\3]'
192 match 1 1 '\' '[[-\]]'
193 match 1 1 '[' '[[-\]]'
194 match 1 1 ']' '[[-\]]'
195 match 0 0 '-' '[[-\]]'
197 # Test recursion and the abort code (use "wildtest -i" to see iteration counts)
198 match 1 1 '-adobe-courier-bold-o-normal--12-120-75-75-m-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
199 match 0 0 '-adobe-courier-bold-o-normal--12-120-75-75-X-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
200 match 0 0 '-adobe-courier-bold-o-normal--12-120-75-75-/-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
201 match 1 1 'XXX/adobe/courier/bold/o/normal//12/120/75/75/m/70/iso8859/1' 'XXX/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
202 match 0 0 'XXX/adobe/courier/bold/o/normal//12/120/75/75/X/70/iso8859/1' 'XXX/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
203 match 1 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txt' '**/*a*b*g*n*t'
204 match 0 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txtz' '**/*a*b*g*n*t'
205 match 0 x foo '*/*/*'
206 match 0 x foo/bar '*/*/*'
207 match 1 x foo/bba/arr '*/*/*'
208 match 0 x foo/bb/aa/rr '*/*/*'
209 match 1 x foo/bb/aa/rr '**/**/**'
210 match 1 x abcXdefXghi '*X*i'
211 match 0 x ab/cXd/efXg/hi '*X*i'
212 match 1 x ab/cXd/efXg/hi '*/*X*/*/*i'
213 match 1 x ab/cXd/efXg/hi '**/*X*/**/*i'
215 pathmatch 1 foo foo
216 pathmatch 0 foo fo
217 pathmatch 1 foo/bar foo/bar
218 pathmatch 1 foo/bar 'foo/*'
219 pathmatch 1 foo/bba/arr 'foo/*'
220 pathmatch 1 foo/bba/arr 'foo/**'
221 pathmatch 1 foo/bba/arr 'foo*'
222 pathmatch 1 foo/bba/arr 'foo**'
223 pathmatch 1 foo/bba/arr 'foo/*arr'
224 pathmatch 1 foo/bba/arr 'foo/**arr'
225 pathmatch 0 foo/bba/arr 'foo/*z'
226 pathmatch 0 foo/bba/arr 'foo/**z'
227 pathmatch 1 foo/bar 'foo?bar'
228 pathmatch 1 foo/bar 'foo[/]bar'
229 pathmatch 1 foo/bar 'foo[^a-z]bar'
230 pathmatch 0 foo '*/*/*'
231 pathmatch 0 foo/bar '*/*/*'
232 pathmatch 1 foo/bba/arr '*/*/*'
233 pathmatch 1 foo/bb/aa/rr '*/*/*'
234 pathmatch 1 abcXdefXghi '*X*i'
235 pathmatch 1 ab/cXd/efXg/hi '*/*X*/*/*i'
236 pathmatch 1 ab/cXd/efXg/hi '*Xg*i'
238 # Case-sensitivity features
239 match 0 x 'a' '[A-Z]'
240 match 1 x 'A' '[A-Z]'
241 match 0 x 'A' '[a-z]'
242 match 1 x 'a' '[a-z]'
243 match 0 x 'a' '[[:upper:]]'
244 match 1 x 'A' '[[:upper:]]'
245 match 0 x 'A' '[[:lower:]]'
246 match 1 x 'a' '[[:lower:]]'
247 match 0 x 'A' '[B-Za]'
248 match 1 x 'a' '[B-Za]'
249 match 0 x 'A' '[B-a]'
250 match 1 x 'a' '[B-a]'
251 match 0 x 'z' '[Z-y]'
252 match 1 x 'Z' '[Z-y]'
254 imatch 1 'a' '[A-Z]'
255 imatch 1 'A' '[A-Z]'
256 imatch 1 'A' '[a-z]'
257 imatch 1 'a' '[a-z]'
258 imatch 1 'a' '[[:upper:]]'
259 imatch 1 'A' '[[:upper:]]'
260 imatch 1 'A' '[[:lower:]]'
261 imatch 1 'a' '[[:lower:]]'
262 imatch 1 'A' '[B-Za]'
263 imatch 1 'a' '[B-Za]'
264 imatch 1 'A' '[B-a]'
265 imatch 1 'a' '[B-a]'
266 imatch 1 'z' '[Z-y]'
267 imatch 1 'Z' '[Z-y]'
269 test_done