Avoid some more warnings from "gcc -Wwrite-strings".
[gnulib.git] / tests / test-strcasestr.c
1 /* Test of case-insensitive searching in a string.
2    Copyright (C) 2007-2010 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 "signature.h"
24 SIGNATURE_CHECK (strcasestr, char *, (char const *, char const *));
25
26 #include <signal.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29
30 #include "macros.h"
31
32 int
33 main ()
34 {
35 #if HAVE_DECL_ALARM
36   /* Declare failure if test takes too long, by using default abort
37      caused by SIGALRM.  All known platforms that lack alarm also lack
38      strcasestr, and the replacement strcasestr is known to not take too
39      long.  */
40   signal (SIGALRM, SIG_DFL);
41   alarm (50);
42 #endif
43
44   {
45     const char input[] = "foo";
46     const char *result = strcasestr (input, "");
47     ASSERT (result == input);
48   }
49
50   {
51     const char input[] = "foo";
52     const char *result = strcasestr (input, "O");
53     ASSERT (result == input + 1);
54   }
55
56   {
57     const char input[] = "ABC ABCDAB ABCDABCDABDE";
58     const char *result = strcasestr (input, "ABCDaBD");
59     ASSERT (result == input + 15);
60   }
61
62   {
63     const char input[] = "ABC ABCDAB ABCDABCDABDE";
64     const char *result = strcasestr (input, "ABCDaBE");
65     ASSERT (result == NULL);
66   }
67
68   {
69     const char input[] = "ABC ABCDAB ABCDABCDABDE";
70     const char *result = strcasestr (input, "ABCDaBCD");
71     ASSERT (result == input + 11);
72   }
73
74   /* Check that a very long haystack is handled quickly if the needle is
75      short and occurs near the beginning.  */
76   {
77     size_t repeat = 10000;
78     size_t m = 1000000;
79     const char *needle =
80       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
81       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
82       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
83     char *haystack = (char *) malloc (m + 1);
84     if (haystack != NULL)
85       {
86         memset (haystack, 'A', m);
87         haystack[0] = 'B';
88         haystack[m] = '\0';
89
90         for (; repeat > 0; repeat--)
91           {
92             ASSERT (strcasestr (haystack, needle) == haystack + 1);
93           }
94
95         free (haystack);
96       }
97   }
98
99   /* Check that a very long needle is discarded quickly if the haystack is
100      short.  */
101   {
102     size_t repeat = 10000;
103     size_t m = 1000000;
104     const char *haystack =
105       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
106       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
107     char *needle = (char *) malloc (m + 1);
108     if (needle != NULL)
109       {
110         memset (needle, 'A', m);
111         needle[m] = '\0';
112
113         for (; repeat > 0; repeat--)
114           {
115             ASSERT (strcasestr (haystack, needle) == NULL);
116           }
117
118         free (needle);
119       }
120   }
121
122   /* Check that the asymptotic worst-case complexity is not quadratic.  */
123   {
124     size_t m = 1000000;
125     char *haystack = (char *) malloc (2 * m + 2);
126     char *needle = (char *) malloc (m + 2);
127     if (haystack != NULL && needle != NULL)
128       {
129         const char *result;
130
131         memset (haystack, 'A', 2 * m);
132         haystack[2 * m] = 'B';
133         haystack[2 * m + 1] = '\0';
134
135         memset (needle, 'a', m);
136         needle[m] = 'B';
137         needle[m + 1] = '\0';
138
139         result = strcasestr (haystack, needle);
140         ASSERT (result == haystack + m);
141       }
142     free (needle);
143     free (haystack);
144   }
145
146   return 0;
147 }