Tests for function fputc().
[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 "macros.h"
30
31 int
32 main (int argc, char **argv)
33 {
34   const char *filename = "test-fputc.txt";
35
36   /* Test that fputc() on an unbuffered stream sets errno if someone else
37      closes the stream fd behind the back of stdio.  */
38   {
39     FILE *fp = fopen (filename, "w");
40     ASSERT (fp != NULL);
41     setvbuf (fp, NULL, _IONBF, 0);
42     ASSERT (close (fileno (fp)) == 0);
43     errno = 0;
44     ASSERT (fputc ('x', fp) == EOF);
45     ASSERT (errno == EBADF);
46     fclose (fp);
47   }
48
49   /* Test that fputc() on an unbuffered stream sets errno if the stream
50      was constructed with an invalid file descriptor.  */
51   {
52     FILE *fp = fdopen (-1, "w");
53     if (fp != NULL)
54       {
55         setvbuf (fp, NULL, _IONBF, 0);
56         errno = 0;
57         ASSERT (fputc ('x', fp) == EOF);
58         ASSERT (errno == EBADF);
59         fclose (fp);
60       }
61   }
62   {
63     FILE *fp = fdopen (99, "w");
64     if (fp != NULL)
65       {
66         setvbuf (fp, NULL, _IONBF, 0);
67         errno = 0;
68         ASSERT (fputc ('x', fp) == EOF);
69         ASSERT (errno == EBADF);
70         fclose (fp);
71       }
72   }
73
74   /* Clean up.  */
75   unlink (filename);
76
77   return 0;
78 }