Enhance fgetc, fputc tests.
[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     ASSERT (ferror (fp));
47     fclose (fp);
48   }
49
50   /* Test that fputc() on an unbuffered stream sets errno if the stream
51      was constructed with an invalid file descriptor.  */
52   {
53     FILE *fp = fdopen (-1, "w");
54     if (fp != NULL)
55       {
56         setvbuf (fp, NULL, _IONBF, 0);
57         errno = 0;
58         ASSERT (fputc ('x', fp) == EOF);
59         ASSERT (errno == EBADF);
60         ASSERT (ferror (fp));
61         fclose (fp);
62       }
63   }
64   {
65     FILE *fp = fdopen (99, "w");
66     if (fp != NULL)
67       {
68         setvbuf (fp, NULL, _IONBF, 0);
69         errno = 0;
70         ASSERT (fputc ('x', fp) == EOF);
71         ASSERT (errno == EBADF);
72         ASSERT (ferror (fp));
73         fclose (fp);
74       }
75   }
76
77   /* Clean up.  */
78   unlink (filename);
79
80   return 0;
81 }