forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wallet test refactor: add CreateSyncedWallet function
No change in behavior. This just moves some code from the ListCoins test setup to a reusable util function, so it can be reused in a new test in the next commit.
- Loading branch information
Showing
5 changed files
with
62 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright (c) 2021 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 <wallet/test/util.h> | ||
|
||
#include <chain.h> | ||
#include <key.h> | ||
#include <test/util/setup_common.h> | ||
#include <wallet/wallet.h> | ||
#include <wallet/walletdb.h> | ||
|
||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <memory> | ||
|
||
std::unique_ptr<CWallet> CreateSyncedWallet(interfaces::Chain& chain, CChain& cchain, const CKey& key) | ||
{ | ||
auto wallet = std::make_unique<CWallet>(&chain, "", CreateMockWalletDatabase()); | ||
{ | ||
LOCK2(wallet->cs_wallet, ::cs_main); | ||
wallet->SetLastBlockProcessed(cchain.Height(), cchain.Tip()->GetBlockHash()); | ||
} | ||
wallet->LoadWallet(); | ||
{ | ||
auto spk_man = wallet->GetOrCreateLegacyScriptPubKeyMan(); | ||
LOCK2(wallet->cs_wallet, spk_man->cs_KeyStore); | ||
spk_man->AddKeyPubKey(key, key.GetPubKey()); | ||
} | ||
WalletRescanReserver reserver(*wallet); | ||
reserver.reserve(); | ||
CWallet::ScanResult result = wallet->ScanForWalletTransactions(cchain.Genesis()->GetBlockHash(), 0 /* start_height */, {} /* max_height */, reserver, false /* update */); | ||
BOOST_CHECK_EQUAL(result.status, CWallet::ScanResult::SUCCESS); | ||
BOOST_CHECK_EQUAL(result.last_scanned_block, cchain.Tip()->GetBlockHash()); | ||
BOOST_CHECK_EQUAL(*result.last_scanned_height, cchain.Height()); | ||
BOOST_CHECK(result.last_failed_block.IsNull()); | ||
return wallet; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) 2021 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#ifndef BITCOIN_WALLET_TEST_UTIL_H | ||
#define BITCOIN_WALLET_TEST_UTIL_H | ||
|
||
#include <memory> | ||
|
||
class CChain; | ||
class CKey; | ||
class CWallet; | ||
namespace interfaces { | ||
class Chain; | ||
} // namespace interfaces | ||
|
||
std::unique_ptr<CWallet> CreateSyncedWallet(interfaces::Chain& chain, CChain& cchain, const CKey& key); | ||
|
||
#endif // BITCOIN_WALLET_TEST_UTIL_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters