Bitcoin Core 22.99.0
P2P Digital Currency
init_test_fixture.cpp
Go to the documentation of this file.
1// Copyright (c) 2018-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <fs.h>
6#include <univalue.h>
7#include <util/check.h>
8#include <util/system.h>
9
11
13{
15
16 std::string sep;
17 sep += fs::path::preferred_separator;
18
20 m_cwd = fs::current_path();
21
22 m_walletdir_path_cases["default"] = m_datadir / "wallets";
23 m_walletdir_path_cases["custom"] = m_datadir / "my_wallets";
24 m_walletdir_path_cases["nonexistent"] = m_datadir / "path_does_not_exist";
25 m_walletdir_path_cases["file"] = m_datadir / "not_a_directory.dat";
26 m_walletdir_path_cases["trailing"] = m_datadir / "wallets" / sep;
27 m_walletdir_path_cases["trailing2"] = m_datadir / "wallets" / sep / sep;
28
29 fs::current_path(m_datadir);
30 m_walletdir_path_cases["relative"] = "wallets";
31
32 fs::create_directories(m_walletdir_path_cases["default"]);
33 fs::create_directories(m_walletdir_path_cases["custom"]);
34 fs::create_directories(m_walletdir_path_cases["relative"]);
36 f.close();
37}
38
40{
41 gArgs.LockSettings([&](util::Settings& settings) {
42 settings.forced_settings.erase("walletdir");
43 });
44 fs::current_path(m_cwd);
45}
46
48{
49 gArgs.ForceSetArg("-walletdir", fs::PathToString(walletdir_path));
50}
#define Assert(val)
Identity function.
Definition: check.h:57
void ForceSetArg(const std::string &strArg, const std::string &strValue)
Definition: system.cpp:624
void LockSettings(Fn &&fn)
Access settings with lock held.
Definition: system.h:437
const fs::path & GetDataDirNet() const
Get data directory path with appended network identifier.
Definition: system.h:288
Path class wrapper to prepare application code for transition from boost::filesystem library to std::...
Definition: fs.h:34
static std::string PathToString(const path &path)
Convert path object to byte string.
Definition: fs.h:120
fs::ofstream ofstream
Definition: fs.h:225
std::unique_ptr< WalletClient > MakeWalletClient(Chain &chain, ArgsManager &args)
Return implementation of ChainClient interface for a wallet client.
Definition: dummywallet.cpp:67
Basic testing setup.
Definition: setup_common.h:76
NodeContext m_node
Definition: setup_common.h:78
std::unique_ptr< interfaces::WalletClient > m_wallet_client
InitWalletDirTestingSetup(const std::string &chainName=CBaseChainParams::MAIN)
std::map< std::string, fs::path > m_walletdir_path_cases
void SetWalletDir(const fs::path &walletdir_path)
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:50
ArgsManager * args
Definition: context.h:49
Stored settings.
Definition: settings.h:31
std::map< std::string, SettingsValue > forced_settings
Map of setting name to forced setting value.
Definition: settings.h:33
ArgsManager gArgs
Definition: system.cpp:85