tests: avoid several compiler warnings
[gnulib.git] / tests / test-fpurge.c
1 /* Test of fpurge() function.
2    Copyright (C) 2007-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 <stdlib.h>
24 #include <string.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 #define TESTFILE "t-fpurge.tmp"
39
40 int
41 main (void)
42 {
43   int check_filepos;
44
45   for (check_filepos = 0; check_filepos <= 1; check_filepos++)
46     {
47       FILE *fp;
48
49       /* Create a file with some contents.  */
50       fp = fopen (TESTFILE, "w");
51       if (fp == NULL)
52         goto skip;
53       if (fwrite ("foobarsh", 1, 8, fp) < 8)
54         goto skip;
55       if (fclose (fp))
56         goto skip;
57
58       /* The file's contents is now "foobarsh".  */
59
60       /* Open it in read-write mode.  */
61       fp = fopen (TESTFILE, "r+");
62       if (fp == NULL)
63         goto skip;
64       if (fseek (fp, 3, SEEK_CUR))
65         goto skip;
66       if (fwrite ("g", 1, 1, fp) < 1)
67         goto skip;
68       if (fflush (fp))
69         goto skip;
70       if (fwrite ("bz", 1, 2, fp) < 2)
71         goto skip;
72       /* Discard pending write.  */
73       ASSERT (fpurge (fp) == 0);
74       /* Verify that when discarding pending output, the file position is set
75          back to where it was before the write calls.  */
76       if (check_filepos)
77         ASSERT (ftell (fp) == 4);
78       ASSERT (fclose (fp) == 0);
79
80       /* Open it in read-only mode.  */
81       fp = fopen (TESTFILE, "r");
82       if (fp == NULL)
83         goto skip;
84       /* Verify that the pending writes before the fpurge were really
85          discarded.  */
86       {
87         char buf[8];
88         if (fread (buf, 1, 7, fp) < 7)
89           goto skip;
90         ASSERT (memcmp (buf, "foogars", 7) == 0);
91       }
92       /* Discard the buffered 'h'.  */
93       if (check_filepos)
94         ASSERT (ftell (fp) == 7);
95       ASSERT (fpurge (fp) == 0);
96       /* Verify that when discarding pending input, the file position is
97          advanced to match the end of the previously read input.  */
98       if (check_filepos)
99         ASSERT (ftell (fp) == 8);
100       ASSERT (getc (fp) == EOF);
101       ASSERT (fclose (fp) == 0);
102
103       /* The file's contents is now "foogarsh".  */
104
105       /* Ensure that purging a read does not corrupt subsequent writes.  */
106       fp = fopen (TESTFILE, "r+");
107       if (fp == NULL)
108         goto skip;
109       if (fseek (fp, -1, SEEK_END))
110         goto skip;
111       ASSERT (getc (fp) == 'h');
112       ASSERT (getc (fp) == EOF);
113       if (check_filepos)
114         ASSERT (ftell (fp) == 8);
115       ASSERT (fpurge (fp) == 0);
116       if (check_filepos)
117         ASSERT (ftell (fp) == 8);
118       ASSERT (putc ('!', fp) == '!');
119       ASSERT (fclose (fp) == 0);
120       fp = fopen (TESTFILE, "r");
121       if (fp == NULL)
122         goto skip;
123       {
124         char buf[10];
125         ASSERT (fread (buf, 1, 10, fp) == 9);
126         ASSERT (memcmp (buf, "foogarsh!", 9) == 0);
127       }
128       ASSERT (fclose (fp) == 0);
129
130       /* The file's contents is now "foogarsh!".  */
131     }
132
133   remove (TESTFILE);
134   return 0;
135
136  skip:
137   fprintf (stderr, "Skipping test: prerequisite file operations failed.\n");
138   remove (TESTFILE);
139   return 77;
140 }