S390: Ifunc resolver macro for vector instructions.
[glibc.git] / stdio-common / tst-fmemopen2.c
bloba2c05c12df3fbcc90b82c96438c38b0d4503e9bf
1 /* fmemopen tests.
2 Copyright (C) 2015 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/>. */
20 #include <assert.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <sys/types.h>
24 #include <errno.h>
26 /* Check fmemopen with user provided buffer open for write. */
27 static int
28 do_test_with_buffer (void)
30 int result = 0;
31 char buf[100];
32 const size_t nbuf = sizeof (buf);
34 FILE *fp = fmemopen (buf, nbuf, "w");
35 if (fp == NULL)
37 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__);
38 return 1;
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;
44 fputs (str, fp);
45 off_t o = ftello (fp);
46 if (o != nstr)
48 printf ("FAIL: first ftello returned %jd, expected %zu\n",
49 (intmax_t)o, nstr);
50 result = 1;
53 /* Rewind stream and seek tests, the position size should be equal to
54 buffer size provided in open function. */
55 rewind (fp);
56 o = ftello (fp);
57 if (o != 0)
59 printf ("FAIL: second ftello returned %jd, expected 0\n",
60 (intmax_t)o);
61 result = 1;
63 if (fseeko (fp, 0, SEEK_END) != 0)
65 printf ("FAIL: fseeko failed\n");
66 result = 1;
68 o = ftello (fp);
69 if (o != nstr)
71 printf ("FAIL: third ftello returned %jd, expected %zu\n",
72 (intmax_t)o, nstr);
73 result = 1;
76 /* Rewind the stream and recheck by using a shorter string. */
77 rewind (fp);
78 static const char str2[] = "just hello";
79 const size_t nstr2 = sizeof (str2) - 1;
80 assert (nstr2 < nstr);
81 fputs (str2, fp);
82 o = ftello (fp);
83 if (o != nstr2)
85 printf ("FAIL: fourth ftello returned %jd, expected %zu\n",
86 (intmax_t)o, nstr2);
87 result = 1;
89 fclose (fp);
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",
96 buf, str3);
97 result = 1;
99 return result;
102 /* Check fmemopen without user provided buffer open for write. */
103 static int
104 do_test_without_buffer (void)
106 int result = 0;
107 const size_t nbuf = 100;
109 FILE *fp = fmemopen (NULL, nbuf, "w");
110 if (fp == NULL)
112 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__);
113 return 1;
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. */
120 fputs (str, fp);
121 off_t o = ftello (fp);
122 if (o != nstr)
124 printf ("FAIL: first ftello returned %jd, expected %zu\n",
125 (intmax_t) o, nstr);
126 result = 1;
128 if (fseeko (fp, 0, SEEK_END) != 0)
130 printf ("FAIL: fseeko failed\n");
131 result = 1;
133 o = ftello (fp);
134 if (o != nstr)
136 printf ("FAIL: second ftello returned %jd, expected %zu\n",
137 (intmax_t) o, nbuf);
138 result = 1;
141 /* Rewind the stream and recheck by using a shorter string. */
142 rewind (fp);
143 static const char str2[] = "just hello";
144 const size_t nstr2 = sizeof (str2) - 1;
145 assert (nstr2 < nstr);
146 fputs (str2, fp);
147 o = ftello (fp);
148 if (o != nstr2)
150 printf ("FAIL: third ftello returned %jd, expected %zu\n",
151 (intmax_t) o, nstr2);
152 result = 1;
154 fclose (fp);
156 return result;
159 /* Check fmemopen with a buffer lenght of zero. */
160 static int
161 do_test_length_zero (void)
163 int result = 0;
164 FILE *fp;
165 #define BUFCONTENTS "testing buffer"
166 char buf[100] = BUFCONTENTS;
167 const size_t nbuf = 0;
168 int r;
170 fp = fmemopen (buf, nbuf, "r");
171 if (fp == NULL)
173 printf ("FAIL: fmemopen failed (%s)\n", __FUNCTION__);
174 return 1;
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);
181 result = 1;
183 off_t o = ftello (fp);
184 if (o != 0)
186 printf ("FAIL: first ftello returned %jd, expected 0\n",
187 (intmax_t) o);
188 result = 1;
190 fclose (fp);
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");
195 if (fp == NULL)
197 printf ("FAIL: second fmemopen failed (%s)\n", __FUNCTION__);
198 return 1;
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
204 fmemopen call. */
205 fputs (str, fp);
206 r = 0;
207 errno = 0;
208 if (fflush (fp) != EOF)
210 printf ("FAIL: fflush did not return EOF\n");
211 fclose (fp);
212 return 1;
214 if (errno != ENOSPC)
216 printf ("FAIL: errno is %i (expected ENOSPC)\n", errno);
217 fclose (fp);
218 return 1;
221 fclose (fp);
223 if (strcmp (buf, BUFCONTENTS) != 0)
225 printf ("FAIL: strcmp (%s, %s) failed\n", buf, BUFCONTENTS);
226 return 1;
229 /* Different than 'w' mode, 'w+' truncates the buffer. */
230 fp = fmemopen (buf, nbuf, "w+");
231 if (fp == NULL)
233 printf ("FAIL: third fmemopen failed (%s)\n", __FUNCTION__);
234 return 1;
237 fclose (fp);
239 if (strcmp (buf, "") != 0)
241 printf ("FAIL: strcmp (%s, \"\") failed\n", buf);
242 return 1;
245 return result;
248 static int
249 do_test (void)
251 int ret = 0;
253 ret += do_test_with_buffer ();
254 ret += do_test_without_buffer ();
255 ret += do_test_length_zero ();
257 return ret;
260 #define TEST_FUNCTION do_test ()
261 #include "../test-skeleton.c"