1 /* Test of uN_strstr() functions.
2 Copyright (C) 2004, 2007-2017 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 <http://www.gnu.org/licenses/>. */
21 const UNIT input
[] = { 'f', 'o', 'o', 0 };
22 const UNIT needle
[] = { 0 };
23 const UNIT
*result
= U_STRSTR (input
, needle
);
24 ASSERT (result
== input
);
28 const UNIT input
[] = { 'f', 'o', 'o', 0 };
29 const UNIT needle
[] = { 'o', 0 };
30 const UNIT
*result
= U_STRSTR (input
, needle
);
31 ASSERT (result
== input
+ 1);
36 { 'A', 'B', 'C', ' ', 'A', 'B', 'C', 'D', 'A', 'B', ' ', 'A', 'B', 'C',
37 'D', 'A', 'B', 'C', 'D', 'A', 'B', 'D', 'E', 0
39 const UNIT needle
[] = { 'A', 'B', 'C', 'D', 'A', 'B', 'D', 0 };
40 const UNIT
*result
= U_STRSTR (input
, needle
);
41 ASSERT (result
== input
+ 15);
46 { 'A', 'B', 'C', ' ', 'A', 'B', 'C', 'D', 'A', 'B', ' ', 'A', 'B', 'C',
47 'D', 'A', 'B', 'C', 'D', 'A', 'B', 'D', 'E', 0
49 const UNIT needle
[] = { 'A', 'B', 'C', 'D', 'A', 'B', 'E', 0 };
50 const UNIT
*result
= U_STRSTR (input
, needle
);
51 ASSERT (result
== NULL
);
56 { 'A', 'B', 'C', ' ', 'A', 'B', 'C', 'D', 'A', 'B', ' ', 'A', 'B', 'C',
57 'D', 'A', 'B', 'C', 'D', 'A', 'B', 'D', 'E', 0
59 const UNIT needle
[] = { 'A', 'B', 'C', 'D', 'A', 'B', 'C', 'D', 0 };
60 const UNIT
*result
= U_STRSTR (input
, needle
);
61 ASSERT (result
== input
+ 11);
64 /* Check that a long periodic needle does not cause false positives. */
67 { 'F', '_', 'B', 'D', '_', 'C', 'E', '_', 'B', 'D', '_', 'E', 'F',
68 '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F',
69 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
70 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'C', '3',
71 '_', '8', '8', '_', '2', '0', '_', 'E', 'F', '_', 'B', 'F',
72 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
73 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'C', '3',
74 '_', 'A', '7', '_', '2', '0', '_', 'E', 'F', '_', 'B', 'F',
78 { '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F',
79 '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F',
80 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
81 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', 0
83 const UNIT
*result
= U_STRSTR (input
, needle
);
84 ASSERT (result
== NULL
);
88 { 'F', '_', 'B', 'D', '_', 'C', 'E', '_', 'B', 'D', '_', 'E', 'F',
89 '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F',
90 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
91 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'C', '3',
92 '_', '8', '8', '_', '2', '0', '_', 'E', 'F', '_', 'B', 'F',
93 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
94 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'C', '3',
95 '_', 'A', '7', '_', '2', '0', '_', 'E', 'F', '_', 'B', 'F',
96 '_', 'B', 'D', '_', 'D', 'A', '_', 'B', '5', '_', 'C', '2',
97 '_', 'A', '6', '_', '2', '0', '_', 'E', 'F', '_', 'B', 'F',
98 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
99 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F',
100 '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F',
103 const UNIT needle
[] =
104 { '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F',
105 '_', 'B', 'F', '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F',
106 '_', 'B', 'D', '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D',
107 '_', 'E', 'F', '_', 'B', 'F', '_', 'B', 'D', 0
109 const UNIT
*result
= U_STRSTR (input
, needle
);
110 ASSERT (result
== input
+ 115);
113 /* Check that a very long haystack is handled quickly if the needle is
114 short and occurs near the beginning. */
116 size_t repeat
= 10000;
118 const UNIT needle
[] =
119 { 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
120 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
121 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
122 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
123 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
124 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
125 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
126 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
127 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
128 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 0
130 UNIT
*haystack
= (UNIT
*) malloc ((m
+ 1) * sizeof (UNIT
));
131 if (haystack
!= NULL
)
136 for (i
= 1; i
< m
; i
++)
140 for (; repeat
> 0; repeat
--)
142 ASSERT (U_STRSTR (haystack
, needle
) == haystack
+ 1);
149 /* Check that a very long needle is discarded quickly if the haystack is
152 size_t repeat
= 10000;
154 const UNIT haystack
[] =
155 { 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
156 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
157 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
158 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A',
159 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'A', 'B',
160 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B',
161 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B',
162 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B',
163 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B',
164 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 'A', 'B', 0
166 UNIT
*needle
= (UNIT
*) malloc ((m
+ 1) * sizeof (UNIT
));
171 for (i
= 0; i
< m
; i
++)
175 for (; repeat
> 0; repeat
--)
177 ASSERT (U_STRSTR (haystack
, needle
) == NULL
);
184 /* Check that the asymptotic worst-case complexity is not quadratic. */
187 UNIT
*haystack
= (UNIT
*) malloc ((2 * m
+ 2) * sizeof (UNIT
));
188 UNIT
*needle
= (UNIT
*) malloc ((m
+ 2) * sizeof (UNIT
));
189 if (haystack
!= NULL
&& needle
!= NULL
)
194 for (i
= 0; i
< 2 * m
; i
++)
196 haystack
[2 * m
] = 'B';
197 haystack
[2 * m
+ 1] = 0;
199 for (i
= 0; i
< m
; i
++)
204 result
= U_STRSTR (haystack
, needle
);
205 ASSERT (result
== haystack
+ m
);