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