finalise NEWS.stable
[gnulib.git] / tests / test-fputc.c
1 /* Test of fputc() 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 (fputc, int, (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-fputc.txt";
37
38   /* We don't have an fputc() 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   /* Test that fputc() on an unbuffered stream sets errno if someone else
46      closes the stream fd behind the back of stdio.  */
47   {
48     FILE *fp = fopen (filename, "w");
49     ASSERT (fp != NULL);
50     setvbuf (fp, NULL, _IONBF, 0);
51     ASSERT (close (fileno (fp)) == 0);
52     errno = 0;
53     ASSERT (fputc ('x', fp) == EOF);
54     ASSERT (errno == EBADF);
55     ASSERT (ferror (fp));
56     fclose (fp);
57   }
58
59   /* Test that fputc() on an unbuffered stream sets errno if the stream
60      was constructed with an invalid file descriptor.  */
61   {
62     FILE *fp = fdopen (-1, "w");
63     if (fp != NULL)
64       {
65         setvbuf (fp, NULL, _IONBF, 0);
66         errno = 0;
67         ASSERT (fputc ('x', fp) == EOF);
68         ASSERT (errno == EBADF);
69         ASSERT (ferror (fp));
70         fclose (fp);
71       }
72   }
73   {
74     FILE *fp = fdopen (99, "w");
75     if (fp != NULL)
76       {
77         setvbuf (fp, NULL, _IONBF, 0);
78         errno = 0;
79         ASSERT (fputc ('x', fp) == EOF);
80         ASSERT (errno == EBADF);
81         ASSERT (ferror (fp));
82         fclose (fp);
83       }
84   }
85
86   /* Clean up.  */
87   unlink (filename);
88
89   return 0;
90 }