Include <string.h>.
[gnulib.git] / tests / test-c-strcasestr.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 "c-strcasestr.h"
25
26 #include <stdlib.h>
27 #include <string.h>
28
29 #define ASSERT(expr) if (!(expr)) abort ();
30
31 int
32 main ()
33 {
34   {
35     const char input[] = "foo";
36     const char *result = c_strcasestr (input, "");
37     ASSERT (result == input);
38   }
39
40   {
41     const char input[] = "foo";
42     const char *result = c_strcasestr (input, "O");
43     ASSERT (result == input + 1);
44   }
45
46   {
47     const char input[] = "ABC ABCDAB ABCDABCDABDE";
48     const char *result = c_strcasestr (input, "ABCDaBD");
49     ASSERT (result == input + 15);
50   }
51
52   {
53     const char input[] = "ABC ABCDAB ABCDABCDABDE";
54     const char *result = c_strcasestr (input, "ABCDaBE");
55     ASSERT (result == NULL);
56   }
57
58   /* Check that a very long haystack is handled quickly if the needle is
59      short and occurs near the beginning.  */
60   {
61     size_t repeat = 10000;
62     size_t m = 1000000;
63     char *needle =
64       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
65       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
66       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
67     char *haystack = (char *) malloc (m + 1);
68     if (haystack != NULL)
69       {
70         memset (haystack, 'A', m);
71         haystack[0] = 'B';
72         haystack[m] = '\0';
73
74         for (; repeat > 0; repeat--)
75           {
76             ASSERT (c_strcasestr (haystack, needle) == haystack + 1);
77           }
78
79         free (haystack);
80       }
81   }
82
83   /* Check that a very long needle is discarded quickly if the haystack is
84      short.  */
85   {
86     size_t repeat = 10000;
87     size_t m = 1000000;
88     char *haystack =
89       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
90       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
91     char *needle = (char *) malloc (m + 1);
92     if (needle != NULL)
93       {
94         memset (needle, 'A', m);
95         needle[m] = '\0';
96
97         for (; repeat > 0; repeat--)
98           {
99             ASSERT (c_strcasestr (haystack, needle) == NULL);
100           }
101
102         free (needle);
103       }
104   }
105
106   /* Check that the asymptotic worst-case complexity is not quadratic.  */
107   {
108     size_t m = 1000000;
109     char *haystack = (char *) malloc (2 * m + 2);
110     char *needle = (char *) malloc (m + 2);
111     if (haystack != NULL && needle != NULL)
112       {
113         const char *result;
114
115         memset (haystack, 'A', 2 * m);
116         haystack[2 * m] = 'B';
117         haystack[2 * m + 1] = '\0';
118
119         memset (needle, 'a', m);
120         needle[m] = 'B';
121         needle[m + 1] = '\0';
122
123         result = c_strcasestr (haystack, needle);
124         ASSERT (result == haystack + m);
125       }
126     if (needle != NULL)
127       free (needle);
128     if (haystack != NULL)
129       free (haystack);
130   }
131
132   return 0;
133 }