]> git.ipfire.org Git - thirdparty/git.git/blob - t/t3070-wildmatch.sh
t3070: disable unreliable fnmatch tests
[thirdparty/git.git] / t / t3070-wildmatch.sh
1 #!/bin/sh
2
3 test_description='wildmatch tests'
4
5 . ./test-lib.sh
6
7 match() {
8 if [ $1 = 1 ]; then
9 test_expect_success "wildmatch: match '$3' '$4'" "
10 test-wildmatch wildmatch '$3' '$4'
11 "
12 else
13 test_expect_success "wildmatch: no match '$3' '$4'" "
14 ! test-wildmatch wildmatch '$3' '$4'
15 "
16 fi
17 if [ $2 = 1 ]; then
18 test_expect_success "fnmatch: match '$3' '$4'" "
19 test-wildmatch fnmatch '$3' '$4'
20 "
21 elif [ $2 = 0 ]; then
22 test_expect_success "fnmatch: no match '$3' '$4'" "
23 ! test-wildmatch fnmatch '$3' '$4'
24 "
25 # else
26 # test_expect_success BROKEN_FNMATCH "fnmatch: '$3' '$4'" "
27 # ! test-wildmatch fnmatch '$3' '$4'
28 # "
29 fi
30 }
31
32 # Basic wildmat features
33 match 1 1 foo foo
34 match 0 0 foo bar
35 match 1 1 '' ""
36 match 1 1 foo '???'
37 match 0 0 foo '??'
38 match 1 1 foo '*'
39 match 1 1 foo 'f*'
40 match 0 0 foo '*f'
41 match 1 1 foo '*foo*'
42 match 1 1 foobar '*ob*a*r*'
43 match 1 1 aaaaaaabababab '*ab'
44 match 1 1 'foo*' 'foo\*'
45 match 0 0 foobar 'foo\*bar'
46 match 1 1 'f\oo' 'f\\oo'
47 match 1 1 ball '*[al]?'
48 match 0 0 ten '[ten]'
49 match 1 1 ten '**[!te]'
50 match 0 0 ten '**[!ten]'
51 match 1 1 ten 't[a-g]n'
52 match 0 0 ten 't[!a-g]n'
53 match 1 1 ton 't[!a-g]n'
54 match 1 1 ton 't[^a-g]n'
55 match 1 x 'a]b' 'a[]]b'
56 match 1 x a-b 'a[]-]b'
57 match 1 x 'a]b' 'a[]-]b'
58 match 0 x aab 'a[]-]b'
59 match 1 x aab 'a[]a-]b'
60 match 1 1 ']' ']'
61
62 # Extended slash-matching features
63 match 0 0 'foo/baz/bar' 'foo*bar'
64 match 1 0 'foo/baz/bar' 'foo**bar'
65 match 0 0 'foo/bar' 'foo?bar'
66 match 0 0 'foo/bar' 'foo[/]bar'
67 match 0 0 'foo/bar' 'f[^eiu][^eiu][^eiu][^eiu][^eiu]r'
68 match 1 1 'foo-bar' 'f[^eiu][^eiu][^eiu][^eiu][^eiu]r'
69 match 0 0 'foo' '**/foo'
70 match 1 x '/foo' '**/foo'
71 match 1 0 'bar/baz/foo' '**/foo'
72 match 0 0 'bar/baz/foo' '*/foo'
73 match 0 0 'foo/bar/baz' '**/bar*'
74 match 1 0 'deep/foo/bar/baz' '**/bar/*'
75 match 0 0 'deep/foo/bar/baz/' '**/bar/*'
76 match 1 0 'deep/foo/bar/baz/' '**/bar/**'
77 match 0 0 'deep/foo/bar' '**/bar/*'
78 match 1 0 'deep/foo/bar/' '**/bar/**'
79 match 1 0 'foo/bar/baz' '**/bar**'
80 match 1 0 'foo/bar/baz/x' '*/bar/**'
81 match 0 0 'deep/foo/bar/baz/x' '*/bar/**'
82 match 1 0 'deep/foo/bar/baz/x' '**/bar/*/*'
83
84 # Various additional tests
85 match 0 0 'acrt' 'a[c-c]st'
86 match 1 1 'acrt' 'a[c-c]rt'
87 match 0 0 ']' '[!]-]'
88 match 1 x 'a' '[!]-]'
89 match 0 0 '' '\'
90 match 0 x '\' '\'
91 match 0 x '/\' '*/\'
92 match 1 x '/\' '*/\\'
93 match 1 1 'foo' 'foo'
94 match 1 1 '@foo' '@foo'
95 match 0 0 'foo' '@foo'
96 match 1 1 '[ab]' '\[ab]'
97 match 1 1 '[ab]' '[[]ab]'
98 match 1 x '[ab]' '[[:]ab]'
99 match 0 x '[ab]' '[[::]ab]'
100 match 1 x '[ab]' '[[:digit]ab]'
101 match 1 x '[ab]' '[\[:]ab]'
102 match 1 1 '?a?b' '\??\?b'
103 match 1 1 'abc' '\a\b\c'
104 match 0 0 'foo' ''
105 match 1 0 'foo/bar/baz/to' '**/t[o]'
106
107 # Character class tests
108 match 1 x 'a1B' '[[:alpha:]][[:digit:]][[:upper:]]'
109 match 0 x 'a' '[[:digit:][:upper:][:space:]]'
110 match 1 x 'A' '[[:digit:][:upper:][:space:]]'
111 match 1 x '1' '[[:digit:][:upper:][:space:]]'
112 match 0 x '1' '[[:digit:][:upper:][:spaci:]]'
113 match 1 x ' ' '[[:digit:][:upper:][:space:]]'
114 match 0 x '.' '[[:digit:][:upper:][:space:]]'
115 match 1 x '.' '[[:digit:][:punct:][:space:]]'
116 match 1 1 '5' '[[:xdigit:]]'
117 match 1 1 'f' '[[:xdigit:]]'
118 match 1 1 'D' '[[:xdigit:]]'
119 match 1 x '_' '[[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
120 match 1 x '_' '[[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]'
121 match 1 x '.' '[^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:lower:][:space:][:upper:][:xdigit:]]'
122 match 1 x '5' '[a-c[:digit:]x-z]'
123 match 1 x 'b' '[a-c[:digit:]x-z]'
124 match 1 x 'y' '[a-c[:digit:]x-z]'
125 match 0 x 'q' '[a-c[:digit:]x-z]'
126
127 # Additional tests, including some malformed wildmats
128 match 1 x ']' '[\\-^]'
129 match 0 0 '[' '[\\-^]'
130 match 1 x '-' '[\-_]'
131 match 1 x ']' '[\]]'
132 match 0 0 '\]' '[\]]'
133 match 0 0 '\' '[\]]'
134 match 0 0 'ab' 'a[]b'
135 match 0 x 'a[]b' 'a[]b'
136 match 0 x 'ab[' 'ab['
137 match 0 0 'ab' '[!'
138 match 0 0 'ab' '[-'
139 match 1 1 '-' '[-]'
140 match 0 0 '-' '[a-'
141 match 0 0 '-' '[!a-'
142 match 1 x '-' '[--A]'
143 match 1 x '5' '[--A]'
144 match 1 1 ' ' '[ --]'
145 match 1 1 '$' '[ --]'
146 match 1 1 '-' '[ --]'
147 match 0 0 '0' '[ --]'
148 match 1 x '-' '[---]'
149 match 1 x '-' '[------]'
150 match 0 0 'j' '[a-e-n]'
151 match 1 x '-' '[a-e-n]'
152 match 1 x 'a' '[!------]'
153 match 0 0 '[' '[]-a]'
154 match 1 x '^' '[]-a]'
155 match 0 0 '^' '[!]-a]'
156 match 1 x '[' '[!]-a]'
157 match 1 1 '^' '[a^bc]'
158 match 1 x '-b]' '[a-]b]'
159 match 0 0 '\' '[\]'
160 match 1 1 '\' '[\\]'
161 match 0 0 '\' '[!\\]'
162 match 1 1 'G' '[A-\\]'
163 match 0 0 'aaabbb' 'b*a'
164 match 0 0 'aabcaa' '*ba*'
165 match 1 1 ',' '[,]'
166 match 1 1 ',' '[\\,]'
167 match 1 1 '\' '[\\,]'
168 match 1 1 '-' '[,-.]'
169 match 0 0 '+' '[,-.]'
170 match 0 0 '-.]' '[,-.]'
171 match 1 1 '2' '[\1-\3]'
172 match 1 1 '3' '[\1-\3]'
173 match 0 0 '4' '[\1-\3]'
174 match 1 1 '\' '[[-\]]'
175 match 1 1 '[' '[[-\]]'
176 match 1 1 ']' '[[-\]]'
177 match 0 0 '-' '[[-\]]'
178
179 # Test recursion and the abort code (use "wildtest -i" to see iteration counts)
180 match 1 1 '-adobe-courier-bold-o-normal--12-120-75-75-m-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
181 match 0 0 '-adobe-courier-bold-o-normal--12-120-75-75-X-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
182 match 0 0 '-adobe-courier-bold-o-normal--12-120-75-75-/-70-iso8859-1' '-*-*-*-*-*-*-12-*-*-*-m-*-*-*'
183 match 1 1 '/adobe/courier/bold/o/normal//12/120/75/75/m/70/iso8859/1' '/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
184 match 0 0 '/adobe/courier/bold/o/normal//12/120/75/75/X/70/iso8859/1' '/*/*/*/*/*/*/12/*/*/*/m/*/*/*'
185 match 1 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txt' '**/*a*b*g*n*t'
186 match 0 0 'abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txtz' '**/*a*b*g*n*t'
187
188 test_done