4447a9b6f7352d5da685020163f232df9ce79c54
[gnulib.git] / tests / test-fseek.c
1 /* Test of fseek() 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
23 #include "signature.h"
24 SIGNATURE_CHECK (fseek, int, (FILE *, long, int));
25
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 #ifndef FUNC_UNGETC_BROKEN
41 # define FUNC_UNGETC_BROKEN 0
42 #endif
43
44 int
45 main (int argc, char **argv)
46 {
47   /* Assume stdin is non-empty, seekable, and starts with '#!/bin/sh'
48      iff argc > 1.  */
49   int expected = argc > 1 ? 0 : -1;
50   ASSERT (fseek (stdin, 0, SEEK_CUR) == expected);
51   if (argc > 1)
52     {
53       /* Test that fseek discards previously read ungetc data.  */
54       int ch = fgetc (stdin);
55       ASSERT (ch == '#');
56       ASSERT (ungetc (ch, stdin) == ch);
57       ASSERT (fseek (stdin, 2, SEEK_SET) == 0);
58       ch = fgetc (stdin);
59       ASSERT (ch == '/');
60       if (2 < argc)
61         {
62           if (FUNC_UNGETC_BROKEN)
63             {
64               fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
65                      stderr);
66               return 77;
67             }
68           /* Test that fseek discards random ungetc data.  */
69           ASSERT (ungetc (ch ^ 0xff, stdin) == (ch ^ 0xff));
70         }
71       ASSERT (fseek (stdin, 0, SEEK_END) == 0);
72       ASSERT (fgetc (stdin) == EOF);
73       /* Test that fseek resets end-of-file marker.  */
74       ASSERT (feof (stdin));
75       ASSERT (fseek (stdin, 0, SEEK_END) == 0);
76       ASSERT (!feof (stdin));
77     }
78   return 0;
79 }