New module 'memchr2'.
[gnulib.git] / tests / test-memchr2.c
1 /*
2  * Copyright (C) 2008 Free Software Foundation
3  * Written by Eric Blake
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 "memchr2.h"
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #define ASSERT(expr) \
27   do                                                                         \
28     {                                                                        \
29       if (!(expr))                                                           \
30         {                                                                    \
31           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
32           abort ();                                                          \
33         }                                                                    \
34     }                                                                        \
35   while (0)
36
37 int
38 main ()
39 {
40   size_t n = 0x100000;
41   char *input = malloc (n);
42   ASSERT (input);
43
44   input[0] = 'a';
45   input[1] = 'b';
46   memset (input + 2, 'c', 1024);
47   memset (input + 1026, 'd', n - 1028);
48   input[n - 2] = 'e';
49   input[n - 1] = 'a';
50
51   ASSERT (memchr2 (input, 'a', 'b', n) == input);
52   ASSERT (memchr2 (input, 'b', 'a', n) == input);
53
54   ASSERT (memchr2 (input, 'a', 'b', 0) == NULL);
55   ASSERT (memchr2 (NULL, 'a', 'b', 0) == NULL);
56
57   ASSERT (memchr2 (input, 'b', 'd', n) == input + 1);
58   ASSERT (memchr2 (input + 2, 'b', 'd', n - 2) == input + 1026);
59
60   ASSERT (memchr2 (input, 'd', 'e', n) == input + 1026);
61   ASSERT (memchr2 (input, 'e', 'd', n) == input + 1026);
62
63   ASSERT (memchr2 (input + 1, 'a', 'e', n - 1) == input + n - 2);
64   ASSERT (memchr2 (input + 1, 'e', 'a', n - 1) == input + n - 2);
65
66   ASSERT (memchr2 (input, 'f', 'g', n) == NULL);
67   ASSERT (memchr2 (input, 'f', '\0', n) == NULL);
68
69   ASSERT (memchr2 (input, 'a', 'a', n) == input);
70   ASSERT (memchr2 (input + 1, 'a', 'a', n - 1) == input + n - 1);
71   ASSERT (memchr2 (input, 'f', 'f', n) == NULL);
72
73   /* Check that a very long haystack is handled quickly if one of the
74      two bytes is found near the beginning.  */
75   {
76     size_t repeat = 10000;
77     for (; repeat > 0; repeat--)
78       {
79         ASSERT (memchr2 (input, 'c', 'e', n) == input + 2);
80         ASSERT (memchr2 (input, 'e', 'c', n) == input + 2);
81         ASSERT (memchr2 (input, 'c', '\0', n) == input + 2);
82         ASSERT (memchr2 (input, '\0', 'c', n) == input + 2);
83       }
84   }
85
86   free (input);
87
88   return 0;
89 }