Put unit test for i-ring module into a normal test module.
[gnulib.git] / tests / test-i-ring.c
1 /* Test the simple ring buffer.
2    Copyright (C) 2006-2007 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>.  */
16
17 /* written by Jim Meyering */
18
19 #include <config.h>
20
21 #include "i-ring.h"
22
23 #include <stdio.h>
24 #include <stdlib.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   I_ring ir;
41   i_ring_init (&ir, -1);
42   int o = i_ring_push (&ir, 1);
43   ASSERT (o == -1);
44   o = i_ring_push (&ir, 2);
45   ASSERT (o == -1);
46   o = i_ring_push (&ir, 3);
47   ASSERT (o == -1);
48   o = i_ring_push (&ir, 4);
49   ASSERT (o == -1);
50   o = i_ring_push (&ir, 5);
51   ASSERT (o == 1);
52   o = i_ring_push (&ir, 6);
53   ASSERT (o == 2);
54   o = i_ring_push (&ir, 7);
55   ASSERT (o == 3);
56
57   o = i_ring_pop (&ir);
58   ASSERT (o == 7);
59   o = i_ring_pop (&ir);
60   ASSERT (o == 6);
61   o = i_ring_pop (&ir);
62   ASSERT (o == 5);
63   o = i_ring_pop (&ir);
64   ASSERT (o == 4);
65   ASSERT (i_ring_empty (&ir));
66
67   o = i_ring_push (&ir, 8);
68   ASSERT (o == -1);
69   o = i_ring_pop (&ir);
70   ASSERT (o == 8);
71   ASSERT (i_ring_empty (&ir));
72
73   return 0;
74 }