Tests for module unilbrk/u16-width-linebreaks.
[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 <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25
26 #define ASSERT(expr) \
27   do                                                                         \
28     {                                                                        \
29       if (!(expr))                                                           \
30         {                                                                    \
31           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
32           fflush (stderr);                                                   \
33           abort ();                                                          \
34         }                                                                    \
35     }                                                                        \
36   while (0)
37
38 int
39 main (int argc, char *argv[])
40 {
41 #if HAVE_DECL_ALARM
42   /* Declare failure if test takes too long, by using default abort
43      caused by SIGALRM.  All known platforms that lack alarm also have
44      a quadratic strstr, and the replacement strstr is known to not
45      take too long.  */
46   alarm (50);
47 #endif
48
49   {
50     const char input[] = "foo";
51     const char *result = strstr (input, "");
52     ASSERT (result == input);
53   }
54
55   {
56     const char input[] = "foo";
57     const char *result = strstr (input, "o");
58     ASSERT (result == input + 1);
59   }
60
61   {
62     const char input[] = "ABC ABCDAB ABCDABCDABDE";
63     const char *result = strstr (input, "ABCDABD");
64     ASSERT (result == input + 15);
65   }
66
67   {
68     const char input[] = "ABC ABCDAB ABCDABCDABDE";
69     const char *result = strstr (input, "ABCDABE");
70     ASSERT (result == NULL);
71   }
72
73   {
74     const char input[] = "ABC ABCDAB ABCDABCDABDE";
75     const char *result = strstr (input, "ABCDABCD");
76     ASSERT (result == input + 11);
77   }
78
79   /* Check that a very long haystack is handled quickly if the needle is
80      short and occurs near the beginning.  */
81   {
82     size_t repeat = 10000;
83     size_t m = 1000000;
84     char *needle =
85       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
86       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
87     char *haystack = (char *) malloc (m + 1);
88     if (haystack != NULL)
89       {
90         memset (haystack, 'A', m);
91         haystack[0] = 'B';
92         haystack[m] = '\0';
93
94         for (; repeat > 0; repeat--)
95           {
96             ASSERT (strstr (haystack, needle) == haystack + 1);
97           }
98
99         free (haystack);
100       }
101   }
102
103   /* Check that a very long needle is discarded quickly if the haystack is
104      short.  */
105   {
106     size_t repeat = 10000;
107     size_t m = 1000000;
108     char *haystack =
109       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
110       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
111     char *needle = (char *) malloc (m + 1);
112     if (needle != NULL)
113       {
114         memset (needle, 'A', m);
115         needle[m] = '\0';
116
117         for (; repeat > 0; repeat--)
118           {
119             ASSERT (strstr (haystack, needle) == NULL);
120           }
121
122         free (needle);
123       }
124   }
125
126   /* Check that the asymptotic worst-case complexity is not quadratic.  */
127   {
128     size_t m = 1000000;
129     char *haystack = (char *) malloc (2 * m + 2);
130     char *needle = (char *) malloc (m + 2);
131     if (haystack != NULL && needle != NULL)
132       {
133         const char *result;
134
135         memset (haystack, 'A', 2 * m);
136         haystack[2 * m] = 'B';
137         haystack[2 * m + 1] = '\0';
138
139         memset (needle, 'A', m);
140         needle[m] = 'B';
141         needle[m + 1] = '\0';
142
143         result = strstr (haystack, needle);
144         ASSERT (result == haystack + m);
145       }
146     free (needle);
147     free (haystack);
148   }
149
150   /* Sublinear speed is only possible in memmem; strstr must examine
151      every character of haystack to find its length.  */
152
153   return 0;
154 }