f2f341f6bd47ff5c2b80bee5737b71e23836eb88
[gnulib.git] / tests / test-strchrnul.c
1 /*
2  * Copyright (C) 2008, 2009 Free Software Foundation
3  * Written by Eric Blake and Bruno Haible
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include <string.h>
21
22 #include "signature.h"
23 SIGNATURE_CHECK (strchrnul, char *, (char const *, int));
24
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #define ASSERT(expr) \
29   do                                                                        \
30     {                                                                       \
31       if (!(expr))                                                      \
32         {                                                               \
33           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
34           fflush (stderr);                                              \
35           abort ();                                                     \
36         }                                                               \
37     }                                                                   \
38   while (0)
39
40 int
41 main (void)
42 {
43   size_t n = 0x100000;
44   char *input = malloc (n + 1);
45   ASSERT (input);
46
47   input[0] = 'a';
48   input[1] = 'b';
49   memset (input + 2, 'c', 1024);
50   memset (input + 1026, 'd', n - 1028);
51   input[n - 2] = 'e';
52   input[n - 1] = 'a';
53   input[n] = '\0';
54
55   /* Basic behavior tests.  */
56   ASSERT (strchrnul (input, 'a') == input);
57   ASSERT (strchrnul (input, 'b') == input + 1);
58   ASSERT (strchrnul (input, 'c') == input + 2);
59   ASSERT (strchrnul (input, 'd') == input + 1026);
60
61   ASSERT (strchrnul (input + 1, 'a') == input + n - 1);
62   ASSERT (strchrnul (input + 1, 'e') == input + n - 2);
63
64   ASSERT (strchrnul (input, 'f') == input + n);
65   ASSERT (strchrnul (input, '\0') == input + n);
66
67   /* Check that a very long haystack is handled quickly if the byte is
68      found near the beginning.  */
69   {
70     size_t repeat = 10000;
71     for (; repeat > 0; repeat--)
72       {
73         ASSERT (strchrnul (input, 'c') == input + 2);
74       }
75   }
76
77   /* Alignment tests.  */
78   {
79     int i, j;
80     for (i = 0; i < 32; i++)
81       {
82         for (j = 0; j < 256; j++)
83           input[i + j] = (j + 1) & 0xff;
84         for (j = 1; j < 256; j++)
85           {
86             ASSERT (strchrnul (input + i, j) == input + i + j - 1);
87             input[i + j - 1] = (j == 1 ? 2 : 1);
88             ASSERT (strchrnul (input + i, j) == input + i + 255);
89             input[i + j - 1] = j;
90           }
91       }
92   }
93
94   free (input);
95
96   return 0;
97 }