Refactor common macros used in tests.
[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 "macros.h"
27
28 #ifndef FUNC_UNGETC_BROKEN
29 # define FUNC_UNGETC_BROKEN 0
30 #endif
31
32 int
33 main (int argc, char **argv)
34 {
35   /* Assume stdin is non-empty, seekable, and starts with '#!/bin/sh'
36      iff argc > 1.  */
37   int expected = argc > 1 ? 0 : -1;
38   ASSERT (fseek (stdin, 0, SEEK_CUR) == expected);
39   if (argc > 1)
40     {
41       /* Test that fseek discards previously read ungetc data.  */
42       int ch = fgetc (stdin);
43       ASSERT (ch == '#');
44       ASSERT (ungetc (ch, stdin) == ch);
45       ASSERT (fseek (stdin, 2, SEEK_SET) == 0);
46       ch = fgetc (stdin);
47       ASSERT (ch == '/');
48       if (2 < argc)
49         {
50           if (FUNC_UNGETC_BROKEN)
51             {
52               fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
53                      stderr);
54               return 77;
55             }
56           /* Test that fseek discards random ungetc data.  */
57           ASSERT (ungetc (ch ^ 0xff, stdin) == (ch ^ 0xff));
58         }
59       ASSERT (fseek (stdin, 0, SEEK_END) == 0);
60       ASSERT (fgetc (stdin) == EOF);
61       /* Test that fseek resets end-of-file marker.  */
62       ASSERT (feof (stdin));
63       ASSERT (fseek (stdin, 0, SEEK_END) == 0);
64       ASSERT (!feof (stdin));
65     }
66   return 0;
67 }