d3401ee419aef15e49fa4c797102d9cc4cd19593
[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 #include <stdlib.h>
23
24 #include "binary-io.h"
25
26 #define ASSERT(expr) \
27   do                                                                         \
28     {                                                                        \
29       if (!(expr))                                                           \
30         {                                                                    \
31           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
32           fflush (stderr);                                                   \
33           abort ();                                                          \
34         }                                                                    \
35     }                                                                        \
36   while (0)
37
38 #ifndef FUNC_UNGETC_BROKEN
39 # define FUNC_UNGETC_BROKEN 0
40 #endif
41
42 int
43 main (int argc, char **argv)
44 {
45   int ch;
46   /* Assume stdin is seekable iff argc > 1.  */
47   if (argc == 1)
48     {
49       ASSERT (ftell (stdin) == -1);
50       ASSERT (ftello (stdin) == -1);
51       return 0;
52     }
53
54   /* mingw ftell is unreliable on text mode input.  */
55   SET_BINARY (0);
56
57   /* Simple tests.  For each test, make sure ftell and ftello agree.  */
58   ASSERT (ftell (stdin) == 0);
59   ASSERT (ftello (stdin) == 0);
60
61   ch = fgetc (stdin);
62   ASSERT (ch == '#');
63   ASSERT (ftell (stdin) == 1);
64   ASSERT (ftello (stdin) == 1);
65
66   /* Test ftell after ungetc of read input.  */
67   ch = ungetc ('#', stdin);
68   ASSERT (ch == '#');
69   ASSERT (ftell (stdin) == 0);
70   ASSERT (ftello (stdin) == 0);
71
72   ch = fgetc (stdin);
73   ASSERT (ch == '#');
74   ASSERT (ftell (stdin) == 1);
75   ASSERT (ftello (stdin) == 1);
76
77   /* Test ftell after fseek.  */
78   ASSERT (fseek (stdin, 2, SEEK_SET) == 0);
79   ASSERT (ftell (stdin) == 2);
80   ASSERT (ftello (stdin) == 2);
81
82   /* Test ftell after random ungetc.  */
83   ch = fgetc (stdin);
84   ASSERT (ch == '/');
85   ch = ungetc ('@', stdin);
86   ASSERT (ch == '@');
87   ASSERT (ftell (stdin) == 2);
88   ASSERT (ftello (stdin) == 2);
89
90   ch = fgetc (stdin);
91   ASSERT (ch == '@');
92   ASSERT (ftell (stdin) == 3);
93   ASSERT (ftello (stdin) == 3);
94
95   if (2 < argc)
96     {
97       if (FUNC_UNGETC_BROKEN)
98         {
99           fputs ("Skipping test: ungetc cannot handle arbitrary bytes\n",
100                  stderr);
101           return 77;
102         }
103       /* Test ftell after ungetc without read.  */
104       ASSERT (fseek (stdin, 0, SEEK_CUR) == 0);
105       ASSERT (ftell (stdin) == 3);
106       ASSERT (ftello (stdin) == 3);
107
108       ch = ungetc ('~', stdin);
109       ASSERT (ch == '~');
110       ASSERT (ftell (stdin) == 2);
111       ASSERT (ftello (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 = ftello (stdin);
118   ASSERT (fseek (stdin, 10, SEEK_END) == 0);
119   ASSERT (ftell (stdin) == ch + 10);
120   ASSERT (ftello (stdin) == ch + 10);
121 #endif
122
123   return 0;
124 }