1 /* Test harness for pipe-filter-ii.
3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
4 Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
21 #include "pipe-filter.h"
29 #include "full-write.h"
42 prepare_write (size_t *num_bytes_p
, void *private_data
)
44 struct locals
*l
= (struct locals
*) private_data
;
45 if (l
->nwritten
< l
->size
)
47 *num_bytes_p
= l
->size
- l
->nwritten
;
48 return l
->input
+ l
->nwritten
;
55 done_write (void *data_written
, size_t num_bytes_written
, void *private_data
)
57 struct locals
*l
= (struct locals
*) private_data
;
58 l
->nwritten
+= num_bytes_written
;
62 prepare_read (size_t *num_bytes_p
, void *private_data
)
64 struct locals
*l
= (struct locals
*) private_data
;
65 *num_bytes_p
= sizeof (l
->buf
);
69 /* Callback that ignores the data that has been read. */
72 ignore_done_read (void *data_read
, size_t num_bytes_read
, void *private_data
)
76 /* Callback that outputs the data that has been read. */
79 output_done_read (void *data_read
, size_t num_bytes_read
, void *private_data
)
81 full_write (STDOUT_FILENO
, data_read
, num_bytes_read
);
85 main (int argc
, char **argv
)
87 const char *path
[] = { NULL
, NULL
};
91 /* Test writing to a nonexistent program traps sooner or later. */
100 path
[0] = "/nonexistent/blah";
101 rc
= pipe_filter_ii_execute ("pipe-filter-test", path
[0], path
, true, false,
102 prepare_write
, done_write
,
103 prepare_read
, ignore_done_read
,
105 ASSERT (rc
== 127 || rc
== -1);
106 printf ("Test 1 passed.\n");
110 /* Test returning the exit status. */
116 l
.size
= strlen (l
.input
);
120 rc
= pipe_filter_ii_execute ("pipe-filter-test", path
[0], path
, false, false,
121 prepare_write
, done_write
,
122 prepare_read
, ignore_done_read
,
125 printf ("Test 2 passed.\n");
129 /* Now test asynchronous I/O. */
134 l
.input
= "1 50\n51\n100";
135 l
.size
= strlen (l
.input
);
139 rc
= pipe_filter_ii_execute ("pipe-filter-test", path
[0], path
, false, true,
140 prepare_write
, done_write
,
141 prepare_read
, output_done_read
,
144 printf ("Test 3 passed.\n");