Unconditionally include <config.h> in unit tests.
[gnulib.git] / tests / test-c-strcasestr.c
1 /* Test of case-insensitive searching in a string.
2    Copyright (C) 2007 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 2, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 #include <config.h>
21
22 #include "c-strcasestr.h"
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #define ASSERT(expr) \
29   do                                                                         \
30     {                                                                        \
31       if (!(expr))                                                           \
32         {                                                                    \
33           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
34           abort ();                                                          \
35         }                                                                    \
36     }                                                                        \
37   while (0)
38
39 int
40 main ()
41 {
42   {
43     const char input[] = "foo";
44     const char *result = c_strcasestr (input, "");
45     ASSERT (result == input);
46   }
47
48   {
49     const char input[] = "foo";
50     const char *result = c_strcasestr (input, "O");
51     ASSERT (result == input + 1);
52   }
53
54   {
55     const char input[] = "ABC ABCDAB ABCDABCDABDE";
56     const char *result = c_strcasestr (input, "ABCDaBD");
57     ASSERT (result == input + 15);
58   }
59
60   {
61     const char input[] = "ABC ABCDAB ABCDABCDABDE";
62     const char *result = c_strcasestr (input, "ABCDaBE");
63     ASSERT (result == NULL);
64   }
65
66   /* Check that a very long haystack is handled quickly if the needle is
67      short and occurs near the beginning.  */
68   {
69     size_t repeat = 10000;
70     size_t m = 1000000;
71     char *needle =
72       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
73       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
74       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
75     char *haystack = (char *) malloc (m + 1);
76     if (haystack != NULL)
77       {
78         memset (haystack, 'A', m);
79         haystack[0] = 'B';
80         haystack[m] = '\0';
81
82         for (; repeat > 0; repeat--)
83           {
84             ASSERT (c_strcasestr (haystack, needle) == haystack + 1);
85           }
86
87         free (haystack);
88       }
89   }
90
91   /* Check that a very long needle is discarded quickly if the haystack is
92      short.  */
93   {
94     size_t repeat = 10000;
95     size_t m = 1000000;
96     char *haystack =
97       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
98       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
99     char *needle = (char *) malloc (m + 1);
100     if (needle != NULL)
101       {
102         memset (needle, 'A', m);
103         needle[m] = '\0';
104
105         for (; repeat > 0; repeat--)
106           {
107             ASSERT (c_strcasestr (haystack, needle) == NULL);
108           }
109
110         free (needle);
111       }
112   }
113
114   /* Check that the asymptotic worst-case complexity is not quadratic.  */
115   {
116     size_t m = 1000000;
117     char *haystack = (char *) malloc (2 * m + 2);
118     char *needle = (char *) malloc (m + 2);
119     if (haystack != NULL && needle != NULL)
120       {
121         const char *result;
122
123         memset (haystack, 'A', 2 * m);
124         haystack[2 * m] = 'B';
125         haystack[2 * m + 1] = '\0';
126
127         memset (needle, 'a', m);
128         needle[m] = 'B';
129         needle[m + 1] = '\0';
130
131         result = c_strcasestr (haystack, needle);
132         ASSERT (result == haystack + m);
133       }
134     if (needle != NULL)
135       free (needle);
136     if (haystack != NULL)
137       free (haystack);
138   }
139
140   return 0;
141 }