b7372b597538458c2e8d3a42e3f3f195f13ed4f0
[platform/upstream/diffutils.git] / gnulib-tests / test-mbsstr1.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Test of searching in a string.
4    Copyright (C) 2007-2011 Free Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
20
21 #include <config.h>
22
23 #include <string.h>
24
25 #include <stdlib.h>
26
27 #include "macros.h"
28
29 int
30 main ()
31 {
32   /* This test is executed in the C locale.  */
33
34   {
35     const char input[] = "foo";
36     const char *result = mbsstr (input, "");
37     ASSERT (result == input);
38   }
39
40   {
41     const char input[] = "foo";
42     const char *result = mbsstr (input, "o");
43     ASSERT (result == input + 1);
44   }
45
46   {
47     const char input[] = "ABC ABCDAB ABCDABCDABDE";
48     const char *result = mbsstr (input, "ABCDABD");
49     ASSERT (result == input + 15);
50   }
51
52   {
53     const char input[] = "ABC ABCDAB ABCDABCDABDE";
54     const char *result = mbsstr (input, "ABCDABE");
55     ASSERT (result == NULL);
56   }
57
58   /* Check that a very long haystack is handled quickly if the needle is
59      short and occurs near the beginning.  */
60   {
61     size_t repeat = 10000;
62     size_t m = 1000000;
63     const char *needle =
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 (mbsstr (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     const 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 (mbsstr (haystack, needle) == NULL);
99           }
100
101         free (needle);
102       }
103   }
104
105   /* Check that the asymptotic worst-case complexity is not quadratic.  */
106   {
107     size_t m = 1000000;
108     char *haystack = (char *) malloc (2 * m + 2);
109     char *needle = (char *) malloc (m + 2);
110     if (haystack != NULL && needle != NULL)
111       {
112         const char *result;
113
114         memset (haystack, 'A', 2 * m);
115         haystack[2 * m] = 'B';
116         haystack[2 * m + 1] = '\0';
117
118         memset (needle, 'A', m);
119         needle[m] = 'B';
120         needle[m + 1] = '\0';
121
122         result = mbsstr (haystack, needle);
123         ASSERT (result == haystack + m);
124       }
125     free (needle);
126     free (haystack);
127   }
128
129   return 0;
130 }