2011-04-19 04:26:32 +02:00
|
|
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 11:34:17 +01:00
|
|
|
#include <errno.h>
|
2011-04-19 04:26:32 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-06-01 17:49:29 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include <io.h>
|
2012-06-03 01:17:22 +02:00
|
|
|
#else
|
|
|
|
# include <unistd.h>
|
2012-06-01 17:49:29 +02:00
|
|
|
#endif
|
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
#include "uv.h"
|
2011-04-19 04:26:32 +02:00
|
|
|
#include "runner.h"
|
|
|
|
#include "task.h"
|
|
|
|
|
|
|
|
/* Actual tests and helpers are defined in test-list.h */
|
|
|
|
#include "test-list.h"
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
int ipc_helper(int listen_after_write);
|
2018-05-20 15:25:27 -07:00
|
|
|
int ipc_helper_heavy_traffic_deadlock_bug(void);
|
2012-03-08 12:02:50 -08:00
|
|
|
int ipc_helper_tcp_connection(void);
|
2017-05-14 17:23:16 +02:00
|
|
|
int ipc_helper_closed_handle(void);
|
2012-03-08 12:02:50 -08:00
|
|
|
int ipc_send_recv_helper(void);
|
2014-07-29 16:08:01 +02:00
|
|
|
int ipc_helper_bind_twice(void);
|
2012-03-08 12:02:50 -08:00
|
|
|
int stdio_over_pipes_helper(void);
|
2015-06-19 16:30:24 +00:00
|
|
|
int spawn_stdin_stdout(void);
|
2017-05-15 11:32:33 -04:00
|
|
|
int spawn_tcp_server_helper(void);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2011-08-01 22:34:07 +02:00
|
|
|
static int maybe_run_test(int argc, char **argv);
|
|
|
|
|
2011-04-19 04:26:32 +02:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2014-12-01 16:16:11 +01:00
|
|
|
if (platform_init(argc, argv))
|
|
|
|
return EXIT_FAILURE;
|
2011-04-19 04:26:32 +02:00
|
|
|
|
2011-12-13 01:29:27 -08:00
|
|
|
argv = uv_setup_args(argc, argv);
|
|
|
|
|
2011-07-14 00:46:25 +02:00
|
|
|
switch (argc) {
|
2014-01-31 10:57:30 -06:00
|
|
|
case 1: return run_tests(0);
|
2011-08-01 22:34:07 +02:00
|
|
|
case 2: return maybe_run_test(argc, argv);
|
2011-07-14 00:46:25 +02:00
|
|
|
case 3: return run_test_part(argv[1], argv[2]);
|
2016-08-30 23:41:47 +02:00
|
|
|
case 4: return maybe_run_test(argc, argv);
|
2011-07-14 00:46:25 +02:00
|
|
|
default:
|
2015-04-10 16:43:19 +02:00
|
|
|
fprintf(stderr, "Too many arguments.\n");
|
|
|
|
fflush(stderr);
|
2014-12-01 16:16:11 +01:00
|
|
|
return EXIT_FAILURE;
|
2011-04-19 04:26:32 +02:00
|
|
|
}
|
2014-12-01 16:16:11 +01:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2011-04-25 21:54:17 -07:00
|
|
|
}
|
2011-08-01 22:34:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
static int maybe_run_test(int argc, char **argv) {
|
2011-08-06 23:55:35 +02:00
|
|
|
if (strcmp(argv[1], "--list") == 0) {
|
|
|
|
print_tests(stdout);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-25 13:07:29 -07:00
|
|
|
if (strcmp(argv[1], "ipc_helper_listen_before_write") == 0) {
|
|
|
|
return ipc_helper(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[1], "ipc_helper_listen_after_write") == 0) {
|
|
|
|
return ipc_helper(1);
|
2011-09-26 09:42:41 -07:00
|
|
|
}
|
|
|
|
|
2018-05-20 15:25:27 -07:00
|
|
|
if (strcmp(argv[1], "ipc_helper_heavy_traffic_deadlock_bug") == 0) {
|
|
|
|
return ipc_helper_heavy_traffic_deadlock_bug();
|
|
|
|
}
|
|
|
|
|
2012-03-09 03:16:08 +01:00
|
|
|
if (strcmp(argv[1], "ipc_send_recv_helper") == 0) {
|
|
|
|
return ipc_send_recv_helper();
|
|
|
|
}
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
if (strcmp(argv[1], "ipc_helper_tcp_connection") == 0) {
|
|
|
|
return ipc_helper_tcp_connection();
|
|
|
|
}
|
|
|
|
|
2017-05-14 17:23:16 +02:00
|
|
|
if (strcmp(argv[1], "ipc_helper_closed_handle") == 0) {
|
|
|
|
return ipc_helper_closed_handle();
|
|
|
|
}
|
|
|
|
|
2014-07-29 16:08:01 +02:00
|
|
|
if (strcmp(argv[1], "ipc_helper_bind_twice") == 0) {
|
|
|
|
return ipc_helper_bind_twice();
|
|
|
|
}
|
|
|
|
|
2011-10-19 00:48:38 -07:00
|
|
|
if (strcmp(argv[1], "stdio_over_pipes_helper") == 0) {
|
|
|
|
return stdio_over_pipes_helper();
|
|
|
|
}
|
|
|
|
|
2011-08-01 22:34:07 +02:00
|
|
|
if (strcmp(argv[1], "spawn_helper1") == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[1], "spawn_helper2") == 0) {
|
|
|
|
printf("hello world\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-15 11:32:33 -04:00
|
|
|
if (strcmp(argv[1], "spawn_tcp_server_helper") == 0) {
|
|
|
|
return spawn_tcp_server_helper();
|
|
|
|
}
|
|
|
|
|
2011-08-01 22:34:07 +02:00
|
|
|
if (strcmp(argv[1], "spawn_helper3") == 0) {
|
|
|
|
char buffer[256];
|
2012-12-14 11:34:17 +01:00
|
|
|
ASSERT(buffer == fgets(buffer, sizeof(buffer) - 1, stdin));
|
2011-08-01 22:34:07 +02:00
|
|
|
buffer[sizeof(buffer) - 1] = '\0';
|
|
|
|
fputs(buffer, stdout);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[1], "spawn_helper4") == 0) {
|
2011-08-02 00:44:04 +02:00
|
|
|
/* Never surrender, never return! */
|
|
|
|
while (1) uv_sleep(10000);
|
2011-08-01 22:34:07 +02:00
|
|
|
}
|
|
|
|
|
2012-05-31 22:56:23 +04:00
|
|
|
if (strcmp(argv[1], "spawn_helper5") == 0) {
|
2012-12-14 11:36:17 +01:00
|
|
|
const char out[] = "fourth stdio!\n";
|
2012-05-31 22:56:23 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD bytes;
|
2012-12-14 11:36:17 +01:00
|
|
|
WriteFile((HANDLE) _get_osfhandle(3), out, sizeof(out) - 1, &bytes, NULL);
|
2012-05-31 22:56:23 +04:00
|
|
|
#else
|
2012-12-14 11:34:17 +01:00
|
|
|
{
|
|
|
|
ssize_t r;
|
|
|
|
|
|
|
|
do
|
2012-12-14 11:36:17 +01:00
|
|
|
r = write(3, out, sizeof(out) - 1);
|
2012-12-14 11:34:17 +01:00
|
|
|
while (r == -1 && errno == EINTR);
|
|
|
|
|
|
|
|
fsync(3);
|
|
|
|
}
|
2012-05-31 22:56:23 +04:00
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-06-02 21:34:21 +02:00
|
|
|
if (strcmp(argv[1], "spawn_helper6") == 0) {
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = fprintf(stdout, "hello world\n");
|
|
|
|
ASSERT(r > 0);
|
|
|
|
|
|
|
|
r = fprintf(stderr, "hello errworld\n");
|
|
|
|
ASSERT(r > 0);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-11-01 10:55:06 -04:00
|
|
|
if (strcmp(argv[1], "spawn_helper7") == 0) {
|
|
|
|
int r;
|
|
|
|
char *test;
|
|
|
|
/* Test if the test value from the parent is still set */
|
|
|
|
test = getenv("ENV_TEST");
|
|
|
|
ASSERT(test != NULL);
|
|
|
|
|
|
|
|
r = fprintf(stdout, "%s", test);
|
|
|
|
ASSERT(r > 0);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-01-30 01:30:23 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
if (strcmp(argv[1], "spawn_helper8") == 0) {
|
|
|
|
int fd;
|
|
|
|
ASSERT(sizeof(fd) == read(0, &fd, sizeof(fd)));
|
|
|
|
ASSERT(fd > 2);
|
|
|
|
ASSERT(-1 == write(fd, "x", 1));
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif /* !_WIN32 */
|
|
|
|
|
2015-06-19 16:30:24 +00:00
|
|
|
if (strcmp(argv[1], "spawn_helper9") == 0) {
|
|
|
|
return spawn_stdin_stdout();
|
|
|
|
}
|
|
|
|
|
2016-08-30 23:41:47 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
if (strcmp(argv[1], "spawn_helper_setuid_setgid") == 0) {
|
|
|
|
uv_uid_t uid = atoi(argv[2]);
|
|
|
|
uv_gid_t gid = atoi(argv[3]);
|
|
|
|
|
|
|
|
ASSERT(uid == getuid());
|
|
|
|
ASSERT(gid == getgid());
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif /* !_WIN32 */
|
|
|
|
|
2014-01-31 10:57:30 -06:00
|
|
|
return run_test(argv[1], 0, 1);
|
2011-08-01 22:34:07 +02:00
|
|
|
}
|