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