1 /* The reader part of a test program for non-blocking communication.
3 Copyright (C) 2011-2024 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* This program implements 4 tests:
21 Test blocking write() with blocking read().
23 Timeline Main process Child process
24 0 s Start Start, read(10000)
25 1 s write(20000) Return from read(10000)
27 2 s Return from write(20000) Return from read(10000)
30 Test non-blocking write() with blocking read().
32 Timeline Main process Child process
33 0 s Start Start, read(10000)
34 1 s write(20000) Return from read(10000)
35 Return with at least 10000,
39 2 s Return from write(10000) Return from read(10000)
42 Test blocking write() with non-blocking read().
44 Timeline Main process Child process
45 0 s Start Start, read(10000)
47 1 s write(20000) Return from read(10000)
49 2 s Return from write(20000) Return from read(10000)
52 Test non-blocking write() with non-blocking read().
55 #include "test-nonblocking-misc.h"
58 full_read (size_t fd
, void *buf
, size_t count
)
63 while (bytes_read
< count
)
69 dbgfprintf (stderr
, "%s: >> read (%lu)\n", PROG_ROLE
,
70 (unsigned long) (count
- bytes_read
));
72 ret
= read (fd
, (char *) buf
+ bytes_read
, count
- bytes_read
);
75 dbgfprintf (stderr
, "%s: << read -> %ld%s\n", PROG_ROLE
,
76 (long) ret
, dbgstrerror (ret
< 0, saved_errno
));
90 full_read_from_nonblocking_fd (size_t fd
, void *buf
, size_t count
)
95 while (bytes_read
< count
)
101 dbgfprintf (stderr
, "%s: >> read (%lu)\n", PROG_ROLE
,
102 (unsigned long) (count
- bytes_read
));
104 ret
= read (fd
, (char *) buf
+ bytes_read
, count
- bytes_read
);
107 dbgfprintf (stderr
, "%s: << read -> %ld%s\n", PROG_ROLE
,
108 (long) ret
, dbgstrerror (ret
< 0, saved_errno
));
109 /* This assertion fails if the non-blocking flag is effectively not set
111 ASSERT (spent_time
< 0.5);
114 ASSERT (saved_errno
== EAGAIN
|| saved_errno
== EWOULDBLOCK
);
115 usleep (SMALL_DELAY
);
126 /* Execute the reader loop. */
128 main_reader_loop (int test
, size_t data_block_size
, int fd
)
130 unsigned char *expected
;
133 /* Set up the expected data. */
134 expected
= init_data (data_block_size
);
136 data
= (unsigned char *) malloc (2 * data_block_size
);
137 ASSERT (data
!= NULL
);
144 case 0: /* Test blocking write() with blocking read(). */
145 case 1: /* Test non-blocking write() with blocking read(). */
147 ret
= full_read (fd
, data
, data_block_size
);
149 ASSERT (ret
== data_block_size
);
150 ASSERT (memcmp (data
, expected
, data_block_size
) == 0);
151 ASSERT (spent_time
> 0.5);
152 /* This assertion fails if data_block_size is very large and
153 ENABLE_DEBUGGING is 1. */
154 ASSERT (spent_time
< 1.5);
159 ret
= full_read (fd
, data
, data_block_size
);
161 ASSERT (ret
== data_block_size
);
162 ASSERT (memcmp (data
, expected
+ data_block_size
, data_block_size
) == 0);
163 /* This assertion fails if data_block_size is much larger than needed
164 and SMALL_DELAY is too large. */
165 ASSERT (spent_time
< 0.5);
169 case 2: /* Test blocking write() with non-blocking read(). */
170 case 3: /* Test non-blocking write() with non-blocking read(). */
172 ret
= full_read_from_nonblocking_fd (fd
, data
, data_block_size
);
174 ASSERT (ret
== data_block_size
);
175 ASSERT (memcmp (data
, expected
, data_block_size
) == 0);
176 ASSERT (spent_time
> 0.5);
177 /* This assertion fails if data_block_size is much larger than needed
178 and SMALL_DELAY is too large, or if data_block_size is very large and
179 ENABLE_DEBUGGING is 1. */
180 ASSERT (spent_time
< 1.5);
185 ret
= full_read_from_nonblocking_fd (fd
, data
, data_block_size
);
187 ASSERT (ret
== data_block_size
);
188 ASSERT (memcmp (data
, expected
+ data_block_size
, data_block_size
) == 0);
189 /* This assertion fails if data_block_size is much larger than needed
190 and SMALL_DELAY is too large. */
191 ASSERT (spent_time
< 0.5);