tests: add signature checks
[gnulib.git] / tests / test-ftello.c
1 /* Test of ftello() 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 (ftello, off_t, (FILE *));
25
26 #include <stdlib.h>
27
28 #include "binary-io.h"
29
30 /* None of the files accessed by this test are large, so disable the
31    fseek link warning if we are not using the gnulib fseek module.  */
32 #if !GNULIB_FSEEK
33 # undef fseek
34 #endif
35
36 #define ASSERT(expr) \
37   do                                                                         \
38     {                                                                        \
39       if (!(expr))                                                           \
40         {                                                                    \
41           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
42           fflush (stderr);                                                   \
43           abort ();                                                          \
44         }                                                                    \
45     }                                                                        \
46   while (0)
47
48 #ifndef FUNC_UNGETC_BROKEN
49 # define FUNC_UNGETC_BROKEN 0
50 #endif
51
52 int
53 main (int argc, char **argv _GL_UNUSED)
54 {
55   int ch;
56   /* Assume stdin is seekable iff argc > 1.  */
57   if (argc == 1)
58     {
59       ASSERT (ftell (stdin) == -1);
60       ASSERT (ftello (stdin) == -1);
61       return 0;
62     }
63
64   /* mingw ftell is unreliable on text mode input.  */
65   SET_BINARY (0);
66
67   /* Simple tests.  For each test, make sure ftell and ftello agree.  */
68   ASSERT (ftell (stdin) == 0);
69   ASSERT (ftello (stdin) == 0);
70
71   ch = fgetc (stdin);
72   ASSERT (ch == '#');
73   ASSERT (ftell (stdin) == 1);
74   ASSERT (ftello (stdin) == 1);
75
76   /* Test ftell after ungetc of read input.  */
77   ch = ungetc ('#', stdin);
78   ASSERT (ch == '#');
79   ASSERT (ftell (stdin) == 0);
80   ASSERT (ftello (stdin) == 0);
81
82   ch = fgetc (stdin);
83   ASSERT (ch == '#');
84   ASSERT (ftell (stdin) == 1);
85   ASSERT (ftello (stdin) == 1);
86
87   /* Test ftell after fseek.  */
88   ASSERT (fseek (stdin, 2, SEEK_SET) == 0);
89   ASSERT (ftell (stdin) == 2);
90   ASSERT (ftello (stdin) == 2);
91
92   /* Test ftell after random ungetc.  */
93   ch = fgetc (stdin);
94   ASSERT (ch == '/');
95   ch = ungetc ('@', stdin);
96   ASSERT (ch == '@');
97   ASSERT (ftell (stdin) == 2);
98   ASSERT (ftello (stdin) == 2);
99
100   ch = fgetc (stdin);
101   ASSERT (ch == '@');
102   ASSERT (ftell (stdin) == 3);
103   ASSERT (ftello (stdin) == 3);
104
105   if (2 < argc)
106     {
107       if (FUNC_UNGETC_BROKEN)
108         {
109           fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
110                  stderr);
111           return 77;
112         }
113       /* Test ftell after ungetc without read.  */
114       ASSERT (fseek (stdin, 0, SEEK_CUR) == 0);
115       ASSERT (ftell (stdin) == 3);
116       ASSERT (ftello (stdin) == 3);
117
118       ch = ungetc ('~', stdin);
119       ASSERT (ch == '~');
120       ASSERT (ftell (stdin) == 2);
121       ASSERT (ftello (stdin) == 2);
122     }
123
124 #if !defined __MINT__ /* FreeMiNT has problems seeking past end of file */
125   /* Test ftell beyond end of file.  */
126   ASSERT (fseek (stdin, 0, SEEK_END) == 0);
127   ch = ftello (stdin);
128   ASSERT (fseek (stdin, 10, SEEK_END) == 0);
129   ASSERT (ftell (stdin) == ch + 10);
130   ASSERT (ftello (stdin) == ch + 10);
131 #endif
132
133   return 0;
134 }