Updated for latest character-class change.
[rsync/rsync.git] / wildtest.txt
1 # Input is in the following format (all items white-space separated):
2 #
3 # The first two items are 1 or 0 indicating if the wildmat call is expected to
4 # succeed and if fnmatch works the same way as wildmat, respectively.  After
5 # that is a text string for the match, and a pattern string.  Strings can be
6 # quoted (if desired) in either double or single quotes, as well as backticks.
7 #
8 # MATCH FNMATCH_SAME "text to match" 'pattern to use'
9
10 # Basic wildmat features
11 1 1 foo                 foo
12 0 1 foo                 bar
13 1 1 ''                  ""
14 1 1 foo                 ???
15 0 1 foo                 ??
16 1 1 foo                 *
17 1 1 foo                 f*
18 0 1 foo                 *f
19 1 1 foo                 *foo*
20 1 1 foobar              *ob*a*r*
21 1 1 aaaaaaabababab      *ab
22 1 1 foo*                foo\*
23 0 1 foobar              foo\*bar
24 1 1 f\oo                f\\oo
25 1 1 ball                *[al]?
26 0 1 ten                 [ten]
27 1 1 ten                 **[!te]
28 0 1 ten                 **[!ten]
29 1 1 ten                 t[a-g]n
30 0 1 ten                 t[!a-g]n
31 1 1 ton                 t[!a-g]n
32 1 1 ton                 t[^a-g]n
33 1 1 a]b                 a[]]b
34 1 1 a-b                 a[]-]b
35 1 1 a]b                 a[]-]b
36 0 1 aab                 a[]-]b
37 1 1 aab                 a[]a-]b
38 1 1 ]                   ]
39
40 # Extended slash-matching features
41 0 1 foo/baz/bar         foo*bar
42 1 1 foo/baz/bar         foo**bar
43 0 1 foo/bar             foo?bar
44 0 0 foo/bar             foo[/]bar
45 0 0 foo/bar             f[^eiu][^eiu][^eiu][^eiu][^eiu]r
46 0 1 foo                 **/foo
47 1 1 /foo                **/foo
48 1 1 bar/baz/foo         **/foo
49 0 1 bar/baz/foo         */foo
50 0 0 foo/bar/baz         **/bar*
51 1 1 deep/foo/bar/baz    **/bar/*
52 1 1 foo/bar/baz         **/bar**
53 1 1 foo/bar/baz/x       */bar/**
54 0 0 deep/foo/bar/baz/x  */bar/**
55 1 1 deep/foo/bar/baz/x  **/bar/*/*
56
57 # Various additional tests
58 0 1 acrt                a[c-c]st
59 1 1 acrt                a[c-c]rt
60 0 1 ]                   [!]-]
61 1 1 a                   [!]-]
62 0 1 ''                  \
63 0 1 \                   \
64 0 1 /\                  */\
65 1 1 /\                  */\\
66 1 1 foo                 foo
67 1 1 @foo                @foo
68 0 1 foo                 @foo
69 1 1 [ab]                \[ab]
70 1 1 [ab]                [[]ab]
71 1 1 [ab]                [[:]ab]
72 0 1 [ab]                [[::]ab]
73 1 1 [ab]                [[:digit]ab]
74 1 1 [ab]                [\[:]ab]
75 1 1 ?a?b                \??\?b
76 1 1 abc                 \a\b\c
77 0 1 foo                 ''
78 1 1 foo/bar/baz/to      **/t[o]
79
80 # Character class tests
81 1 1 a1B         [[:alpha:]][[:digit:]][[:upper:]]
82 0 1 a           [[:digit:][:upper:][:space:]]
83 1 1 A           [[:digit:][:upper:][:space:]]
84 1 1 1           [[:digit:][:upper:][:space:]]
85 0 1 1           [[:digit:][:upper:][:spaci:]]
86 1 1 ' '         [[:digit:][:upper:][:space:]]
87 0 1 .           [[:digit:][:upper:][:space:]]
88 1 1 .           [[:digit:][:punct:][:space:]]
89 1 1 5           [[:xdigit:]]
90 1 1 f           [[:xdigit:]]
91 1 1 D           [[:xdigit:]]
92 1 1 _           [[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]
93 #1 1 \85          [^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]
94 1 1 \7f           [^[:alnum:][:alpha:][:blank:][:digit:][:graph:][:lower:][:print:][:punct:][:space:][:upper:][:xdigit:]]
95 1 1 .           [^[:alnum:][:alpha:][:blank:][:cntrl:][:digit:][:lower:][:space:][:upper:][:xdigit:]]
96 1 1 5           [a-c[:digit:]x-z]
97 1 1 b           [a-c[:digit:]x-z]
98 1 1 y           [a-c[:digit:]x-z]
99 0 1 q           [a-c[:digit:]x-z]
100
101 # Additional tests, including some malformed wildmats
102 1 1 ]           [\\-^]
103 0 1 [           [\\-^]
104 1 1 -           [\-_]
105 1 1 ]           [\]]
106 0 1 \]          [\]]
107 0 1 \           [\]]
108 0 1 ab          a[]b
109 0 1 a[]b        a[]b
110 0 1 ab[         ab[
111 0 1 ab          [!
112 0 1 ab          [-
113 1 1 -           [-]
114 0 1 -           [a-
115 0 1 -           [!a-
116 1 1 -           [--A]
117 1 1 5           [--A]
118 1 1 ' '         '[ --]'
119 1 1 $           '[ --]'
120 1 1 -           '[ --]'
121 0 1 0           '[ --]'
122 1 1 -           [---]
123 1 1 -           [------]
124 0 1 j           [a-e-n]
125 1 1 -           [a-e-n]
126 1 1 a           [!------]
127 0 1 [           []-a]
128 1 1 ^           []-a]
129 0 1 ^           [!]-a]
130 1 1 [           [!]-a]
131 1 1 ^           [a^bc]
132 1 1 -b]         [a-]b]
133 0 1 \           [\]
134 1 1 \           [\\]
135 0 1 \           [!\\]
136 1 1 G           [A-\\]
137 0 1 aaabbb      b*a
138 0 1 aabcaa      *ba*
139 1 1 ,           [,]
140 1 1 ,           [\\,]
141 1 1 \           [\\,]
142 1 1 -           [,-.]
143 0 1 +           [,-.]
144 0 1 -.]         [,-.]
145 1 1 2           [\1-\3]
146 1 1 3           [\1-\3]
147 0 1 4           [\1-\3]
148 1 1 \           [[-\]]
149 1 1 [           [[-\]]
150 1 1 ]           [[-\]]
151 0 1 -           [[-\]]
152
153 # Test recursion and the abort code (use "wildtest -i" to see iteration counts)
154 1 1 -adobe-courier-bold-o-normal--12-120-75-75-m-70-iso8859-1   -*-*-*-*-*-*-12-*-*-*-m-*-*-*
155 0 1 -adobe-courier-bold-o-normal--12-120-75-75-X-70-iso8859-1   -*-*-*-*-*-*-12-*-*-*-m-*-*-*
156 0 1 -adobe-courier-bold-o-normal--12-120-75-75-/-70-iso8859-1   -*-*-*-*-*-*-12-*-*-*-m-*-*-*
157 1 1 /adobe/courier/bold/o/normal//12/120/75/75/m/70/iso8859/1   /*/*/*/*/*/*/12/*/*/*/m/*/*/*
158 0 1 /adobe/courier/bold/o/normal//12/120/75/75/X/70/iso8859/1   /*/*/*/*/*/*/12/*/*/*/m/*/*/*
159 1 1 abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txt               **/*a*b*g*n*t
160 0 1 abcd/abcdefg/abcdefghijk/abcdefghijklmnop.txtz              **/*a*b*g*n*t