Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 2001 Matthias Clasen <matthiasc@poet.de>
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #undef G_DISABLE_ASSERT
26 #include "mrt2_glib2_test.h"
27 #endif /*__SYMBIAN32__*/
30 static gboolean noisy = FALSE;
33 verbose (const gchar *format, ...)
38 va_start (args, format);
39 msg = g_strdup_vprintf (format, args);
47 /* keep enum and structure of gpattern.c and patterntest.c in sync */
50 G_MATCH_ALL, /* "*A?A*" */
51 G_MATCH_ALL_TAIL, /* "*A?AA" */
52 G_MATCH_HEAD, /* "AAAA*" */
53 G_MATCH_TAIL, /* "*AAAA" */
54 G_MATCH_EXACT, /* "AAAAA" */
60 GMatchType match_type;
69 match_type_name (GMatchType match_type)
76 case G_MATCH_ALL_TAIL:
77 return "G_MATCH_ALL_TAIL";
80 return "G_MATCH_HEAD";
83 return "G_MATCH_TAIL";
86 return "G_MATCH_EXACT";
89 return "unknown GMatchType";
95 test_compilation (gchar *src,
96 GMatchType match_type,
102 verbose ("compiling \"%s\" \t", src);
103 spec = g_pattern_spec_new (src);
105 if (spec->match_type != match_type)
107 g_print ("failed \t(match_type: %s, expected %s)\n",
108 match_type_name (spec->match_type),
109 match_type_name (match_type));
110 g_pattern_spec_free (spec);
114 if (strcmp (spec->pattern, pattern) != 0)
116 g_print ("failed \t(pattern: \"%s\", expected \"%s\")\n",
119 g_pattern_spec_free (spec);
123 if (spec->pattern_length != strlen (spec->pattern))
125 g_print ("failed \t(pattern_length: %d, expected %d)\n",
126 spec->pattern_length,
127 (gint)strlen (spec->pattern));
128 g_pattern_spec_free (spec);
132 if (spec->min_length != min)
134 g_print ("failed \t(min_length: %d, expected %d)\n",
137 g_pattern_spec_free (spec);
141 verbose ("passed (%s: \"%s\")\n",
142 match_type_name (spec->match_type),
145 g_pattern_spec_free (spec);
151 test_match (gchar *pattern,
155 verbose ("matching \"%s\" against \"%s\" \t", string, pattern);
157 if (g_pattern_match_simple (pattern, string) != match)
159 g_print ("failed \t(unexpected %s)\n", (match ? "mismatch" : "match"));
163 verbose ("passed (%s)\n", match ? "match" : "nomatch");
169 test_equal (gchar *pattern1,
173 GPatternSpec *p1 = g_pattern_spec_new (pattern1);
174 GPatternSpec *p2 = g_pattern_spec_new (pattern2);
175 gboolean equal = g_pattern_spec_equal (p1, p2);
177 verbose ("comparing \"%s\" with \"%s\" \t", pattern1, pattern2);
179 if (expected != equal)
181 g_print ("failed \t{%s, %u, \"%s\"} %s {%s, %u, \"%s\"}\n",
182 match_type_name (p1->match_type), p1->pattern_length, p1->pattern,
183 expected ? "!=" : "==",
184 match_type_name (p2->match_type), p2->pattern_length, p2->pattern);
187 verbose ("passed (%s)\n", equal ? "equal" : "unequal");
189 g_pattern_spec_free (p1);
190 g_pattern_spec_free (p2);
192 return expected == equal;
195 #define TEST_COMPILATION(src, type, pattern, min) { \
197 if (test_compilation (src, type, pattern, min)) \
203 #define TEST_MATCH(pattern, string, match) { \
205 if (test_match (pattern, string, match)) \
211 #define TEST_EQUAL(pattern1, pattern2, match) { \
213 if (test_equal (pattern1, pattern2, match)) \
220 main (int argc, char** argv)
228 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
229 g_set_print_handler(mrtPrintHandler);
230 #endif /*__SYMBIAN32__*/
233 for (i = 1; i < argc; i++)
234 if (strcmp ("--noisy", argv[i]) == 0)
237 TEST_COMPILATION("*A?B*", G_MATCH_ALL, "*A?B*", 3);
238 TEST_COMPILATION("ABC*DEFGH", G_MATCH_ALL_TAIL, "HGFED*CBA", 8);
239 TEST_COMPILATION("ABCDEF*GH", G_MATCH_ALL, "ABCDEF*GH", 8);
240 TEST_COMPILATION("ABC**?***??**DEF*GH", G_MATCH_ALL, "ABC*???DEF*GH", 11);
241 TEST_COMPILATION("*A?AA", G_MATCH_ALL_TAIL, "AA?A*", 4);
242 TEST_COMPILATION("ABCD*", G_MATCH_HEAD, "ABCD", 4);
243 TEST_COMPILATION("*ABCD", G_MATCH_TAIL, "ABCD", 4);
244 TEST_COMPILATION("ABCDE", G_MATCH_EXACT, "ABCDE", 5);
245 TEST_COMPILATION("A?C?E", G_MATCH_ALL, "A?C?E", 5);
246 TEST_COMPILATION("*?x", G_MATCH_ALL_TAIL, "x?*", 2);
247 TEST_COMPILATION("?*x", G_MATCH_ALL_TAIL, "x?*", 2);
248 TEST_COMPILATION("*?*x", G_MATCH_ALL_TAIL, "x?*", 2);
249 TEST_COMPILATION("x*??", G_MATCH_ALL_TAIL, "??*x", 3);
251 TEST_EQUAL("*A?B*", "*A?B*", TRUE);
252 TEST_EQUAL("A*BCD", "A*BCD", TRUE);
253 TEST_EQUAL("ABCD*", "ABCD****", TRUE);
254 TEST_EQUAL("A1*", "A1*", TRUE);
255 TEST_EQUAL("*YZ", "*YZ", TRUE);
256 TEST_EQUAL("A1x", "A1x", TRUE);
257 TEST_EQUAL("AB*CD", "AB**CD", TRUE);
258 TEST_EQUAL("AB*?*CD", "AB*?CD", TRUE);
259 TEST_EQUAL("AB*?CD", "AB?*CD", TRUE);
260 TEST_EQUAL("AB*CD", "AB*?*CD", FALSE);
261 TEST_EQUAL("ABC*", "ABC?", FALSE);
263 TEST_MATCH("*x", "x", TRUE);
264 TEST_MATCH("*x", "xx", TRUE);
265 TEST_MATCH("*x", "yyyx", TRUE);
266 TEST_MATCH("*x", "yyxy", FALSE);
267 TEST_MATCH("?x", "x", FALSE);
268 TEST_MATCH("?x", "xx", TRUE);
269 TEST_MATCH("?x", "yyyx", FALSE);
270 TEST_MATCH("?x", "yyxy", FALSE);
271 TEST_MATCH("*?x", "xx", TRUE);
272 TEST_MATCH("?*x", "xx", TRUE);
273 TEST_MATCH("*?x", "x", FALSE);
274 TEST_MATCH("?*x", "x", FALSE);
275 TEST_MATCH("*?*x", "yx", TRUE);
276 TEST_MATCH("*?*x", "xxxx", TRUE);
277 TEST_MATCH("x*??", "xyzw", TRUE);
278 TEST_MATCH("*x", "\xc3\x84x", TRUE);
279 TEST_MATCH("?x", "\xc3\x84x", TRUE);
280 TEST_MATCH("??x", "\xc3\x84x", FALSE);
281 TEST_MATCH("ab\xc3\xa4\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE);
282 TEST_MATCH("ab\xc3\xa4\xc3\xb6", "abao", FALSE);
283 TEST_MATCH("ab?\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE);
284 TEST_MATCH("ab?\xc3\xb6", "abao", FALSE);
285 TEST_MATCH("ab\xc3\xa4?", "ab\xc3\xa4\xc3\xb6", TRUE);
286 TEST_MATCH("ab\xc3\xa4?", "abao", FALSE);
287 TEST_MATCH("ab??", "ab\xc3\xa4\xc3\xb6", TRUE);
288 TEST_MATCH("ab*", "ab\xc3\xa4\xc3\xb6", TRUE);
289 TEST_MATCH("ab*\xc3\xb6", "ab\xc3\xa4\xc3\xb6", TRUE);
290 TEST_MATCH("ab*\xc3\xb6", "aba\xc3\xb6x\xc3\xb6", TRUE);
291 TEST_MATCH("", "abc", FALSE);
293 TEST_MATCH("", "", TRUE);
294 TEST_MATCH("abc", "abc", TRUE);
295 TEST_MATCH("*fo1*bar", "yyyfoxfo1bar", TRUE);
296 TEST_MATCH("12*fo1g*bar", "12yyyfoxfo1gbar", TRUE);
297 TEST_MATCH("__________:*fo1g*bar", "__________:yyyfoxfo1gbar", TRUE);
298 TEST_MATCH("*abc*cde", "abcde", FALSE);
299 TEST_MATCH("*abc*cde", "abccde", TRUE);
300 TEST_MATCH("*abc*cde", "abcxcde", TRUE);
301 TEST_MATCH("*abc*?cde", "abccde", FALSE);
302 TEST_MATCH("*abc*?cde", "abcxcde", TRUE);
303 TEST_MATCH("*abc*def", "abababcdededef", TRUE);
304 TEST_MATCH("*abc*def", "abcbcbcdededef", TRUE);
305 TEST_MATCH("*acbc*def", "acbcbcbcdededef", TRUE);
306 TEST_MATCH("*a?bc*def", "acbcbcbcdededef", TRUE);
307 TEST_MATCH("*abc*def", "bcbcbcdefdef", FALSE);
308 TEST_MATCH("*abc*def*ghi", "abcbcbcbcbcbcdefefdefdefghi", TRUE);
309 TEST_MATCH("*abc*def*ghi", "bcbcbcbcbcbcdefdefdefdefghi", FALSE);
310 TEST_MATCH("_1_2_3_4_5_6_7_8_9_0_1_2_3_4_5_*abc*def*ghi", "_1_2_3_4_5_6_7_8_9_0_1_2_3_4_5_abcbcbcbcbcbcdefefdefdefghi", TRUE);
311 TEST_MATCH("fooooooo*a*bc", "fooooooo_a_bd_a_bc", TRUE);
313 verbose ("\n%u tests passed, %u failed\n", passed, failed);
315 testResultXml("patterntest");
316 #endif /* EMULATOR */