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