1 /* Test of searching in a string.
2 Copyright (C) 2007-2018 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. */
30 /* This test is executed in the C locale. */
33 const char input
[] = "foo";
34 const char *result
= mbsstr (input
, "");
35 ASSERT (result
== input
);
39 const char input
[] = "foo";
40 const char *result
= mbsstr (input
, "o");
41 ASSERT (result
== input
+ 1);
45 const char input
[] = "ABC ABCDAB ABCDABCDABDE";
46 const char *result
= mbsstr (input
, "ABCDABD");
47 ASSERT (result
== input
+ 15);
51 const char input
[] = "ABC ABCDAB ABCDABCDABDE";
52 const char *result
= mbsstr (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;
62 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
63 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
64 char *haystack
= (char *) malloc (m
+ 1);
67 memset (haystack
, 'A', m
);
71 for (; repeat
> 0; repeat
--)
73 ASSERT (mbsstr (haystack
, needle
) == haystack
+ 1);
80 /* Check that a very long needle is discarded quickly if the haystack is
83 size_t repeat
= 10000;
85 const char *haystack
=
86 "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
87 "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
88 char *needle
= (char *) malloc (m
+ 1);
91 memset (needle
, 'A', m
);
94 for (; repeat
> 0; repeat
--)
96 ASSERT (mbsstr (haystack
, needle
) == NULL
);
103 /* Check that the asymptotic worst-case complexity is not quadratic. */
106 char *haystack
= (char *) malloc (2 * m
+ 2);
107 char *needle
= (char *) malloc (m
+ 2);
108 if (haystack
!= NULL
&& needle
!= NULL
)
112 memset (haystack
, 'A', 2 * m
);
113 haystack
[2 * m
] = 'B';
114 haystack
[2 * m
+ 1] = '\0';
116 memset (needle
, 'A', m
);
118 needle
[m
+ 1] = '\0';
120 result
= mbsstr (haystack
, needle
);
121 ASSERT (result
== haystack
+ m
);