1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/test/test-runner.c

185 lines
4.8 KiB
C
Raw Normal View History

2011-04-05 01:43:17 +02:00
#include "test.h"
2011-04-05 01:43:17 +02:00
#include "test-runner.h"
#include <stdio.h>
#include <string.h>
/* Actual tests and helpers are defined in test-list.h */
#include "test-list.h"
/* The maximum number of processes (main + helpers) that a test can have. */
#define TEST_MAX_PROCESSES 8
/* The time in milliseconds after which a single test times out, */
#define TEST_TIMEOUT 20000
/*
* Runs an individual test; returns 1 if the test succeeded, 0 if it failed.
* If the test fails it prints diagnostic information.
*/
int run_test(test_entry_t *test) {
int i, result, success;
char errmsg[256];
test_entry_t *helper;
int process_count;
process_info_t processes[TEST_MAX_PROCESSES];
process_info_t *main_process;
success = 0;
process_count = 0;
2011-04-05 03:03:45 +02:00
/* Start all helpers for this test first. */
2011-04-05 01:43:17 +02:00
for (helper = (test_entry_t*)&TESTS; helper->main; helper++) {
if (helper->is_helper &&
strcmp(test->test_name, helper->test_name) == 0) {
if (process_start(helper->process_name, &processes[process_count]) == -1) {
2011-04-18 00:39:29 -07:00
snprintf((char*)&errmsg, sizeof(errmsg),
"process `%s` failed to start.", helper->process_name);
2011-04-05 01:43:17 +02:00
goto finalize;
}
process_count++;
}
}
/* Start the main test process. */
if (process_start(test->process_name, &processes[process_count]) == -1) {
2011-04-18 00:39:29 -07:00
snprintf((char*)&errmsg, sizeof(errmsg), "process `%s` failed to start.",
test->process_name);
2011-04-05 01:43:17 +02:00
goto finalize;
}
main_process = &processes[process_count];
process_count++;
/* Wait for the main process to terminate. */
result = process_wait(main_process, 1, TEST_TIMEOUT);
if (result == -1) {
FATAL("process_wait failed");
2011-04-05 01:43:17 +02:00
} else if (result == -2) {
2011-04-05 03:03:45 +02:00
snprintf((char*)&errmsg, sizeof(errmsg), "timeout.");
2011-04-05 01:43:17 +02:00
goto finalize;
}
2011-04-05 03:03:45 +02:00
/* Reap the main process. */
2011-04-05 01:43:17 +02:00
result = process_reap(main_process);
if (result != 0) {
2011-04-05 03:03:45 +02:00
snprintf((char*)&errmsg, sizeof(errmsg), "exit code %d.", result);
2011-04-05 01:43:17 +02:00
goto finalize;
}
/* Yes! did it. */
success = 1;
finalize:
/* Kill all (helper) processes that are still running. */
2011-04-18 00:39:29 -07:00
for (i = 0; i < process_count; i++) {
2011-04-05 03:03:45 +02:00
/* If terminate fails the process is probably already closed. */
2011-04-05 01:43:17 +02:00
process_terminate(&processes[i]);
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
/* Wait until all processes have really terminated. */
2011-04-18 00:39:29 -07:00
if (process_wait((process_info_t*)&processes, process_count, -1) < 0) {
FATAL("process_wait failed");
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
/* Show error and output from processes if the test failed. */
if (!success) {
2011-04-18 00:39:29 -07:00
LOG("=============================================================\n");
2011-04-05 01:43:17 +02:00
LOGF("Test `%s` failed: %s\n", test->test_name, errmsg);
2011-04-18 00:39:29 -07:00
2011-04-05 01:43:17 +02:00
for (i = 0; i < process_count; i++) {
switch (process_output_size(&processes[i])) {
case -1:
2011-04-18 00:39:29 -07:00
LOGF("Output from process `%s`: << unavailable >>\n",
process_get_name(&processes[i]));
2011-04-05 01:43:17 +02:00
break;
case 0:
2011-04-18 00:39:29 -07:00
LOGF("Output from process `%s`: << no output >>\n",
process_get_name(&processes[i]));
2011-04-05 01:43:17 +02:00
break;
default:
LOGF("Output from process `%s`:\n", process_get_name(&processes[i]));
process_copy_output(&processes[i], fileno(stderr));
break;
}
}
LOG("\n");
}
/* Clean up all process handles. */
2011-04-18 00:39:29 -07:00
for (i = 0; i < process_count; i++) {
2011-04-05 01:43:17 +02:00
process_cleanup(&processes[i]);
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
return success;
}
void log_progress(int total, int passed, int failed, char *name) {
2011-04-18 00:39:29 -07:00
LOGF("[%% %3d|+ %3d|- %3d]: %-50s\n", (passed + failed) / total * 100,
passed, failed, name);
2011-04-05 01:43:17 +02:00
}
int main(int argc, char **argv) {
int total, passed, failed;
test_entry_t *test;
#ifdef _WIN32
2011-04-05 03:03:45 +02:00
/* On windows disable the "application crashed" popup. */
2011-04-18 00:39:29 -07:00
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX |
SEM_NOOPENFILEERRORBOX);
2011-04-05 01:43:17 +02:00
#endif
2011-04-05 03:03:45 +02:00
/* Disable stdio output buffering. */
2011-04-05 01:43:17 +02:00
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
if (argc > 1) {
/* A specific test process is being started. */
for (test = (test_entry_t*)&TESTS; test->main; test++) {
2011-04-18 00:39:29 -07:00
if (strcmp(argv[1], test->process_name) == 0) {
2011-04-05 01:43:17 +02:00
return test->main();
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
}
LOGF("Test process %s not found!\n", argv[1]);
return 255;
} else {
2011-04-05 03:03:45 +02:00
/* Count the number of tests. */
2011-04-05 01:43:17 +02:00
total = 0;
test = (test_entry_t*)&TESTS;
for (test = (test_entry_t*)&TESTS; test->main; test++) {
2011-04-18 00:39:29 -07:00
if (!test->is_helper) {
2011-04-05 01:43:17 +02:00
total++;
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
}
2011-04-05 03:03:45 +02:00
/* Run all tests. */
2011-04-05 01:43:17 +02:00
passed = 0;
failed = 0;
test = (test_entry_t*)&TESTS;
for (test = (test_entry_t*)&TESTS; test->main; test++) {
2011-04-18 00:39:29 -07:00
if (test->is_helper) {
2011-04-05 01:43:17 +02:00
continue;
2011-04-18 00:39:29 -07:00
}
2011-04-05 01:43:17 +02:00
log_progress(total, passed, failed, test->test_name);
rewind_cursor();
if (run_test(test)) {
passed++;
} else {
failed++;
}
}
log_progress(total, passed, failed, "Done.");
return 0;
}
2011-04-14 11:19:36 -07:00
}