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