Better ASSERT macro.
[gnulib.git] / tests / test-mbscasestr1.c
1 /* Test of case-insensitive searching in a string.
2    Copyright (C) 2007 Free Software Foundation, Inc.
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, or (at your option)
7    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 Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <string.h>
25
26 #include <stdio.h>
27 #include <stdlib.h>
28
29 #define ASSERT(expr) \
30   do                                                                         \
31     {                                                                        \
32       if (!(expr))                                                           \
33         {                                                                    \
34           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
35           abort ();                                                          \
36         }                                                                    \
37     }                                                                        \
38   while (0)
39
40 int
41 main ()
42 {
43   /* This test is executed in the C locale.  */
44
45   {
46     const char input[] = "foo";
47     const char *result = mbscasestr (input, "");
48     ASSERT (result == input);
49   }
50
51   {
52     const char input[] = "foo";
53     const char *result = mbscasestr (input, "O");
54     ASSERT (result == input + 1);
55   }
56
57   {
58     const char input[] = "ABC ABCDAB ABCDABCDABDE";
59     const char *result = mbscasestr (input, "ABCDaBD");
60     ASSERT (result == input + 15);
61   }
62
63   {
64     const char input[] = "ABC ABCDAB ABCDABCDABDE";
65     const char *result = mbscasestr (input, "ABCDaBE");
66     ASSERT (result == NULL);
67   }
68
69   /* Check that a very long haystack is handled quickly if the needle is
70      short and occurs near the beginning.  */
71   {
72     size_t repeat = 10000;
73     size_t m = 1000000;
74     char *needle =
75       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
76       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
77       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
78     char *haystack = (char *) malloc (m + 1);
79     if (haystack != NULL)
80       {
81         memset (haystack, 'A', m);
82         haystack[0] = 'B';
83         haystack[m] = '\0';
84
85         for (; repeat > 0; repeat--)
86           {
87             ASSERT (mbscasestr (haystack, needle) == haystack + 1);
88           }
89
90         free (haystack);
91       }
92   }
93
94   /* Check that a very long needle is discarded quickly if the haystack is
95      short.  */
96   {
97     size_t repeat = 10000;
98     size_t m = 1000000;
99     char *haystack =
100       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
101       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
102     char *needle = (char *) malloc (m + 1);
103     if (needle != NULL)
104       {
105         memset (needle, 'A', m);
106         needle[m] = '\0';
107
108         for (; repeat > 0; repeat--)
109           {
110             ASSERT (mbscasestr (haystack, needle) == NULL);
111           }
112
113         free (needle);
114       }
115   }
116
117   /* Check that the asymptotic worst-case complexity is not quadratic.  */
118   {
119     size_t m = 1000000;
120     char *haystack = (char *) malloc (2 * m + 2);
121     char *needle = (char *) malloc (m + 2);
122     if (haystack != NULL && needle != NULL)
123       {
124         const char *result;
125
126         memset (haystack, 'A', 2 * m);
127         haystack[2 * m] = 'B';
128         haystack[2 * m + 1] = '\0';
129
130         memset (needle, 'a', m);
131         needle[m] = 'B';
132         needle[m + 1] = '\0';
133
134         result = mbscasestr (haystack, needle);
135         ASSERT (result == haystack + m);
136       }
137     if (needle != NULL)
138       free (needle);
139     if (haystack != NULL)
140       free (haystack);
141   }
142
143   return 0;
144 }