(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / posix / tst-rxspencer.c
blobcb40421797bf2f8fb3e7151880d25f433006b4f9
1 /* Regular expression tests.
2 Copyright (C) 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <sys/types.h>
22 #include <mcheck.h>
23 #include <regex.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <locale.h>
28 #include <getopt.h>
30 static void
31 replace_special_chars (char *str)
33 for (; (str = strpbrk (str, "NTSZ")) != NULL; ++str)
34 switch (*str)
36 case 'N': *str = '\n'; break;
37 case 'T': *str = '\t'; break;
38 case 'S': *str = ' '; break;
39 case 'Z': *str = '\0'; break;
43 static void
44 glibc_re_syntax (char *str)
46 char *p, *end = strchr (str, '\0') + 1;
48 /* Replace [[:<:]] with \< and [[:>:]] with \>. */
49 for (p = str; (p = strstr (p, "[[:")) != NULL; )
50 if ((p[3] == '<' || p[3] == '>') && strncmp (p + 4, ":]]", 3) == 0)
52 p[0] = '\\';
53 p[1] = p[3];
54 memmove (p + 2, p + 7, end - p - 7);
55 end -= 5;
56 p += 2;
58 else
59 p += 3;
62 static char *
63 mb_replace (char *dst, const char c)
65 switch (c)
67 /* Replace a with \'a and A with \'A. */
68 case 'a':
69 *dst++ = '\xc3';
70 *dst++ = '\xa1';
71 break;
72 case 'A':
73 *dst++ = '\xc3';
74 *dst++ = '\x81';
75 break;
76 /* Replace b with \v{c} and B with \v{C}. */
77 case 'b':
78 *dst++ = '\xc4';
79 *dst++ = '\x8d';
80 break;
81 case 'B':
82 *dst++ = '\xc4';
83 *dst++ = '\x8c';
84 break;
85 /* Replace c with \v{d} and C with \v{D}. */
86 case 'c':
87 *dst++ = '\xc4';
88 *dst++ = '\x8f';
89 break;
90 case 'C':
91 *dst++ = '\xc4';
92 *dst++ = '\x8e';
93 break;
94 /* Replace d with \'e and D with \'E. */
95 case 'd':
96 *dst++ = '\xc3';
97 *dst++ = '\xa9';
98 break;
99 case 'D':
100 *dst++ = '\xc3';
101 *dst++ = '\x89';
102 break;
104 return dst;
107 static char *
108 mb_frob_string (const char *str, const char *letters)
110 char *ret, *dst;
111 const char *src;
113 if (str == NULL)
114 return NULL;
116 ret = malloc (2 * strlen (str) + 1);
117 if (ret == NULL)
118 return NULL;
120 for (src = str, dst = ret; *src; ++src)
121 if (strchr (letters, *src))
122 dst = mb_replace (dst, *src);
123 else
124 *dst++ = *src;
125 *dst = '\0';
126 return ret;
129 /* Like mb_frob_string, but don't replace anything between
130 [: and :], [. and .] or [= and =]. */
132 static char *
133 mb_frob_pattern (const char *str, const char *letters)
135 char *ret, *dst;
136 const char *src;
137 int in_class = 0;
139 if (str == NULL)
140 return NULL;
142 ret = malloc (2 * strlen (str) + 1);
143 if (ret == NULL)
144 return NULL;
146 for (src = str, dst = ret; *src; ++src)
147 if (!in_class && strchr (letters, *src))
148 dst = mb_replace (dst, *src);
149 else
151 if (!in_class && *src == '[' && strchr (":.=", src[1]))
152 in_class = 1;
153 else if (in_class && *src == ']' && strchr (":.=", src[-1]))
154 in_class = 0;
155 *dst++ = *src;
157 *dst = '\0';
158 return ret;
161 static int
162 check_match (regmatch_t *rm, int idx, const char *string,
163 const char *match, const char *fail)
165 if (match[0] == '-' && match[1] == '\0')
167 if (rm[idx].rm_so == -1 && rm[idx].rm_eo == -1)
168 return 0;
169 printf ("%s rm[%d] unexpectedly matched\n", fail, idx);
170 return 1;
173 if (rm[idx].rm_so == -1 || rm[idx].rm_eo == -1)
175 printf ("%s rm[%d] unexpectedly did not match\n", fail, idx);
176 return 1;
179 if (match[0] == '@')
181 if (rm[idx].rm_so != rm[idx].rm_eo)
183 printf ("%s rm[%d] not empty\n", fail, idx);
184 return 1;
187 if (strncmp (string + rm[idx].rm_so, match + 1, strlen (match + 1) ?: 1))
189 printf ("%s rm[%d] not matching %s\n", fail, idx, match);
190 return 1;
192 return 0;
195 if (rm[idx].rm_eo - rm[idx].rm_so != strlen (match)
196 || strncmp (string + rm[idx].rm_so, match,
197 rm[idx].rm_eo - rm[idx].rm_so))
199 printf ("%s rm[%d] not matching %s\n", fail, idx, match);
200 return 1;
203 return 0;
206 static int
207 test (const char *pattern, int cflags, const char *string, int eflags,
208 char *expect, char *matches, const char *fail)
210 regex_t re;
211 regmatch_t rm[10];
212 int n, ret = 0;
214 n = regcomp (&re, pattern, cflags);
215 if (n != 0)
217 char buf[500];
218 if (eflags == -1)
220 static struct { reg_errcode_t code; const char *name; } codes []
221 #define C(x) { REG_##x, #x }
222 = { C(NOERROR), C(NOMATCH), C(BADPAT), C(ECOLLATE),
223 C(ECTYPE), C(EESCAPE), C(ESUBREG), C(EBRACK),
224 C(EPAREN), C(EBRACE), C(BADBR), C(ERANGE),
225 C(ESPACE), C(BADRPT) };
227 for (int i = 0; i < sizeof (codes) / sizeof (codes[0]); ++i)
228 if (n == codes[i].code)
230 if (strcmp (string, codes[i].name))
232 printf ("%s regcomp returned REG_%s (expected REG_%s)\n",
233 fail, codes[i].name, string);
234 return 1;
236 return 0;
239 printf ("%s regcomp return value REG_%d\n", fail, n);
240 return 1;
243 regerror (n, &re, buf, sizeof (buf));
244 printf ("%s regcomp failed: %s\n", fail, buf);
245 return 1;
248 if (eflags == -1)
250 regfree (&re);
252 /* The test case file assumes something only guaranteed by the
253 rxspencer regex implementation. Namely that for empty
254 expressions regcomp() return REG_EMPTY. This is not the case
255 for us and so we ignore this error. */
256 if (strcmp (string, "EMPTY") == 0)
257 return 0;
259 printf ("%s regcomp unexpectedly succeeded\n", fail);
260 return 1;
263 if (regexec (&re, string, 10, rm, eflags))
265 regfree (&re);
266 if (expect == NULL)
267 return 0;
268 printf ("%s regexec failed\n", fail);
269 return 1;
272 regfree (&re);
274 if (expect == NULL)
276 printf ("%s regexec unexpectedly succeeded\n", fail);
277 return 1;
280 if (cflags & REG_NOSUB)
281 return 0;
283 ret = check_match (rm, 0, string, expect, fail);
284 if (matches == NULL)
285 return ret;
287 for (n = 1; ret == 0 && n < 10; ++n)
289 char *p = NULL;
291 if (matches)
293 p = strchr (matches, ',');
294 if (p != NULL)
295 *p = '\0';
297 ret = check_match (rm, n, string, matches ?: "-", fail);
298 if (p)
300 *p = ',';
301 matches = p + 1;
303 else
304 matches = NULL;
307 return ret;
310 static int
311 mb_test (const char *pattern, int cflags, const char *string, int eflags,
312 char *expect, const char *matches, const char *letters,
313 const char *fail)
315 char *pattern_mb = mb_frob_pattern (pattern, letters);
316 const char *string_mb
317 = eflags == -1 ? string : mb_frob_string (string, letters);
318 char *expect_mb = mb_frob_string (expect, letters);
319 char *matches_mb = mb_frob_string (matches, letters);
320 int ret = 0;
322 if (!pattern_mb || !string_mb
323 || (expect && !expect_mb) || (matches && !matches_mb))
325 printf ("%s %m", fail);
326 ret = 1;
328 else
329 ret = test (pattern_mb, cflags, string_mb, eflags, expect_mb,
330 matches_mb, fail);
332 free (matches_mb);
333 free (expect_mb);
334 if (string_mb != string)
335 free ((char *) string_mb);
336 free (pattern_mb);
337 return ret;
340 static int
341 mb_tests (const char *pattern, int cflags, const char *string, int eflags,
342 char *expect, const char *matches)
344 int ret = 0;
345 int i;
346 char letters[9], fail[20];
348 /* The tests aren't supposed to work with xdigit, since a-dA-D are
349 hex digits while \'a \'A \v{c}\v{C}\v{d}\v{D}\'e \'E are not. */
350 if (strstr (pattern, "[:xdigit:]"))
351 return 0;
353 /* XXX: regex ATM handles only single byte equivalence classes. */
354 if (strstr (pattern, "[[=b=]]"))
355 return 0;
357 for (i = 1; i < 16; ++i)
359 char *p = letters;
360 if (i & 1)
362 if (!strchr (pattern, 'a') && !strchr (string, 'a')
363 && !strchr (pattern, 'A') && !strchr (string, 'A'))
364 continue;
365 *p++ = 'a', *p++ = 'A';
367 if (i & 2)
369 if (!strchr (pattern, 'b') && !strchr (string, 'b')
370 && !strchr (pattern, 'B') && !strchr (string, 'B'))
371 continue;
372 *p++ = 'b', *p++ = 'B';
374 if (i & 4)
376 if (!strchr (pattern, 'c') && !strchr (string, 'c')
377 && !strchr (pattern, 'C') && !strchr (string, 'C'))
378 continue;
379 *p++ = 'c', *p++ = 'C';
381 if (i & 8)
383 if (!strchr (pattern, 'd') && !strchr (string, 'd')
384 && !strchr (pattern, 'D') && !strchr (string, 'D'))
385 continue;
386 *p++ = 'd', *p++ = 'D';
388 *p++ = '\0';
389 sprintf (fail, "UTF-8 %s FAIL", letters);
390 ret |= mb_test (pattern, cflags, string, eflags, expect, matches,
391 letters, fail);
393 return ret;
397 main (int argc, char **argv)
399 int ret = 0;
400 char *line = NULL;
401 size_t line_len = 0;
402 ssize_t len;
403 FILE *f;
404 static int test_utf8 = 0;
405 static const struct option options[] =
407 {"utf8", no_argument, &test_utf8, 1},
408 {NULL, 0, NULL, 0 }
411 mtrace ();
413 while (getopt_long (argc, argv, "", options, NULL) >= 0);
415 if (optind + 1 != argc)
417 fprintf (stderr, "Missing test filename\n");
418 return 1;
421 f = fopen (argv[optind], "r");
422 if (f == NULL)
424 fprintf (stderr, "Couldn't open %s\n", argv[optind]);
425 return 1;
428 while ((len = getline (&line, &line_len, f)) > 0)
430 char *pattern, *flagstr, *string, *expect, *matches, *p;
431 int cflags = REG_EXTENDED, eflags = 0, try_bre_ere = 0;
433 if (line[len - 1] == '\n')
434 line[len - 1] = '\0';
436 /* Skip comments and empty lines. */
437 if (*line == '#' || *line == '\0')
438 continue;
440 puts (line);
441 fflush (stdout);
443 pattern = strtok (line, "\t");
444 if (pattern == NULL)
445 continue;
447 if (strcmp (pattern, "\"\"") == 0)
448 pattern += 2;
450 flagstr = strtok (NULL, "\t");
451 if (flagstr == NULL)
452 continue;
454 string = strtok (NULL, "\t");
455 if (string == NULL)
456 continue;
458 if (strcmp (string, "\"\"") == 0)
459 string += 2;
461 for (p = flagstr; *p; ++p)
462 switch (*p)
464 case '-':
465 break;
466 case 'b':
467 cflags &= ~REG_EXTENDED;
468 break;
469 case '&':
470 try_bre_ere = 1;
471 break;
472 case 'C':
473 eflags = -1;
474 break;
475 case 'i':
476 cflags |= REG_ICASE;
477 break;
478 case 's':
479 cflags |= REG_NOSUB;
480 break;
481 case 'n':
482 cflags |= REG_NEWLINE;
483 break;
484 case '^':
485 eflags |= REG_NOTBOL;
486 break;
487 case '$':
488 eflags |= REG_NOTEOL;
489 break;
490 case 'm':
491 case 'p':
492 case '#':
493 /* Not supported. */
494 flagstr = NULL;
495 break;
498 if (flagstr == NULL)
499 continue;
501 replace_special_chars (pattern);
502 glibc_re_syntax (pattern);
503 if (eflags != -1)
504 replace_special_chars (string);
506 expect = strtok (NULL, "\t");
507 matches = NULL;
508 if (expect != NULL)
510 replace_special_chars (expect);
511 matches = strtok (NULL, "\t");
512 if (matches != NULL)
513 replace_special_chars (matches);
516 if (setlocale (LC_ALL, "C") == NULL)
518 puts ("setlocale C failed");
519 ret = 1;
521 if (test (pattern, cflags, string, eflags, expect, matches, "FAIL")
522 || (try_bre_ere
523 && test (pattern, cflags & ~REG_EXTENDED, string, eflags,
524 expect, matches, "FAIL")))
525 ret = 1;
526 else if (test_utf8)
528 if (setlocale (LC_ALL, "cs_CZ.UTF-8") == NULL)
530 puts ("setlocale cs_CZ.UTF-8 failed");
531 ret = 1;
533 else if (test (pattern, cflags, string, eflags, expect, matches,
534 "UTF-8 FAIL")
535 || (try_bre_ere
536 && test (pattern, cflags & ~REG_EXTENDED, string,
537 eflags, expect, matches, "UTF-8 FAIL")))
538 ret = 1;
539 else if (mb_tests (pattern, cflags, string, eflags, expect, matches)
540 || (try_bre_ere
541 && mb_tests (pattern, cflags & ~REG_EXTENDED, string,
542 eflags, expect, matches)))
543 ret = 1;
547 free (line);
548 fclose (f);
549 return ret;