1 // Copyright (c) 2018-2019 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 <util/check.h>
7 #include <util/system.h>
8 
9 #include <wallet/test/init_test_fixture.h>
10 
InitWalletDirTestingSetup(const std::string & chainName)11 InitWalletDirTestingSetup::InitWalletDirTestingSetup(const std::string& chainName) : BasicTestingSetup(chainName)
12 {
13     m_wallet_client = MakeWalletClient(*m_chain, *Assert(m_node.args));
14 
15     std::string sep;
16     sep += fs::path::preferred_separator;
17 
18     m_datadir = GetDataDir();
19     m_cwd = fs::current_path();
20 
21     m_walletdir_path_cases["default"] = m_datadir / "wallets";
22     m_walletdir_path_cases["custom"] = m_datadir / "my_wallets";
23     m_walletdir_path_cases["nonexistent"] = m_datadir / "path_does_not_exist";
24     m_walletdir_path_cases["file"] = m_datadir / "not_a_directory.dat";
25     m_walletdir_path_cases["trailing"] = m_datadir / "wallets" / sep;
26     m_walletdir_path_cases["trailing2"] = m_datadir / "wallets" / sep / sep;
27 
28     fs::current_path(m_datadir);
29     m_walletdir_path_cases["relative"] = "wallets";
30 
31     fs::create_directories(m_walletdir_path_cases["default"]);
32     fs::create_directories(m_walletdir_path_cases["custom"]);
33     fs::create_directories(m_walletdir_path_cases["relative"]);
34     std::ofstream f(m_walletdir_path_cases["file"].BOOST_FILESYSTEM_C_STR);
35     f.close();
36 }
37 
~InitWalletDirTestingSetup()38 InitWalletDirTestingSetup::~InitWalletDirTestingSetup()
39 {
40     fs::current_path(m_cwd);
41 }
42 
SetWalletDir(const fs::path & walletdir_path)43 void InitWalletDirTestingSetup::SetWalletDir(const fs::path& walletdir_path)
44 {
45     gArgs.ForceSetArg("-walletdir", walletdir_path.string());
46 }
47