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