Add missing include.
[gnulib.git] / tests / test-strstr.c
1 /*
2  * Copyright (C) 2004, 2007, 2008 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     const char input[] = "ABC ABCDAB ABCDABCDABDE";
65     const char *result = strstr (input, "ABCDABD");
66     ASSERT (result == input + 15);
67   }
68
69   {
70     const char input[] = "ABC ABCDAB ABCDABCDABDE";
71     const char *result = strstr (input, "ABCDABE");
72     ASSERT (result == NULL);
73   }
74
75   {
76     const char input[] = "ABC ABCDAB ABCDABCDABDE";
77     const char *result = strstr (input, "ABCDABCD");
78     ASSERT (result == input + 11);
79   }
80
81   /* Check that a very long haystack is handled quickly if the needle is
82      short and occurs near the beginning.  */
83   {
84     size_t repeat = 10000;
85     size_t m = 1000000;
86     char *needle =
87       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
88       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
89     char *haystack = (char *) malloc (m + 1);
90     if (haystack != NULL)
91       {
92         memset (haystack, 'A', m);
93         haystack[0] = 'B';
94         haystack[m] = '\0';
95
96         for (; repeat > 0; repeat--)
97           {
98             ASSERT (strstr (haystack, needle) == haystack + 1);
99           }
100
101         free (haystack);
102       }
103   }
104
105   /* Check that a very long needle is discarded quickly if the haystack is
106      short.  */
107   {
108     size_t repeat = 10000;
109     size_t m = 1000000;
110     char *haystack =
111       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
112       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
113     char *needle = (char *) malloc (m + 1);
114     if (needle != NULL)
115       {
116         memset (needle, 'A', m);
117         needle[m] = '\0';
118
119         for (; repeat > 0; repeat--)
120           {
121             ASSERT (strstr (haystack, needle) == NULL);
122           }
123
124         free (needle);
125       }
126   }
127
128   /* Check that the asymptotic worst-case complexity is not quadratic.  */
129   {
130     size_t m = 1000000;
131     char *haystack = (char *) malloc (2 * m + 2);
132     char *needle = (char *) malloc (m + 2);
133     if (haystack != NULL && needle != NULL)
134       {
135         const char *result;
136
137         memset (haystack, 'A', 2 * m);
138         haystack[2 * m] = 'B';
139         haystack[2 * m + 1] = '\0';
140
141         memset (needle, 'A', m);
142         needle[m] = 'B';
143         needle[m + 1] = '\0';
144
145         result = strstr (haystack, needle);
146         ASSERT (result == haystack + m);
147       }
148     free (needle);
149     free (haystack);
150   }
151
152   /* Sublinear speed is only possible in memmem; strstr must examine
153      every character of haystack to find its length.  */
154
155   return 0;
156 }