fgetc, fputc, fread, fwrite tests: Fix link error.
[gnulib.git] / tests / test-fgetc.c
1 /* Test of fgetc() function.
2    Copyright (C) 2011 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, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 #include <config.h>
19
20 #include <stdio.h>
21
22 #include "signature.h"
23 SIGNATURE_CHECK (fgetc, int, (FILE *));
24
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28
29 #include "msvc-inval.h"
30
31 #include "macros.h"
32
33 int
34 main (int argc, char **argv)
35 {
36   const char *filename = "test-fgetc.txt";
37
38   /* We don't have an fgetc() function that installs an invalid parameter
39      handler so far.  So install that handler here, explicitly.  */
40 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \
41     && MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING
42   gl_msvc_inval_ensure_handler ();
43 #endif
44
45   /* Prepare a file.  */
46   {
47     const char text[] = "hello world";
48     int fd = open (filename, O_RDWR | O_CREAT | O_TRUNC, 0600);
49     ASSERT (fd >= 0);
50     ASSERT (write (fd, text, sizeof (text)) == sizeof (text));
51     ASSERT (close (fd) == 0);
52   }
53
54   /* Test that fgetc() sets errno if someone else closes the stream
55      fd behind the back of stdio.  */
56   {
57     FILE *fp = fopen (filename, "r");
58     ASSERT (fp != NULL);
59     ASSERT (close (fileno (fp)) == 0);
60     errno = 0;
61     ASSERT (fgetc (fp) == EOF);
62     ASSERT (errno == EBADF);
63     ASSERT (ferror (fp));
64     fclose (fp);
65   }
66
67   /* Test that fgetc() sets errno if the stream was constructed with
68      an invalid file descriptor.  */
69   {
70     FILE *fp = fdopen (-1, "r");
71     if (fp != NULL)
72       {
73         errno = 0;
74         ASSERT (fgetc (fp) == EOF);
75         ASSERT (errno == EBADF);
76         ASSERT (ferror (fp));
77         fclose (fp);
78       }
79   }
80   {
81     FILE *fp = fdopen (99, "r");
82     if (fp != NULL)
83       {
84         errno = 0;
85         ASSERT (fgetc (fp) == EOF);
86         ASSERT (errno == EBADF);
87         ASSERT (ferror (fp));
88         fclose (fp);
89       }
90   }
91
92   /* Clean up.  */
93   unlink (filename);
94
95   return 0;
96 }