-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Mock IBD in net_processing fuzzers
- Loading branch information
MarcoFalke
committed
Nov 7, 2020
1 parent
c51c275
commit fa4234d
Showing
6 changed files
with
56 additions
and
4 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
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,22 @@ | ||
// Copyright (c) 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 <test/util/validation.h> | ||
|
||
#include <util/check.h> | ||
#include <util/time.h> | ||
#include <validation.h> | ||
|
||
void TestChainState::ResetIbd() | ||
{ | ||
m_cached_finished_ibd = false; | ||
assert(IsInitialBlockDownload()); | ||
} | ||
|
||
void TestChainState::JumpOutOfIbd() | ||
{ | ||
Assert(IsInitialBlockDownload()); | ||
m_cached_finished_ibd = true; | ||
Assert(!IsInitialBlockDownload()); | ||
} |
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,17 @@ | ||
// Copyright (c) 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. | ||
|
||
#ifndef BITCOIN_TEST_UTIL_VALIDATION_H | ||
#define BITCOIN_TEST_UTIL_VALIDATION_H | ||
|
||
#include <validation.h> | ||
|
||
struct TestChainState : public CChainState { | ||
/** Reset the ibd cache to its initial state */ | ||
void ResetIbd(); | ||
/** Toggle IsInitialBlockDownload from true to false */ | ||
void JumpOutOfIbd(); | ||
}; | ||
|
||
#endif // BITCOIN_TEST_UTIL_VALIDATION_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