attribute: const/pure defaults to unsequenced/reproducible
[gnulib.git] / tests / test-mbscasestr1.c
blobcb83d222005f6145a8e625980b5a6c5ab520f67b
1 /* Test of case-insensitive searching in a string.
2 Copyright (C) 2007-2024 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
19 #include <config.h>
21 #include <string.h>
23 #include <stdlib.h>
25 #include "macros.h"
27 int
28 main ()
30 /* This test is executed in the C locale. */
33 const char input[] = "foo";
34 const char *result = mbscasestr (input, "");
35 ASSERT (result == input);
39 const char input[] = "foo";
40 const char *result = mbscasestr (input, "O");
41 ASSERT (result == input + 1);
45 const char input[] = "ABC ABCDAB ABCDABCDABDE";
46 const char *result = mbscasestr (input, "ABCDaBD");
47 ASSERT (result == input + 15);
51 const char input[] = "ABC ABCDAB ABCDABCDABDE";
52 const char *result = mbscasestr (input, "ABCDaBE");
53 ASSERT (result == NULL);
56 /* Check that a very long haystack is handled quickly if the needle is
57 short and occurs near the beginning. */
59 size_t repeat = 10000;
60 size_t m = 1000000;
61 const char *needle =
62 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
63 "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
64 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
65 char *haystack = (char *) malloc (m + 1);
66 if (haystack != NULL)
68 memset (haystack, 'A', m);
69 haystack[0] = 'B';
70 haystack[m] = '\0';
72 for (; repeat > 0; repeat--)
74 ASSERT (mbscasestr (haystack, needle) == haystack + 1);
77 free (haystack);
81 /* Check that a very long needle is discarded quickly if the haystack is
82 short. */
84 size_t repeat = 10000;
85 size_t m = 1000000;
86 const char *haystack =
87 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
88 "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
89 char *needle = (char *) malloc (m + 1);
90 if (needle != NULL)
92 memset (needle, 'A', m);
93 needle[m] = '\0';
95 for (; repeat > 0; repeat--)
97 ASSERT (mbscasestr (haystack, needle) == NULL);
100 free (needle);
104 /* Check that the asymptotic worst-case complexity is not quadratic. */
106 size_t m = 1000000;
107 char *haystack = (char *) malloc (2 * m + 2);
108 char *needle = (char *) malloc (m + 2);
109 if (haystack != NULL && needle != NULL)
111 const char *result;
113 memset (haystack, 'A', 2 * m);
114 haystack[2 * m] = 'B';
115 haystack[2 * m + 1] = '\0';
117 memset (needle, 'a', m);
118 needle[m] = 'B';
119 needle[m + 1] = '\0';
121 result = mbscasestr (haystack, needle);
122 ASSERT (result == haystack + m);
124 free (needle);
125 free (haystack);
128 return test_exit_status;