600f7c7869859f2dd0592adf01cd4861933d7338
[gnulib.git] / tests / test-strstr.c
1 /*
2  * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation
3  * Written by Bruno Haible and Eric Blake
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include <string.h>
21
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <unistd.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 (int argc, char *argv[])
41 {
42 #if HAVE_DECL_ALARM
43   /* Declare failure if test takes too long, by using default abort
44      caused by SIGALRM.  All known platforms that lack alarm also have
45      a quadratic strstr, and the replacement strstr is known to not
46      take too long.  */
47   signal (SIGALRM, SIG_DFL);
48   alarm (50);
49 #endif
50
51   {
52     const char input[] = "foo";
53     const char *result = strstr (input, "");
54     ASSERT (result == input);
55   }
56
57   {
58     const char input[] = "foo";
59     const char *result = strstr (input, "o");
60     ASSERT (result == input + 1);
61   }
62
63   {
64     /* See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737 */
65     const char *fix = "aBaaaaaaaaaaax";
66     char *input = malloc (strlen (fix) + 1);
67     const char *result;
68
69     strcpy (input, fix);
70     result = strstr (input, "B1x");
71     ASSERT (result == NULL);
72     free (input);
73   }
74
75   {
76     const char input[] = "ABC ABCDAB ABCDABCDABDE";
77     const char *result = strstr (input, "ABCDABD");
78     ASSERT (result == input + 15);
79   }
80
81   {
82     const char input[] = "ABC ABCDAB ABCDABCDABDE";
83     const char *result = strstr (input, "ABCDABE");
84     ASSERT (result == NULL);
85   }
86
87   {
88     const char input[] = "ABC ABCDAB ABCDABCDABDE";
89     const char *result = strstr (input, "ABCDABCD");
90     ASSERT (result == input + 11);
91   }
92
93   /* Check that a very long haystack is handled quickly if the needle is
94      short and occurs near the beginning.  */
95   {
96     size_t repeat = 10000;
97     size_t m = 1000000;
98     char *needle =
99       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
100       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
101     char *haystack = (char *) malloc (m + 1);
102     if (haystack != NULL)
103       {
104         memset (haystack, 'A', m);
105         haystack[0] = 'B';
106         haystack[m] = '\0';
107
108         for (; repeat > 0; repeat--)
109           {
110             ASSERT (strstr (haystack, needle) == haystack + 1);
111           }
112
113         free (haystack);
114       }
115   }
116
117   /* Check that a very long needle is discarded quickly if the haystack is
118      short.  */
119   {
120     size_t repeat = 10000;
121     size_t m = 1000000;
122     char *haystack =
123       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
124       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
125     char *needle = (char *) malloc (m + 1);
126     if (needle != NULL)
127       {
128         memset (needle, 'A', m);
129         needle[m] = '\0';
130
131         for (; repeat > 0; repeat--)
132           {
133             ASSERT (strstr (haystack, needle) == NULL);
134           }
135
136         free (needle);
137       }
138   }
139
140   /* Check that the asymptotic worst-case complexity is not quadratic.  */
141   {
142     size_t m = 1000000;
143     char *haystack = (char *) malloc (2 * m + 2);
144     char *needle = (char *) malloc (m + 2);
145     if (haystack != NULL && needle != NULL)
146       {
147         const char *result;
148
149         memset (haystack, 'A', 2 * m);
150         haystack[2 * m] = 'B';
151         haystack[2 * m + 1] = '\0';
152
153         memset (needle, 'A', m);
154         needle[m] = 'B';
155         needle[m + 1] = '\0';
156
157         result = strstr (haystack, needle);
158         ASSERT (result == haystack + m);
159       }
160     free (needle);
161     free (haystack);
162   }
163
164   /* Sublinear speed is only possible in memmem; strstr must examine
165      every character of haystack to find its length.  */
166
167   return 0;
168 }