1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
#include <stdio.h>
#include <stdlib.h>
#include "trivia/util.h"
#include "unit.h"
#include "coio.h"
#include "coio_task.h"
#include "memory.h"
#include "fiber.h"
#include "popen.h"
#include "say.h"
static char popen_child_path[PATH_MAX];
#define TEST_POPEN_COMMON_FLAGS \
(POPEN_FLAG_SETSID | \
POPEN_FLAG_RESTORE_SIGNALS)
/**
* A real return value of main_f(), see a comment in swim.c.
*/
static int test_result = 1;
static int
wait_exit(struct popen_handle *handle, int *state, int *exit_code)
{
for (;;) {
popen_state(handle, state, exit_code);
if (*state == POPEN_STATE_EXITED ||
*state == POPEN_STATE_SIGNALED)
break;
fiber_sleep(0.1);
}
return 0;
}
static void
popen_write_exit(void)
{
struct popen_handle *handle;
char *child_argv[] = {
popen_child_path,
"read", "-n", "5",
NULL,
};
const char data[] = "12345";
int state, exit_code;
struct popen_opts opts = {
.argv = child_argv,
.nr_argv = lengthof(child_argv),
.env = NULL,
.flags =
POPEN_FLAG_FD_STDIN |
POPEN_FLAG_FD_STDOUT |
POPEN_FLAG_FD_STDERR |
TEST_POPEN_COMMON_FLAGS,
};
int rc;
plan(6);
header();
handle = popen_new(&opts);
ok(handle != NULL, "popen_new");
if (handle == NULL)
goto out;
popen_state(handle, &state, &exit_code);
ok(state == POPEN_STATE_ALIVE, "state %s",
popen_state_str(state));
rc = popen_write_timeout(handle, (void *)data,
(int)strlen(data),
POPEN_FLAG_FD_STDOUT, 180);
ok(rc == -1, "write flag check");
rc = popen_write_timeout(handle, (void *)data,
(int)strlen(data),
POPEN_FLAG_FD_STDIN, 180);
ok(rc == (int)strlen(data), "write to pipe");
if (rc != (int)strlen(data))
goto out_kill;
rc = wait_exit(handle, &state, &exit_code);
if (rc) {
ok(false, "child wait");
goto out_kill;
}
ok(state == POPEN_STATE_EXITED, "child exited");
out_kill:
rc = popen_delete(handle);
ok(rc == 0, "popen_delete");
out:
footer();
check_plan();
}
static void
popen_read_exit(void)
{
struct popen_handle *handle;
char *child_argv[] = {
popen_child_path,
"echo", "1 2 3 4 5",
NULL,
};
int state, exit_code;
char data[32] = { };
struct popen_opts opts = {
.argv = child_argv,
.nr_argv = lengthof(child_argv),
.env = NULL,
.flags =
POPEN_FLAG_FD_STDIN |
POPEN_FLAG_FD_STDOUT |
POPEN_FLAG_FD_STDERR |
TEST_POPEN_COMMON_FLAGS,
};
int rc;
plan(5);
header();
handle = popen_new(&opts);
ok(handle != NULL, "popen_new");
if (handle == NULL)
goto out;
rc = wait_exit(handle, &state, &exit_code);
if (rc) {
ok(false, "child wait");
goto out_kill;
}
ok(state == POPEN_STATE_EXITED, "child exited");
rc = popen_read_timeout(handle, data, sizeof(data),
POPEN_FLAG_FD_STDIN, 180);
ok(rc == -1, "read flag check");
rc = popen_read_timeout(handle, data, sizeof(data),
POPEN_FLAG_FD_STDOUT, 180);
ok(rc >= 9 && !strncmp(data, "1 2 3 4 5", 9), "read from pipe");
out_kill:
rc = popen_delete(handle);
ok(rc == 0, "popen_delete");
out:
footer();
check_plan();
}
static void
popen_kill(void)
{
struct popen_handle *handle;
char *child_argv[] = {
popen_child_path,
"loop",
NULL,
};
int state, exit_code;
struct popen_opts opts = {
.argv = child_argv,
.nr_argv = lengthof(child_argv),
.env = NULL,
.flags =
POPEN_FLAG_FD_STDIN |
POPEN_FLAG_FD_STDOUT |
POPEN_FLAG_FD_STDERR |
TEST_POPEN_COMMON_FLAGS,
};
int rc;
plan(4);
header();
handle = popen_new(&opts);
ok(handle != NULL, "popen_new");
if (handle == NULL)
goto out;
rc = popen_send_signal(handle, SIGTERM);
ok(rc == 0, "popen_send_signal");
if (rc != 0)
goto out_kill;
rc = wait_exit(handle, &state, &exit_code);
if (rc) {
ok(false, "child wait");
goto out_kill;
}
ok(state == POPEN_STATE_SIGNALED, "child terminated");
out_kill:
rc = popen_delete(handle);
ok(rc == 0, "popen_delete");
out:
footer();
check_plan();
}
static int
main_f(va_list ap)
{
plan(3);
header();
popen_write_exit();
popen_read_exit();
popen_kill();
ev_break(loop(), EVBREAK_ALL);
footer();
test_result = check_plan();
return 0;
}
int
main(int argc, char *argv[])
{
#if 0
say_logger_init(NULL, S_DEBUG, 0, "plain", 0);
#endif
memory_init();
if (getenv("BUILDDIR") == NULL) {
size_t size = sizeof(popen_child_path);
strncpy(popen_child_path, "./test/unit/popen-child", size);
popen_child_path[size-1] = '\0';
} else {
snprintf(popen_child_path, sizeof(popen_child_path),
"%s/test/unit/popen-child", getenv("BUILDDIR"));
}
fiber_init(fiber_c_invoke);
popen_init();
coio_init();
coio_enable();
if (!loop())
panic("%s", "can't init event loop");
struct fiber *test = fiber_new("main", main_f);
fiber_wakeup(test);
ev_now_update(loop());
ev_run(loop(), 0);
popen_free();
fiber_free();
memory_free();
return test_result;
}
|