mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 22:32:37 -03:00
6544ea5035
There is no change in behavior. This just helps prepare for the transition from boost::filesystem to std::filesystem by avoiding calls to methods which will be unsafe after the transaction to std::filesystem to due lack of a boost::filesystem::path::imbue equivalent and inability to set a predictable locale. Co-authored-by: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Co-authored-by: Kiminuo <kiminuo@protonmail.com> Co-authored-by: MarcoFalke <falke.marco@gmail.com>
79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
// Copyright (c) 2018-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <memory>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <fs.h>
|
|
#include <test/util/setup_common.h>
|
|
#include <wallet/bdb.h>
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(db_tests, BasicTestingSetup)
|
|
|
|
static std::shared_ptr<BerkeleyEnvironment> GetWalletEnv(const fs::path& path, std::string& database_filename)
|
|
{
|
|
fs::path data_file = BDBDataFile(path);
|
|
database_filename = fs::PathToString(data_file.filename());
|
|
return GetBerkeleyEnv(data_file.parent_path());
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(getwalletenv_file)
|
|
{
|
|
std::string test_name = "test_name.dat";
|
|
const fs::path datadir = gArgs.GetDataDirNet();
|
|
fs::path file_path = datadir / test_name;
|
|
fs::ofstream f(file_path);
|
|
f.close();
|
|
|
|
std::string filename;
|
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(file_path, filename);
|
|
BOOST_CHECK_EQUAL(filename, test_name);
|
|
BOOST_CHECK_EQUAL(env->Directory(), datadir);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(getwalletenv_directory)
|
|
{
|
|
std::string expected_name = "wallet.dat";
|
|
const fs::path datadir = gArgs.GetDataDirNet();
|
|
|
|
std::string filename;
|
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(datadir, filename);
|
|
BOOST_CHECK_EQUAL(filename, expected_name);
|
|
BOOST_CHECK_EQUAL(env->Directory(), datadir);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(getwalletenv_g_dbenvs_multiple)
|
|
{
|
|
fs::path datadir = gArgs.GetDataDirNet() / "1";
|
|
fs::path datadir_2 = gArgs.GetDataDirNet() / "2";
|
|
std::string filename;
|
|
|
|
std::shared_ptr<BerkeleyEnvironment> env_1 = GetWalletEnv(datadir, filename);
|
|
std::shared_ptr<BerkeleyEnvironment> env_2 = GetWalletEnv(datadir, filename);
|
|
std::shared_ptr<BerkeleyEnvironment> env_3 = GetWalletEnv(datadir_2, filename);
|
|
|
|
BOOST_CHECK(env_1 == env_2);
|
|
BOOST_CHECK(env_2 != env_3);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(getwalletenv_g_dbenvs_free_instance)
|
|
{
|
|
fs::path datadir = gArgs.GetDataDirNet() / "1";
|
|
fs::path datadir_2 = gArgs.GetDataDirNet() / "2";
|
|
std::string filename;
|
|
|
|
std::shared_ptr <BerkeleyEnvironment> env_1_a = GetWalletEnv(datadir, filename);
|
|
std::shared_ptr <BerkeleyEnvironment> env_2_a = GetWalletEnv(datadir_2, filename);
|
|
env_1_a.reset();
|
|
|
|
std::shared_ptr<BerkeleyEnvironment> env_1_b = GetWalletEnv(datadir, filename);
|
|
std::shared_ptr<BerkeleyEnvironment> env_2_b = GetWalletEnv(datadir_2, filename);
|
|
|
|
BOOST_CHECK(env_1_a != env_1_b);
|
|
BOOST_CHECK(env_2_a == env_2_b);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|