4763.2.4
by John Arbash Meinel
merge bzr.2.1 in preparation for NEWS entry. |
1 |
# Copyright (C) 2006-2010 Canonical Ltd
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
2 |
# -*- coding: utf-8 -*-
|
3 |
#
|
|
4 |
# This program is free software; you can redistribute it and/or modify
|
|
5 |
# it under the terms of the GNU General Public License as published by
|
|
6 |
# the Free Software Foundation; either version 2 of the License, or
|
|
7 |
# (at your option) any later version.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful,
|
|
10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
# GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License
|
|
15 |
# along with this program; if not, write to the Free Software
|
|
4183.7.1
by Sabin Iacob
update FSF mailing address |
16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
17 |
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
18 |
from bzrlib.globbing import ( |
19 |
Globster, |
|
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
20 |
ExceptionGlobster, |
3398.1.2
by Ian Clatworthy
add tests for _OrderedGlobster |
21 |
_OrderedGlobster, |
4792.4.1
by Gordon Tyler
Fixed globbing.normalize_pattern to not strip '/' down to '' and normalize multiple slashes. |
22 |
normalize_pattern
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
23 |
)
|
24 |
from bzrlib.tests import ( |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
25 |
TestCase, |
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
26 |
TestCaseInTempDir, |
27 |
)
|
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
28 |
|
29 |
||
30 |
class TestGlobster(TestCase): |
|
31 |
||
32 |
def assertMatch(self, matchset, glob_prefix=None): |
|
33 |
for glob, positive, negative in matchset: |
|
34 |
if glob_prefix: |
|
35 |
glob = glob_prefix + glob |
|
36 |
globster = Globster([glob]) |
|
37 |
for name in positive: |
|
38 |
self.failUnless(globster.match(name), repr( |
|
39 |
u'name "%s" does not match glob "%s" (re=%s)' % |
|
40 |
(name, glob, globster._regex_patterns[0][0].pattern))) |
|
41 |
for name in negative: |
|
42 |
self.failIf(globster.match(name), repr( |
|
43 |
u'name "%s" does match glob "%s" (re=%s)' % |
|
44 |
(name, glob, globster._regex_patterns[0][0].pattern))) |
|
45 |
||
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
46 |
def assertMatchBasenameAndFullpath(self, matchset): |
47 |
# test basename matcher
|
|
48 |
self.assertMatch(matchset) |
|
49 |
# test fullpath matcher
|
|
50 |
self.assertMatch(matchset, glob_prefix='./') |
|
51 |
||
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
52 |
def test_char_group_digit(self): |
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
53 |
self.assertMatchBasenameAndFullpath([ |
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
54 |
# The definition of digit this uses includes arabic digits from
|
55 |
# non-latin scripts (arabic, indic, etc.) and subscript/superscript
|
|
56 |
# digits, but neither roman numerals nor vulgar fractions.
|
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
57 |
(u'[[:digit:]]', |
58 |
[u'0', u'5', u'\u0663', u'\u06f9', u'\u0f21', u'\xb9'], |
|
59 |
[u'T', u'q', u' ', u'\u8336', u'.']), |
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
60 |
(u'[^[:digit:]]', |
61 |
[u'T', u'q', u' ', u'\u8336', u'.'], |
|
62 |
[u'0', u'5', u'\u0663', u'\u06f9', u'\u0f21', u'\xb9']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
63 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
64 |
|
65 |
def test_char_group_space(self): |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
66 |
self.assertMatchBasenameAndFullpath([ |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
67 |
(u'[[:space:]]', |
68 |
[u' ', u'\t', u'\n', u'\xa0', u'\u2000', u'\u2002'], |
|
69 |
[u'a', u'-', u'\u8336', u'.']), |
|
70 |
(u'[^[:space:]]', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
71 |
[u'a', u'-', u'\u8336', u'.'], |
72 |
[u' ', u'\t', u'\n', u'\xa0', u'\u2000', u'\u2002']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
73 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
74 |
|
75 |
def test_char_group_alnum(self): |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
76 |
self.assertMatchBasenameAndFullpath([ |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
77 |
(u'[[:alnum:]]', |
78 |
[u'a', u'Z', u'\u017e', u'\u8336'], |
|
79 |
[u':', u'-', u'\u25cf', u'.']), |
|
80 |
(u'[^[:alnum:]]', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
81 |
[u':', u'-', u'\u25cf', u'.'], |
82 |
[u'a']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
83 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
84 |
|
85 |
def test_char_group_ascii(self): |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
86 |
self.assertMatchBasenameAndFullpath([ |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
87 |
(u'[[:ascii:]]', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
88 |
[u'a', u'Q', u'^', u'.'], |
89 |
[u'\xcc', u'\u8336']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
90 |
(u'[^[:ascii:]]', |
91 |
[u'\xcc', u'\u8336'], |
|
92 |
[u'a', u'Q', u'^', u'.']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
93 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
94 |
|
95 |
def test_char_group_blank(self): |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
96 |
self.assertMatchBasenameAndFullpath([ |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
97 |
(u'[[:blank:]]', |
98 |
[u'\t'], |
|
99 |
[u'x', u'y', u'z', u'.']), |
|
100 |
(u'[^[:blank:]]', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
101 |
[u'x', u'y', u'z', u'.'], |
102 |
[u'\t']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
103 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
104 |
|
105 |
def test_char_group_cntrl(self): |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
106 |
self.assertMatchBasenameAndFullpath([ |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
107 |
(u'[[:cntrl:]]', |
108 |
[u'\b', u'\t', '\x7f'], |
|
109 |
[u'a', u'Q', u'\u8336', u'.']), |
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
110 |
(u'[^[:cntrl:]]', |
111 |
[u'a', u'Q', u'\u8336', u'.'], |
|
112 |
[u'\b', u'\t', '\x7f']), |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
113 |
])
|
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
114 |
|
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
115 |
def test_char_group_range(self): |
116 |
self.assertMatchBasenameAndFullpath([ |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
117 |
(u'[a-z]', |
118 |
[u'a', u'q', u'f'], |
|
119 |
[u'A', u'Q', u'F']), |
|
2298.8.2
by Kent Gibson
Review fixes for lp86451 patch. |
120 |
(u'[^a-z]', |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
121 |
[u'A', u'Q', u'F'], |
122 |
[u'a', u'q', u'f']), |
|
123 |
(u'[!a-z]foo', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
124 |
[u'Afoo', u'.foo'], |
125 |
[u'afoo', u'ABfoo']), |
|
2298.8.2
by Kent Gibson
Review fixes for lp86451 patch. |
126 |
(u'foo[!a-z]bar', |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
127 |
[u'fooAbar', u'foo.bar'], |
128 |
[u'foojbar']), |
|
2298.8.2
by Kent Gibson
Review fixes for lp86451 patch. |
129 |
(u'[\x20-\x30\u8336]', |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
130 |
[u'\040', u'\044', u'\u8336'], |
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
131 |
[u'\x1f']), |
2298.8.2
by Kent Gibson
Review fixes for lp86451 patch. |
132 |
(u'[^\x20-\x30\u8336]', |
2135.2.7
by Kent Gibson
Implement JAM's review suggestions. |
133 |
[u'\x1f'], |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
134 |
[u'\040', u'\044', u'\u8336']), |
2135.2.8
by Kent Gibson
Add helper method to simplify test_char_group cases. |
135 |
])
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
136 |
|
137 |
def test_regex(self): |
|
138 |
self.assertMatch([ |
|
2298.8.2
by Kent Gibson
Review fixes for lp86451 patch. |
139 |
(u'RE:(a|b|c+)', |
140 |
[u'a', u'b', u'ccc'], |
|
141 |
[u'd', u'aa', u'c+', u'-a']), |
|
142 |
(u'RE:(?:a|b|c+)', |
|
143 |
[u'a', u'b', u'ccc'], |
|
144 |
[u'd', u'aa', u'c+', u'-a']), |
|
145 |
(u'RE:(?P<a>.)(?P=a)', |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
146 |
[u'a'], |
147 |
[u'ab', u'aa', u'aaa']), |
|
2298.8.1
by Kent Gibson
Normalise ignore patterns to use '/' path separator. |
148 |
# test we can handle odd numbers of trailing backslashes
|
149 |
(u'RE:a\\\\\\', |
|
150 |
[u'a\\'], |
|
151 |
[u'a', u'ab', u'aa', u'aaa']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
152 |
])
|
153 |
||
154 |
def test_question_mark(self): |
|
155 |
self.assertMatch([ |
|
156 |
(u'?foo', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
157 |
[u'xfoo', u'bar/xfoo', u'bar/\u8336foo', u'.foo', u'bar/.foo'], |
158 |
[u'bar/foo', u'foo']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
159 |
(u'foo?bar', |
160 |
[u'fooxbar', u'foo.bar', u'foo\u8336bar', u'qyzzy/foo.bar'], |
|
161 |
[u'foo/bar']), |
|
162 |
(u'foo/?bar', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
163 |
[u'foo/xbar', u'foo/\u8336bar', u'foo/.bar'], |
164 |
[u'foo/bar', u'bar/foo/xbar']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
165 |
])
|
166 |
||
167 |
def test_asterisk(self): |
|
168 |
self.assertMatch([ |
|
169 |
(u'x*x', |
|
170 |
[u'xx', u'x.x', u'x\u8336..x', u'\u8336/x.x', u'x.y.x'], |
|
171 |
[u'x/x', u'bar/x/bar/x', u'bax/abaxab']), |
|
172 |
(u'foo/*x', |
|
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
173 |
[u'foo/x', u'foo/bax', u'foo/a.x', u'foo/.x', u'foo/.q.x'], |
174 |
[u'foo/bar/bax']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
175 |
(u'*/*x', |
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
176 |
[u'\u8336/x', u'foo/x', u'foo/bax', u'x/a.x', u'.foo/x', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
177 |
u'\u8336/.x', u'foo/.q.x'], |
178 |
[u'foo/bar/bax']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
179 |
(u'f*', |
180 |
[u'foo', u'foo.bar'], |
|
181 |
[u'.foo', u'foo/bar', u'foo/.bar']), |
|
182 |
(u'*bar', |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
183 |
[u'bar', u'foobar', ur'foo\nbar', u'foo.bar', u'foo/bar', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
184 |
u'foo/foobar', u'foo/f.bar', u'.bar', u'foo/.bar'], |
185 |
[]),
|
|
186 |
])
|
|
187 |
||
188 |
def test_double_asterisk(self): |
|
189 |
self.assertMatch([ |
|
190 |
# expected uses of double asterisk
|
|
191 |
(u'foo/**/x', |
|
192 |
[u'foo/x', u'foo/bar/x'], |
|
193 |
[u'foox', u'foo/bax', u'foo/.x', u'foo/bar/bax']), |
|
194 |
(u'**/bar', |
|
195 |
[u'bar', u'foo/bar'], |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
196 |
[u'foobar', u'foo.bar', u'foo/foobar', u'foo/f.bar', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
197 |
u'.bar', u'foo/.bar']), |
198 |
# check that we ignore extra *s, so *** is treated like ** not *.
|
|
199 |
(u'foo/***/x', |
|
200 |
[u'foo/x', u'foo/bar/x'], |
|
201 |
[u'foox', u'foo/bax', u'foo/.x', u'foo/bar/bax']), |
|
202 |
(u'***/bar', |
|
203 |
[u'bar', u'foo/bar'], |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
204 |
[u'foobar', u'foo.bar', u'foo/foobar', u'foo/f.bar', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
205 |
u'.bar', u'foo/.bar']), |
206 |
# the remaining tests check that ** is interpreted as *
|
|
207 |
# unless it is a whole path component
|
|
208 |
(u'x**/x', |
|
209 |
[u'x\u8336/x', u'x/x'], |
|
210 |
[u'xx', u'x.x', u'bar/x/bar/x', u'x.y.x', u'x/y/x']), |
|
211 |
(u'x**x', |
|
212 |
[u'xx', u'x.x', u'x\u8336..x', u'foo/x.x', u'x.y.x'], |
|
213 |
[u'bar/x/bar/x', u'xfoo/bar/x', u'x/x', u'bax/abaxab']), |
|
214 |
(u'foo/**x', |
|
215 |
[u'foo/x', u'foo/bax', u'foo/a.x', u'foo/.x', u'foo/.q.x'], |
|
216 |
[u'foo/bar/bax']), |
|
217 |
(u'f**', |
|
218 |
[u'foo', u'foo.bar'], |
|
219 |
[u'.foo', u'foo/bar', u'foo/.bar']), |
|
220 |
(u'**bar', |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
221 |
[u'bar', u'foobar', ur'foo\nbar', u'foo.bar', u'foo/bar', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
222 |
u'foo/foobar', u'foo/f.bar', u'.bar', u'foo/.bar'], |
223 |
[]),
|
|
224 |
])
|
|
225 |
||
226 |
def test_leading_dot_slash(self): |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
227 |
self.assertMatch([ |
228 |
(u'./foo', |
|
229 |
[u'foo'], |
|
230 |
[u'\u8336/foo', u'barfoo', u'x/y/foo']), |
|
231 |
(u'./f*', |
|
232 |
[u'foo'], |
|
233 |
[u'foo/bar', u'foo/.bar', u'x/foo/y']), |
|
234 |
])
|
|
235 |
||
2298.8.1
by Kent Gibson
Normalise ignore patterns to use '/' path separator. |
236 |
def test_backslash(self): |
237 |
self.assertMatch([ |
|
238 |
(u'.\\foo', |
|
239 |
[u'foo'], |
|
240 |
[u'\u8336/foo', u'barfoo', u'x/y/foo']), |
|
241 |
(u'.\\f*', |
|
242 |
[u'foo'], |
|
243 |
[u'foo/bar', u'foo/.bar', u'x/foo/y']), |
|
244 |
(u'foo\\**\\x', |
|
245 |
[u'foo/x', u'foo/bar/x'], |
|
246 |
[u'foox', u'foo/bax', u'foo/.x', u'foo/bar/bax']), |
|
247 |
])
|
|
248 |
||
249 |
def test_trailing_slash(self): |
|
250 |
self.assertMatch([ |
|
251 |
(u'./foo/', |
|
252 |
[u'foo'], |
|
253 |
[u'\u8336/foo', u'barfoo', u'x/y/foo']), |
|
254 |
(u'.\\foo\\', |
|
255 |
[u'foo'], |
|
256 |
[u'foo/', u'\u8336/foo', u'barfoo', u'x/y/foo']), |
|
257 |
])
|
|
258 |
||
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
259 |
def test_leading_asterisk_dot(self): |
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
260 |
self.assertMatch([ |
261 |
(u'*.x', |
|
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
262 |
[u'foo/bar/baz.x', u'\u8336/Q.x', u'foo.y.x', u'.foo.x', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
263 |
u'bar/.foo.x', u'.x',], |
264 |
[u'foo.x.y']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
265 |
(u'foo/*.bar', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
266 |
[u'foo/b.bar', u'foo/a.b.bar', u'foo/.bar'], |
267 |
[u'foo/bar']), |
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
268 |
(u'*.~*', |
2135.2.2
by Kent Gibson
Ignore pattern matcher (glob.py) patches: |
269 |
[u'foo.py.~1~', u'.foo.py.~1~'], |
270 |
[]),
|
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
271 |
])
|
272 |
||
273 |
def test_end_anchor(self): |
|
274 |
self.assertMatch([ |
|
275 |
(u'*.333', |
|
276 |
[u'foo.333'], |
|
277 |
[u'foo.3']), |
|
278 |
(u'*.3', |
|
279 |
[u'foo.3'], |
|
280 |
[u'foo.333']), |
|
281 |
])
|
|
282 |
||
283 |
def test_mixed_globs(self): |
|
284 |
"""tests handling of combinations of path type matches.
|
|
285 |
||
286 |
The types being extension, basename and full path.
|
|
287 |
"""
|
|
288 |
patterns = [ u'*.foo', u'.*.swp', u'./*.png'] |
|
289 |
globster = Globster(patterns) |
|
290 |
self.assertEqual(u'*.foo', globster.match('bar.foo')) |
|
291 |
self.assertEqual(u'./*.png', globster.match('foo.png')) |
|
292 |
self.assertEqual(None, globster.match('foo/bar.png')) |
|
293 |
self.assertEqual(u'.*.swp', globster.match('foo/.bar.py.swp')) |
|
294 |
||
295 |
def test_large_globset(self): |
|
296 |
"""tests that the globster can handle a large set of patterns.
|
|
297 |
||
3943.8.1
by Marius Kruger
remove all trailing whitespace from bzr source |
298 |
Large is defined as more than supported by python regex groups,
|
2135.2.1
by Kent Gibson
Added glob module to replace broken fnmatch based ignore pattern matching (#57637) |
299 |
i.e. 99.
|
300 |
This test assumes the globs are broken into regexs containing 99
|
|
301 |
groups.
|
|
302 |
"""
|
|
303 |
patterns = [ u'*.%03d' % i for i in xrange(0,300) ] |
|
304 |
globster = Globster(patterns) |
|
305 |
# test the fence posts
|
|
306 |
for x in (0,98,99,197,198,296,297,299): |
|
307 |
filename = u'foo.%03d' % x |
|
308 |
self.assertEqual(patterns[x],globster.match(filename)) |
|
309 |
self.assertEqual(None,globster.match('foobar.300')) |
|
310 |
||
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
311 |
class TestExceptionGlobster(TestCase): |
4948.5.3
by John Whitley
Refactor the exclusion handling functionality out of |
312 |
|
313 |
def test_exclusion_patterns(self): |
|
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
314 |
"""test that exception patterns are not matched"""
|
4948.5.6
by John Whitley
A trial implementation of '!!' syntax for double-negative ignore exclusions. |
315 |
patterns = [ u'*', u'!./local', u'!./local/**/*', u'!RE:\.z.*',u'!!./.zcompdump' ] |
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
316 |
globster = ExceptionGlobster(patterns) |
4948.5.3
by John Whitley
Refactor the exclusion handling functionality out of |
317 |
self.assertEqual(u'*', globster.match('tmp/foo.txt')) |
318 |
self.assertEqual(None, globster.match('local')) |
|
319 |
self.assertEqual(None, globster.match('local/bin/wombat')) |
|
320 |
self.assertEqual(None, globster.match('.zshrc')) |
|
321 |
self.assertEqual(None, globster.match('.zfunctions/fiddle/flam')) |
|
4948.5.6
by John Whitley
A trial implementation of '!!' syntax for double-negative ignore exclusions. |
322 |
self.assertEqual(u'!!./.zcompdump', globster.match('.zcompdump')) |
4948.5.3
by John Whitley
Refactor the exclusion handling functionality out of |
323 |
|
324 |
def test_exclusion_order(self): |
|
325 |
"""test that ordering of exclusion patterns does not matter"""
|
|
326 |
patterns = [ u'static/**/*.html', u'!static/**/versionable.html'] |
|
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
327 |
globster = ExceptionGlobster(patterns) |
4948.5.3
by John Whitley
Refactor the exclusion handling functionality out of |
328 |
self.assertEqual(u'static/**/*.html', globster.match('static/foo.html')) |
329 |
self.assertEqual(None, globster.match('static/versionable.html')) |
|
330 |
self.assertEqual(None, globster.match('static/bar/versionable.html')) |
|
4948.5.7
by John Whitley
Terminology change: exclusion => exception. |
331 |
globster = ExceptionGlobster(reversed(patterns)) |
4948.5.3
by John Whitley
Refactor the exclusion handling functionality out of |
332 |
self.assertEqual(u'static/**/*.html', globster.match('static/foo.html')) |
333 |
self.assertEqual(None, globster.match('static/versionable.html')) |
|
334 |
self.assertEqual(None, globster.match('static/bar/versionable.html')) |
|
3398.1.2
by Ian Clatworthy
add tests for _OrderedGlobster |
335 |
|
336 |
class TestOrderedGlobster(TestCase): |
|
337 |
||
338 |
def test_ordered_globs(self): |
|
339 |
"""test that the first match in a list is the one found"""
|
|
340 |
patterns = [ u'*.foo', u'bar.*'] |
|
341 |
globster = _OrderedGlobster(patterns) |
|
342 |
self.assertEqual(u'*.foo', globster.match('bar.foo')) |
|
343 |
self.assertEqual(None, globster.match('foo.bar')) |
|
344 |
globster = _OrderedGlobster(reversed(patterns)) |
|
345 |
self.assertEqual(u'bar.*', globster.match('bar.foo')) |
|
346 |
self.assertEqual(None, globster.match('foo.bar')) |
|
4792.4.1
by Gordon Tyler
Fixed globbing.normalize_pattern to not strip '/' down to '' and normalize multiple slashes. |
347 |
|
348 |
||
349 |
class TestNormalizePattern(TestCase): |
|
350 |
||
351 |
def test_backslashes(self): |
|
352 |
"""tests that backslashes are converted to forward slashes, multiple
|
|
353 |
backslashes are collapsed to single forward slashes and trailing
|
|
354 |
backslashes are removed"""
|
|
355 |
self.assertEqual(u'/', normalize_pattern(u'\\')) |
|
356 |
self.assertEqual(u'/', normalize_pattern(u'\\\\')) |
|
357 |
self.assertEqual(u'/foo/bar', normalize_pattern(u'\\foo\\bar')) |
|
358 |
self.assertEqual(u'foo/bar', normalize_pattern(u'foo\\bar\\')) |
|
359 |
self.assertEqual(u'/foo/bar', normalize_pattern(u'\\\\foo\\\\bar\\\\')) |
|
360 |
||
361 |
def test_forward_slashes(self): |
|
362 |
"""tests that multiple foward slashes are collapsed to single forward
|
|
363 |
slashes and trailing forward slashes are removed"""
|
|
364 |
self.assertEqual(u'/', normalize_pattern(u'/')) |
|
365 |
self.assertEqual(u'/', normalize_pattern(u'//')) |
|
366 |
self.assertEqual(u'/foo/bar', normalize_pattern(u'/foo/bar')) |
|
367 |
self.assertEqual(u'foo/bar', normalize_pattern(u'foo/bar/')) |
|
368 |
self.assertEqual(u'/foo/bar', normalize_pattern(u'//foo//bar//')) |
|
369 |
||
370 |
def test_mixed_slashes(self): |
|
371 |
"""tests that multiple mixed slashes are collapsed to single forward
|
|
372 |
slashes and trailing mixed slashes are removed"""
|
|
373 |
self.assertEqual(u'/foo/bar', normalize_pattern(u'\\/\\foo//\\///bar/\\\\/')) |