3 test_description
='wildmatch tests'
9 test_expect_success
"wildmatch: match '$3' '$4'" "
10 test-wildmatch wildmatch '$3' '$4'
13 test_expect_success
"wildmatch: no match '$3' '$4'" "
14 ! test-wildmatch wildmatch '$3' '$4'
18 test_expect_success
"fnmatch: match '$3' '$4'" "
19 test-wildmatch fnmatch '$3' '$4'
22 test_expect_success
"fnmatch: no match '$3' '$4'" "
23 ! test-wildmatch fnmatch '$3' '$4'
26 # test_expect_success BROKEN_FNMATCH "fnmatch: '$3' '$4'" "
27 # ! test-wildmatch fnmatch '$3' '$4'
34 test_expect_success
"pathmatch: match '$2' '$3'" "
35 test-wildmatch pathmatch '$2' '$3'
38 test_expect_success
"pathmatch: no match '$2' '$3'" "
39 ! test-wildmatch pathmatch '$2' '$3'
44 # Basic wildmat features
54 match
1 1 foobar
'*ob*a*r*'
55 match
1 1 aaaaaaabababab
'*ab'
56 match
1 1 'foo*' 'foo\*'
57 match
0 0 foobar
'foo\*bar'
58 match
1 1 'f\oo' 'f\\oo'
59 match
1 1 ball
'*[al]?'
61 match
0 1 ten
'**[!te]'
62 match
0 0 ten
'**[!ten]'
63 match
1 1 ten
't[a-g]n'
64 match
0 0 ten
't[!a-g]n'
65 match
1 1 ton
't[!a-g]n'
66 match
1 1 ton
't[^a-g]n'
67 match
1 x
'a]b' 'a[]]b'
68 match
1 x a-b
'a[]-]b'
69 match
1 x
'a]b' 'a[]-]b'
70 match
0 x aab
'a[]-]b'
71 match
1 x aab
'a[]a-]b'
74 # Extended slash-matching features
75 match
0 0 'foo/baz/bar' 'foo*bar'
76 match
0 0 'foo/baz/bar' 'foo**bar'
77 match
0 1 'foobazbar' 'foo**bar'
78 match
1 1 'foo/baz/bar' 'foo/**/bar'
79 match
1 0 'foo/baz/bar' 'foo/**/**/bar'
80 match
1 0 'foo/b/a/z/bar' 'foo/**/bar'
81 match
1 0 'foo/b/a/z/bar' 'foo/**/**/bar'
82 match
1 0 'foo/bar' 'foo/**/bar'
83 match
1 0 'foo/bar' 'foo/**/**/bar'
84 match
0 0 'foo/bar' 'foo?bar'
85 match
0 0 'foo/bar' 'foo[/]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' '[!]-]'
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'
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:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
140 match
1 x
'.' '[^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:lower:][:space:][:upper:][:xdigit:]]'
141 match
1 x
'5' '[a-c[:digit:]x-z]'
142 match
1 x
'b' '[a-c[:digit:]x-z]'
143 match
1 x
'y' '[a-c[:digit:]x-z]'
144 match
0 x
'q' '[a-c[:digit:]x-z]'
146 # Additional tests, including some malformed wildmats
147 match
1 x
']' '[\\-^]'
148 match
0 0 '[' '[\\-^]'
149 match
1 x
'-' '[\-_]'
151 match
0 0 '\]' '[\]]'
153 match 0 0 'ab
' 'a
[]b
'
154 match 0 x 'a
[]b
' 'a
[]b
'
155 match 0 x 'ab
[' 'ab
['
161 match 1 x '-' '[--A]'
162 match 1 x '5' '[--A]'
163 match 1 1 ' ' '[ --]'
164 match 1 1 '$
' '[ --]'
165 match 1 1 '-' '[ --]'
166 match 0 0 '0' '[ --]'
167 match 1 x '-' '[---]'
168 match 1 x '-' '[------]'
169 match 0 0 'j
' '[a-e-n
]'
170 match 1 x '-' '[a-e-n
]'
171 match 1 x 'a
' '[!------]'
172 match 0 0 '[' '[]-a]'
173 match 1 x '^
' '[]-a]'
174 match 0 0 '^
' '[!]-a]'
175 match 1 x '[' '[!]-a]'
176 match 1 1 '^
' '[a^
bc]'
177 match 1 x '-b]' '[a-
]b
]'
180 match 0 0 '\' '[!\\]'
181 match
1 1 'G' '[A-\\]'
182 match
0 0 'aaabbb' 'b*a'
183 match
0 0 'aabcaa' '*ba*'
185 match
1 1 ',' '[\\,]'
186 match
1 1 '\' '[\\,]'
187 match 1 1 '-' '[,-.
]'
188 match 0 0 '+' '[,-.
]'
189 match 0 0 '-.
]' '[,-.
]'
190 match 1 1 '2' '[\
1-\
3]'
191 match 1 1 '3' '[\
1-\
3]'
192 match 0 0 '4' '[\
1-\
3]'
193 match 1 1 '\' '[[-\]]'
194 match
1 1 '[' '[[-\]]'
195 match
1 1 ']' '[[-\]]'
196 match
0 0 '-' '[[-\]]'
198 # Test recursion and the abort code (use "wildtest -i" to see iteration counts)
199 match
1 1 '-adobe-courier-bold-o-normal--12-120-75-75-m-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
200 match
0 0 '-adobe-courier-bold-o-normal--12-120-75-75-X-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
201 match
0 0 '-adobe-courier-bold-o-normal--12-120-75-75-/-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
202 match
1 1 'XXX/adobe/courier/bold/o/normal//12/120/75/75/m/70/iso8859/1' 'XXX/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
203 match
0 0 'XXX/adobe/courier/bold/o/normal//12/120/75/75/X/70/iso8859/1' 'XXX/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
204 match
1 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txt' '**/*a*b*g*n*t'
205 match
0 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txtz' '**/*a*b*g*n*t'
206 match
0 x foo
'*/*/*'
207 match
0 x foo
/bar
'*/*/*'
208 match
1 x foo
/bba
/arr
'*/*/*'
209 match
0 x foo
/bb
/aa
/rr
'*/*/*'
210 match
1 x foo
/bb
/aa
/rr
'**/**/**'
211 match
1 x abcXdefXghi
'*X*i'
212 match
0 x ab
/cXd
/efXg
/hi
'*X*i'
213 match
1 x ab
/cXd
/efXg
/hi
'*/*X*/*/*i'
214 match
1 x ab
/cXd
/efXg
/hi
'**/*X*/**/*i'
218 pathmatch
1 foo
/bar foo
/bar
219 pathmatch
1 foo
/bar
'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**'
224 pathmatch
1 foo
/bba
/arr
'foo/*arr'
225 pathmatch
1 foo
/bba
/arr
'foo/**arr'
226 pathmatch
0 foo
/bba
/arr
'foo/*z'
227 pathmatch
0 foo
/bba
/arr
'foo/**z'
228 pathmatch
1 foo
/bar
'foo?bar'
229 pathmatch
1 foo
/bar
'foo[/]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'