2020-12-31 09:48:25 +01:00
|
|
|
// Copyright (c) 2018-2020 The Bitcoin Core developers
|
2018-09-10 20:49:17 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|
|
|
|
#define BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|
|
|
|
|
2017-05-30 15:55:17 -04:00
|
|
|
#include <interfaces/chain.h>
|
2020-05-28 09:48:30 -04:00
|
|
|
#include <interfaces/wallet.h>
|
2019-09-17 18:28:03 -04:00
|
|
|
#include <node/context.h>
|
2019-11-05 15:18:59 -05:00
|
|
|
#include <test/util/setup_common.h>
|
2018-09-10 20:49:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
struct InitWalletDirTestingSetup: public BasicTestingSetup {
|
|
|
|
explicit InitWalletDirTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
|
|
|
~InitWalletDirTestingSetup();
|
|
|
|
void SetWalletDir(const fs::path& walletdir_path);
|
|
|
|
|
|
|
|
fs::path m_datadir;
|
|
|
|
fs::path m_cwd;
|
|
|
|
std::map<std::string, fs::path> m_walletdir_path_cases;
|
2020-05-28 09:48:30 -04:00
|
|
|
std::unique_ptr<interfaces::WalletClient> m_wallet_client;
|
2018-09-10 20:49:17 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|