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