tests: add signature checks
[gnulib.git] / tests / test-ftell.c
1 /* Test of ftell() 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 (ftell, long, (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)
54 {
55   int ch;
56   /* Assume stdin is seekable iff argc > 1.  */
57   if (argc == 1)
58     {
59       ASSERT (ftell (stdin) == -1);
60       return 0;
61     }
62
63   /* mingw ftell is unreliable on text mode input.  */
64   SET_BINARY (0);
65
66   /* Simple tests.  */
67   ASSERT (ftell (stdin) == 0);
68
69   ch = fgetc (stdin);
70   ASSERT (ch == '#');
71   ASSERT (ftell (stdin) == 1);
72
73   /* Test ftell after ungetc of read input.  */
74   ch = ungetc ('#', stdin);
75   ASSERT (ch == '#');
76   ASSERT (ftell (stdin) == 0);
77
78   ch = fgetc (stdin);
79   ASSERT (ch == '#');
80   ASSERT (ftell (stdin) == 1);
81
82   /* Test ftell after fseek.  */
83   ASSERT (fseek (stdin, 2, SEEK_SET) == 0);
84   ASSERT (ftell (stdin) == 2);
85
86   /* Test ftell after random ungetc.  */
87   ch = fgetc (stdin);
88   ASSERT (ch == '/');
89   ch = ungetc ('@', stdin);
90   ASSERT (ch == '@');
91   ASSERT (ftell (stdin) == 2);
92
93   ch = fgetc (stdin);
94   ASSERT (ch == '@');
95   ASSERT (ftell (stdin) == 3);
96
97   if (2 < argc)
98     {
99       if (FUNC_UNGETC_BROKEN)
100         {
101           fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
102                  stderr);
103           return 77;
104         }
105       /* Test ftell after ungetc without read.  */
106       ASSERT (fseek (stdin, 0, SEEK_CUR) == 0);
107       ASSERT (ftell (stdin) == 3);
108
109       ch = ungetc ('~', stdin);
110       ASSERT (ch == '~');
111       ASSERT (ftell (stdin) == 2);
112     }
113
114 #if !defined __MINT__ /* FreeMiNT has problems seeking past end of file */
115   /* Test ftell beyond end of file.  */
116   ASSERT (fseek (stdin, 0, SEEK_END) == 0);
117   ch = ftell (stdin);
118   ASSERT (fseek (stdin, 10, SEEK_END) == 0);
119   ASSERT (ftell (stdin) == ch + 10);
120 #endif
121
122   return 0;
123 }