2022-11-08 16:17:14 +03:00
|
|
|
#include "test.h++"
|
2018-11-04 18:57:36 +03:00
|
|
|
|
2021-03-15 20:52:18 +03:00
|
|
|
class testcase_copy : public testcase {
|
|
|
|
const std::string copy_pathname;
|
|
|
|
void copy_db(const bool with_compaction);
|
|
|
|
|
|
|
|
public:
|
|
|
|
testcase_copy(const actor_config &config, const mdbx_pid_t pid)
|
|
|
|
: testcase(config, pid),
|
|
|
|
copy_pathname(config.params.pathname_db + "-copy") {}
|
|
|
|
bool run() override;
|
|
|
|
};
|
|
|
|
REGISTER_TESTCASE(copy);
|
|
|
|
|
2018-11-04 18:57:36 +03:00
|
|
|
void testcase_copy::copy_db(const bool with_compaction) {
|
2020-10-10 00:59:12 +03:00
|
|
|
int err = mdbx_env_delete(copy_pathname.c_str(), MDBX_ENV_JUST_DELETE);
|
|
|
|
if (err != MDBX_SUCCESS && err != MDBX_RESULT_TRUE)
|
2022-08-11 01:03:15 +03:00
|
|
|
failure_perror("osal_removefile()", err);
|
2018-11-04 18:57:36 +03:00
|
|
|
|
|
|
|
err = mdbx_env_copy(db_guard.get(), copy_pathname.c_str(),
|
2020-08-04 01:06:01 +03:00
|
|
|
with_compaction ? MDBX_CP_COMPACT : MDBX_CP_DEFAULTS);
|
2018-11-04 18:57:36 +03:00
|
|
|
if (unlikely(err != MDBX_SUCCESS))
|
|
|
|
failure_perror(with_compaction ? "mdbx_env_copy(MDBX_CP_COMPACT)"
|
|
|
|
: "mdbx_env_copy(MDBX_CP_ASIS)",
|
|
|
|
err);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool testcase_copy::run() {
|
|
|
|
jitter_delay();
|
|
|
|
db_open();
|
|
|
|
assert(!txn_guard);
|
|
|
|
const bool order = flipcoin();
|
|
|
|
jitter_delay();
|
|
|
|
copy_db(order);
|
|
|
|
jitter_delay();
|
|
|
|
copy_db(!order);
|
|
|
|
return true;
|
|
|
|
}
|