2 Copyright (C) 2015-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
23 #include <sys/types.h>
26 /* Check fmemopen with user provided buffer open for write. */
28 do_test_with_buffer (void)
32 const size_t nbuf
= sizeof (buf
);
34 FILE *fp
= fmemopen (buf
, nbuf
, "w");
37 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__
);
41 /* Default write operation, check if file position is correct after it. */
42 static const char str
[] = "hello world";
43 const size_t nstr
= sizeof (str
) - 1;
45 off_t o
= ftello (fp
);
48 printf ("FAIL: first ftello returned %jd, expected %zu\n",
53 /* Rewind stream and seek tests, the position size should be equal to
54 buffer size provided in open function. */
59 printf ("FAIL: second ftello returned %jd, expected 0\n",
63 if (fseeko (fp
, 0, SEEK_END
) != 0)
65 printf ("FAIL: fseeko failed\n");
71 printf ("FAIL: third ftello returned %jd, expected %zu\n",
76 /* Rewind the stream and recheck by using a shorter string. */
78 static const char str2
[] = "just hello";
79 const size_t nstr2
= sizeof (str2
) - 1;
80 assert (nstr2
< nstr
);
85 printf ("FAIL: fourth ftello returned %jd, expected %zu\n",
91 /* Again, but now with a larger string. */
92 static const char str3
[] = "just hellod";
93 if (strcmp (buf
, str3
) != 0)
95 printf ("FAIL: final string is \"%s\", expected \"%s\"\n",
102 /* Check fmemopen without user provided buffer open for write. */
104 do_test_without_buffer (void)
107 const size_t nbuf
= 100;
109 FILE *fp
= fmemopen (NULL
, nbuf
, "w");
112 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__
);
116 static const char str
[] = "hello world";
117 const size_t nstr
= sizeof (str
) - 1;
119 /* Default write operation, check if file position is correct after it. */
121 off_t o
= ftello (fp
);
124 printf ("FAIL: first ftello returned %jd, expected %zu\n",
128 if (fseeko (fp
, 0, SEEK_END
) != 0)
130 printf ("FAIL: fseeko failed\n");
136 printf ("FAIL: second ftello returned %jd, expected %zu\n",
141 /* Rewind the stream and recheck by using a shorter string. */
143 static const char str2
[] = "just hello";
144 const size_t nstr2
= sizeof (str2
) - 1;
145 assert (nstr2
< nstr
);
150 printf ("FAIL: third ftello returned %jd, expected %zu\n",
151 (intmax_t) o
, nstr2
);
159 /* Check fmemopen with a buffer lenght of zero. */
161 do_test_length_zero (void)
165 #define BUFCONTENTS "testing buffer"
166 char buf
[100] = BUFCONTENTS
;
167 const size_t nbuf
= 0;
170 fp
= fmemopen (buf
, nbuf
, "r");
173 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__
);
177 /* Reading any data on a zero-length buffer should return EOF. */
178 if ((r
= fgetc (fp
)) != EOF
)
180 printf ("FAIL: fgetc on a zero-length returned: %d\n", r
);
183 off_t o
= ftello (fp
);
186 printf ("FAIL: first ftello returned %jd, expected 0\n",
192 /* Writing any data shall start at current position and shall not pass
193 current buffer size beyond the size in fmemopen call. */
194 fp
= fmemopen (buf
, nbuf
, "w");
197 printf ("FAIL: second fmemopen failed (%s)\n", __FUNCTION__
);
201 static const char str
[] = "hello world";
202 /* Because of buffering, the fputs call itself will not fail. However the
203 final buffer should be not changed because length 0 was passed to the
208 if (fflush (fp
) != EOF
)
210 printf ("FAIL: fflush did not return EOF\n");
216 printf ("FAIL: errno is %i (expected ENOSPC)\n", errno
);
223 if (strcmp (buf
, BUFCONTENTS
) != 0)
225 printf ("FAIL: strcmp (%s, %s) failed\n", buf
, BUFCONTENTS
);
229 /* Different than 'w' mode, 'w+' truncates the buffer. */
230 fp
= fmemopen (buf
, nbuf
, "w+");
233 printf ("FAIL: third fmemopen failed (%s)\n", __FUNCTION__
);
239 if (strcmp (buf
, "") != 0)
241 printf ("FAIL: strcmp (%s, \"\") failed\n", buf
);
253 ret
+= do_test_with_buffer ();
254 ret
+= do_test_without_buffer ();
255 ret
+= do_test_length_zero ();
260 #define TEST_FUNCTION do_test ()
261 #include "../test-skeleton.c"