2017-03-30 23:54:57 +08:00
|
|
|
/*
|
2018-02-04 18:09:18 +08:00
|
|
|
* Copyright 2017-2018 Leonid Yuriev <leo@yuriev.ru>
|
2017-03-30 23:54:57 +08:00
|
|
|
* and other libmdbx authors: please see AUTHORS file.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
void __noreturn usage(void) {
|
|
|
|
printf("usage:\n"
|
|
|
|
"\tFIXME\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2018-03-20 01:41:08 +08:00
|
|
|
void actor_params::set_defaults(const std::string &tmpdir) {
|
2017-03-30 23:54:57 +08:00
|
|
|
pathname_log = "";
|
|
|
|
loglevel =
|
|
|
|
#ifdef NDEBUG
|
2018-03-19 22:50:10 +08:00
|
|
|
logging::info;
|
2017-03-30 23:54:57 +08:00
|
|
|
#else
|
2017-04-11 17:55:16 +08:00
|
|
|
logging::trace;
|
2017-03-30 23:54:57 +08:00
|
|
|
#endif
|
|
|
|
|
2018-03-20 01:41:08 +08:00
|
|
|
pathname_db = tmpdir + "mdbx-test.db";
|
2017-05-24 06:42:10 +08:00
|
|
|
mode_flags = MDBX_NOSUBDIR | MDBX_WRITEMAP | MDBX_MAPASYNC | MDBX_NORDAHEAD |
|
|
|
|
MDBX_NOMEMINIT | MDBX_COALESCE | MDBX_LIFORECLAIM;
|
|
|
|
table_flags = MDBX_DUPSORT;
|
2017-05-24 07:46:51 +08:00
|
|
|
size = 1024 * 1024 * 4;
|
2017-05-18 01:10:56 +08:00
|
|
|
|
|
|
|
keygen.seed = 1;
|
|
|
|
keygen.keycase = kc_random;
|
|
|
|
keygen.width = 32;
|
|
|
|
keygen.mesh = 32;
|
|
|
|
keygen.split = keygen.width / 2;
|
|
|
|
keygen.rotate = 0;
|
|
|
|
keygen.offset = 0;
|
2017-03-30 23:54:57 +08:00
|
|
|
|
|
|
|
test_duration = 0;
|
2017-04-21 23:41:11 +08:00
|
|
|
test_nops = 1000;
|
2017-03-30 23:54:57 +08:00
|
|
|
nrepeat = 1;
|
|
|
|
nthreads = 1;
|
|
|
|
|
|
|
|
keylen_min = 0;
|
|
|
|
keylen_max = 42;
|
|
|
|
datalen_min = 0;
|
|
|
|
datalen_max = 256;
|
|
|
|
|
|
|
|
batch_read = 4;
|
|
|
|
batch_write = 4;
|
|
|
|
|
|
|
|
delaystart = 0;
|
|
|
|
waitfor_nops = 0;
|
2018-03-20 02:26:14 +08:00
|
|
|
inject_writefaultn = 0;
|
2017-03-30 23:54:57 +08:00
|
|
|
|
|
|
|
drop_table = false;
|
|
|
|
|
|
|
|
max_readers = 42;
|
|
|
|
max_tables = 42;
|
2017-04-21 23:41:11 +08:00
|
|
|
|
|
|
|
global::config::timeout_duration_seconds = 0 /* infinite */;
|
|
|
|
global::config::dump_config = true;
|
|
|
|
global::config::cleanup_before = true;
|
|
|
|
global::config::cleanup_after = true;
|
2017-04-23 17:54:37 +08:00
|
|
|
global::config::failfast = true;
|
2017-05-24 07:16:25 +08:00
|
|
|
global::config::progress_indicator = osal_istty(STDERR_FILENO);
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace global {
|
|
|
|
|
|
|
|
std::vector<actor_config> actors;
|
|
|
|
std::unordered_map<unsigned, actor_config *> events;
|
|
|
|
std::unordered_map<mdbx_pid_t, actor_config *> pid2actor;
|
|
|
|
std::set<std::string> databases;
|
|
|
|
unsigned nactors;
|
2017-04-21 23:41:11 +08:00
|
|
|
chrono::time start_motonic;
|
|
|
|
chrono::time deadline_motonic;
|
|
|
|
bool singlemode;
|
2017-03-30 23:54:57 +08:00
|
|
|
|
|
|
|
namespace config {
|
2017-04-21 23:41:11 +08:00
|
|
|
unsigned timeout_duration_seconds;
|
2017-03-30 23:54:57 +08:00
|
|
|
bool dump_config;
|
2017-04-21 23:41:11 +08:00
|
|
|
bool cleanup_before;
|
|
|
|
bool cleanup_after;
|
2017-04-23 17:54:37 +08:00
|
|
|
bool failfast;
|
2017-05-24 07:16:25 +08:00
|
|
|
bool progress_indicator;
|
2017-03-30 23:54:57 +08:00
|
|
|
} /* namespace config */
|
|
|
|
|
|
|
|
} /* namespace global */
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
const char global::thunk_param_prefix[] = "--execute=";
|
|
|
|
|
|
|
|
std::string thunk_param(const actor_config &config) {
|
|
|
|
return config.serialize(global::thunk_param_prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cleanup() {
|
2017-04-11 05:21:53 +08:00
|
|
|
log_trace(">> cleanup");
|
2017-03-30 23:54:57 +08:00
|
|
|
/* TODO: remove each database */
|
2017-04-11 05:21:53 +08:00
|
|
|
log_trace("<< cleanup");
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *const argv[]) {
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
log_trace("#argc = %d", argc);
|
|
|
|
for (int i = 0; i < argc; ++i)
|
|
|
|
log_trace("#argv[%d] = %s", i, argv[i]);
|
|
|
|
#endif /* _DEBUG */
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
failure("No parameters given\n");
|
|
|
|
|
2018-06-19 02:29:12 +08:00
|
|
|
if (argc == 2 && strncmp(argv[1], global::thunk_param_prefix,
|
|
|
|
strlen(global::thunk_param_prefix)) == 0)
|
2017-03-30 23:54:57 +08:00
|
|
|
return test_execute(
|
|
|
|
actor_config(argv[1] + strlen(global::thunk_param_prefix)))
|
|
|
|
? EXIT_SUCCESS
|
|
|
|
: EXIT_FAILURE;
|
|
|
|
|
|
|
|
actor_params params;
|
2018-03-20 01:41:08 +08:00
|
|
|
params.set_defaults(osal_tempdir());
|
2017-03-30 23:54:57 +08:00
|
|
|
global::config::dump_config = true;
|
2017-04-11 17:55:16 +08:00
|
|
|
logging::setup((logging::loglevel)params.loglevel, "main");
|
2017-05-18 01:10:56 +08:00
|
|
|
unsigned last_space_id = 0;
|
2017-03-30 23:54:57 +08:00
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
for (int narg = 1; narg < argc; ++narg) {
|
|
|
|
const char *value = nullptr;
|
|
|
|
|
|
|
|
if (config::parse_option(argc, argv, narg, "case", &value)) {
|
2017-05-18 01:10:56 +08:00
|
|
|
testcase_setup(value, params, last_space_id);
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "pathname", params.pathname_db))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "mode", params.mode_flags,
|
|
|
|
config::mode_bits))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "table", params.table_flags,
|
|
|
|
config::table_bits))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "size", params.size,
|
|
|
|
config::binary, 4096 * 4))
|
|
|
|
continue;
|
2017-05-18 01:10:56 +08:00
|
|
|
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.width",
|
|
|
|
params.keygen.width, 1, 64))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.mesh",
|
|
|
|
params.keygen.mesh, 1, 64))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.seed",
|
|
|
|
params.keygen.seed, config::no_scale))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.split",
|
|
|
|
params.keygen.split, 1, 64))
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2017-05-18 01:10:56 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.rotate",
|
|
|
|
params.keygen.rotate, 1, 64))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.offset",
|
|
|
|
params.keygen.offset, config::binary))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keygen.case", &value)) {
|
|
|
|
keycase_setup(value, params);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "repeat", params.nrepeat,
|
|
|
|
config::no_scale))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "threads", params.nthreads,
|
|
|
|
config::no_scale, 1, 64))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "timeout",
|
|
|
|
global::config::timeout_duration_seconds,
|
|
|
|
config::duration, 1))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "keylen.min", params.keylen_min,
|
2018-08-12 03:06:26 +08:00
|
|
|
config::no_scale, 0, UINT8_MAX)) {
|
|
|
|
if (params.keylen_max < params.keylen_min)
|
|
|
|
params.keylen_max = params.keylen_min;
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2018-08-12 03:06:26 +08:00
|
|
|
}
|
|
|
|
if (config::parse_option(
|
|
|
|
argc, argv, narg, "keylen.max", params.keylen_max, config::no_scale,
|
|
|
|
0, std::min(mdbx_get_maxkeysize(0), (int)UINT16_MAX))) {
|
|
|
|
|
|
|
|
if (params.keylen_min > params.keylen_max)
|
|
|
|
params.keylen_min = params.keylen_max;
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2018-08-12 03:06:26 +08:00
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "datalen.min",
|
|
|
|
params.datalen_min, config::no_scale, 0,
|
2018-08-12 03:06:26 +08:00
|
|
|
UINT8_MAX)) {
|
|
|
|
if (params.datalen_max < params.datalen_min)
|
|
|
|
params.datalen_max = params.datalen_min;
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2018-08-12 03:06:26 +08:00
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "datalen.max",
|
2018-08-12 03:06:26 +08:00
|
|
|
params.datalen_max, config::no_scale, 0,
|
|
|
|
std::min((int)UINT16_MAX, MDBX_MAXDATASIZE))) {
|
|
|
|
if (params.datalen_min > params.datalen_max)
|
|
|
|
params.datalen_min = params.datalen_max;
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2018-08-12 03:06:26 +08:00
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "batch.read", params.batch_read,
|
|
|
|
config::no_scale, 1))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "batch.write",
|
|
|
|
params.batch_write, config::no_scale, 1))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "delay", params.delaystart,
|
|
|
|
config::duration))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "wait4ops", params.waitfor_nops,
|
|
|
|
config::decimal))
|
|
|
|
continue;
|
2018-03-19 21:51:44 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "inject-writefault",
|
|
|
|
params.inject_writefaultn, config::decimal))
|
|
|
|
continue;
|
2017-04-21 23:41:11 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "drop", params.drop_table))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "dump-config",
|
|
|
|
global::config::dump_config))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "cleanup-before",
|
|
|
|
global::config::cleanup_before))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "cleanup-after",
|
|
|
|
global::config::cleanup_after))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "max-readers",
|
|
|
|
params.max_readers, config::no_scale, 1, 255))
|
|
|
|
continue;
|
|
|
|
if (config::parse_option(argc, argv, narg, "max-tables", params.max_tables,
|
|
|
|
config::no_scale, 1, INT16_MAX))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (config::parse_option(argc, argv, narg, "no-delay", nullptr)) {
|
|
|
|
params.delaystart = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "no-wait", nullptr)) {
|
|
|
|
params.waitfor_nops = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "duration", params.test_duration,
|
|
|
|
config::duration, 1)) {
|
|
|
|
params.test_nops = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "nops", params.test_nops,
|
|
|
|
config::decimal, 1)) {
|
|
|
|
params.test_duration = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2017-05-18 01:10:56 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "hill", &value, "auto")) {
|
|
|
|
configure_actor(last_space_id, ac_hill, value, params);
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "jitter", nullptr)) {
|
2017-05-18 01:10:56 +08:00
|
|
|
configure_actor(last_space_id, ac_jitter, value, params);
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "dead.reader", nullptr)) {
|
2017-05-18 01:10:56 +08:00
|
|
|
configure_actor(last_space_id, ac_deadread, value, params);
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (config::parse_option(argc, argv, narg, "dead.writer", nullptr)) {
|
2017-05-18 01:10:56 +08:00
|
|
|
configure_actor(last_space_id, ac_deadwrite, value, params);
|
2017-04-21 23:41:11 +08:00
|
|
|
continue;
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
2017-04-26 01:02:28 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "failfast",
|
|
|
|
global::config::failfast))
|
|
|
|
continue;
|
2017-05-24 07:16:25 +08:00
|
|
|
if (config::parse_option(argc, argv, narg, "progress",
|
|
|
|
global::config::progress_indicator))
|
|
|
|
continue;
|
2017-04-21 23:41:11 +08:00
|
|
|
|
|
|
|
if (*argv[narg] != '-')
|
2017-05-18 01:10:56 +08:00
|
|
|
testcase_setup(argv[narg], params, last_space_id);
|
2017-04-21 23:41:11 +08:00
|
|
|
else
|
|
|
|
failure("Unknown option '%s'\n", argv[narg]);
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (global::config::dump_config)
|
2017-04-11 17:55:16 +08:00
|
|
|
config::dump();
|
2017-03-30 23:54:57 +08:00
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
if (global::actors.empty()) {
|
|
|
|
log_notice("no testcase(s) configured, exiting");
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2017-03-30 23:54:57 +08:00
|
|
|
bool failed = false;
|
2017-04-21 23:41:11 +08:00
|
|
|
global::start_motonic = chrono::now_motonic();
|
|
|
|
global::deadline_motonic.fixedpoint =
|
|
|
|
(global::config::timeout_duration_seconds == 0)
|
|
|
|
? chrono::infinite().fixedpoint
|
|
|
|
: global::start_motonic.fixedpoint +
|
|
|
|
chrono::from_seconds(global::config::timeout_duration_seconds)
|
|
|
|
.fixedpoint;
|
|
|
|
|
|
|
|
if (global::config::cleanup_before)
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
if (global::actors.size() == 1) {
|
|
|
|
logging::setup("main");
|
|
|
|
global::singlemode = true;
|
|
|
|
if (!test_execute(global::actors.front()))
|
|
|
|
failed = true;
|
|
|
|
} else {
|
2017-04-11 17:55:16 +08:00
|
|
|
logging::setup("overlord");
|
2017-03-30 23:54:57 +08:00
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
log_trace("=== preparing...");
|
2017-03-30 23:54:57 +08:00
|
|
|
log_trace(">> osal_setup");
|
|
|
|
osal_setup(global::actors);
|
|
|
|
log_trace("<< osal_setup");
|
|
|
|
|
|
|
|
for (auto &a : global::actors) {
|
|
|
|
mdbx_pid_t pid;
|
|
|
|
log_trace(">> actor_start");
|
|
|
|
int rc = osal_actor_start(a, pid);
|
|
|
|
log_trace("<< actor_start");
|
|
|
|
if (rc) {
|
2017-04-23 17:54:37 +08:00
|
|
|
log_trace(">> killall_actors: (%s)", "start failed");
|
2017-03-30 23:54:57 +08:00
|
|
|
osal_killall_actors();
|
|
|
|
log_trace("<< killall_actors");
|
2017-04-21 23:41:11 +08:00
|
|
|
failure("Failed to start actor #%u (%s)\n", a.actor_id,
|
|
|
|
test_strerror(rc));
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
global::pid2actor[pid] = &a;
|
|
|
|
}
|
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
log_trace("=== ready to start...");
|
2017-03-30 23:54:57 +08:00
|
|
|
atexit(osal_killall_actors);
|
|
|
|
log_trace(">> wait4barrier");
|
|
|
|
osal_wait4barrier();
|
|
|
|
log_trace("<< wait4barrier");
|
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
size_t left = global::actors.size();
|
|
|
|
log_trace("=== polling...");
|
|
|
|
while (left > 0) {
|
|
|
|
unsigned timeout_seconds_left = INT_MAX;
|
|
|
|
chrono::time now_motonic = chrono::now_motonic();
|
|
|
|
if (now_motonic.fixedpoint >= global::deadline_motonic.fixedpoint)
|
|
|
|
timeout_seconds_left = 0;
|
|
|
|
else {
|
|
|
|
chrono::time left_motonic;
|
|
|
|
left_motonic.fixedpoint =
|
|
|
|
global::deadline_motonic.fixedpoint - now_motonic.fixedpoint;
|
|
|
|
timeout_seconds_left = left_motonic.seconds();
|
|
|
|
}
|
2017-03-30 23:54:57 +08:00
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
mdbx_pid_t pid;
|
|
|
|
int rc = osal_actor_poll(pid, timeout_seconds_left);
|
|
|
|
if (rc)
|
|
|
|
failure("Poll error: %s (%d)\n", test_strerror(rc), rc);
|
|
|
|
|
|
|
|
if (pid) {
|
|
|
|
actor_status status = osal_actor_info(pid);
|
|
|
|
actor_config *actor = global::pid2actor.at(pid);
|
|
|
|
if (!actor)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
log_info("actor #%u, id %d, pid %u: %s\n", actor->actor_id,
|
|
|
|
actor->space_id, pid, status2str(status));
|
|
|
|
if (status > as_running) {
|
|
|
|
left -= 1;
|
2017-04-23 17:54:37 +08:00
|
|
|
if (status != as_successful) {
|
|
|
|
if (global::config::failfast && !failed) {
|
|
|
|
log_trace(">> killall_actors: (%s)", "failfast");
|
|
|
|
osal_killall_actors();
|
|
|
|
log_trace("<< killall_actors");
|
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
failed = true;
|
2017-04-23 17:54:37 +08:00
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (timeout_seconds_left == 0)
|
|
|
|
failure("Timeout\n");
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-21 23:41:11 +08:00
|
|
|
log_trace("=== done...");
|
2017-03-30 23:54:57 +08:00
|
|
|
}
|
|
|
|
|
2017-04-21 23:41:11 +08:00
|
|
|
log_notice("RESULT: %s\n", failed ? "Failed" : "Successful");
|
|
|
|
if (global::config::cleanup_before) {
|
2017-03-30 23:54:57 +08:00
|
|
|
if (failed)
|
|
|
|
log_info("skip cleanup");
|
|
|
|
else
|
|
|
|
cleanup();
|
|
|
|
}
|
|
|
|
return failed ? EXIT_FAILURE : EXIT_SUCCESS;
|
|
|
|
}
|