summaryrefslogtreecommitdiff
path: root/libs/libmdbx/src/test/cases.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libmdbx/src/test/cases.cc')
-rw-r--r--libs/libmdbx/src/test/cases.cc98
1 files changed, 0 insertions, 98 deletions
diff --git a/libs/libmdbx/src/test/cases.cc b/libs/libmdbx/src/test/cases.cc
deleted file mode 100644
index 98255f52ca..0000000000
--- a/libs/libmdbx/src/test/cases.cc
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright 2017-2020 Leonid Yuriev <leo@yuriev.ru>
- * 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 configure_actor(unsigned &last_space_id, const actor_testcase testcase,
- const char *space_id_cstr, const actor_params &params) {
- unsigned wait4id = 0;
- if (params.waitfor_nops) {
- for (auto i = global::actors.rbegin(); i != global::actors.rend(); ++i) {
- if (i->is_waitable(params.waitfor_nops)) {
- if (i->signal_nops && i->signal_nops != params.waitfor_nops)
- failure("Previous waitable actor (id=%u) already linked on %u-ops\n",
- i->actor_id, i->signal_nops);
- wait4id = i->actor_id;
- i->signal_nops = params.waitfor_nops;
- break;
- }
- }
- if (!wait4id)
- failure("No previous waitable actor for %u-ops\n", params.waitfor_nops);
- }
-
- unsigned space_id = 0;
- if (!space_id_cstr || strcmp(space_id_cstr, "auto") == 0)
- space_id = last_space_id + 1;
- else {
- char *end = nullptr;
- errno = 0;
- space_id = strtoul(space_id_cstr, &end, 0);
- if (errno)
- failure_perror("Expects an integer value for space-id\n", errno);
- if (end && *end)
- failure("The '%s' is unexpected for space-id\n", end);
- }
-
- if (space_id > ACTOR_ID_MAX)
- failure("Invalid space-id %u\n", space_id);
- last_space_id = space_id;
-
- log_trace("configure_actor: space %u for %s", space_id,
- testcase2str(testcase));
- global::actors.emplace_back(
- actor_config(testcase, params, space_id, wait4id));
- global::databases.insert(params.pathname_db);
-}
-
-void testcase_setup(const char *casename, actor_params &params,
- unsigned &last_space_id) {
- if (strcmp(casename, "basic") == 0) {
- log_notice(">>> testcase_setup(%s)", casename);
- configure_actor(last_space_id, ac_nested, nullptr, params);
- configure_actor(last_space_id, ac_hill, nullptr, params);
- configure_actor(last_space_id, ac_ttl, nullptr, params);
- configure_actor(last_space_id, ac_copy, nullptr, params);
- configure_actor(last_space_id, ac_append, nullptr, params);
- configure_actor(last_space_id, ac_jitter, nullptr, params);
- configure_actor(last_space_id, ac_try, nullptr, params);
- configure_actor(last_space_id, ac_jitter, nullptr, params);
- configure_actor(last_space_id, ac_try, nullptr, params);
- log_notice("<<< testcase_setup(%s): done", casename);
- } else {
- failure("unknown testcase `%s`", casename);
- }
-}
-
-void keycase_setup(const char *casename, actor_params &params) {
- if (strcmp(casename, "random") == 0 || strcmp(casename, "prng") == 0) {
- log_notice(">>> keycase_setup(%s)", casename);
- params.keygen.keycase = kc_random;
- // TODO
- log_notice("<<< keycase_setup(%s): done", casename);
- } else if (strcmp(casename, "dashes") == 0 ||
- strcmp(casename, "aside") == 0) {
- log_notice(">>> keycase_setup(%s)", casename);
- params.keygen.keycase = kc_dashes;
- // TODO
- log_notice("<<< keycase_setup(%s): done", casename);
- } else if (strcmp(casename, "custom") == 0) {
- log_notice("=== keycase_setup(%s): skip", casename);
- params.keygen.keycase = kc_custom;
- } else {
- failure("unknown keycase `%s`", casename);
- }
-}
-
-/* TODO */