fflush, freadseek: use fseeko, not fseek
[gnulib.git] / tests / test-fseeko.c
1 /* Test of fseeko() function.
2    Copyright (C) 2007, 2008, 2009 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 Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23
24 /* None of the files accessed by this test are large, so disable the
25    fseek link warning if we are not using the gnulib fseek module.  */
26 #if !GNULIB_FSEEK
27 # undef fseek
28 #endif
29
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           fflush (stderr);                                                   \
37           abort ();                                                          \
38         }                                                                    \
39     }                                                                        \
40   while (0)
41
42 #ifndef FUNC_UNGETC_BROKEN
43 # define FUNC_UNGETC_BROKEN 0
44 #endif
45
46 int
47 main (int argc, char **argv)
48 {
49   /* Assume stdin is non-empty, seekable, and starts with '#!/bin/sh'
50      iff argc > 1.  */
51   int expected = argc > 1 ? 0 : -1;
52   /* Exit with success only if fseek/fseeko agree.  */
53   int r1 = fseeko (stdin, 0, SEEK_CUR);
54   int r2 = fseek (stdin, 0, SEEK_CUR);
55   ASSERT (r1 == r2 && r1 == expected);
56   if (argc > 1)
57     {
58       /* Test that fseek discards previously read ungetc data.  */
59       int ch = fgetc (stdin);
60       ASSERT (ch == '#');
61       ASSERT (ungetc (ch, stdin) == ch);
62       ASSERT (fseeko (stdin, 2, SEEK_SET) == 0);
63       ch = fgetc (stdin);
64       ASSERT (ch == '/');
65       if (2 < argc)
66         {
67           if (FUNC_UNGETC_BROKEN)
68             {
69               fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
70                      stderr);
71               return 77;
72             }
73           /* Test that fseek discards random ungetc data.  */
74           ASSERT (ungetc (ch ^ 0xff, stdin) == (ch ^ 0xff));
75         }
76       ASSERT (fseeko (stdin, 0, SEEK_END) == 0);
77       ASSERT (fgetc (stdin) == EOF);
78       /* Test that fseek resets end-of-file marker.  */
79       ASSERT (feof (stdin));
80       ASSERT (fseeko (stdin, 0, SEEK_END) == 0);
81       ASSERT (!feof (stdin));
82     }
83   return 0;
84 }