df6d458b85
* Remove orphan state wipe from UnloadBlockIndex. As orphan state is now "network state", like in d6ea737be19a0001e69e4e854eb1cef21523ea7a, UnloadBlockIndex is only used during init if we end up reindexing to clear our block state so that we can start over. However, at that time no connections have been brought up as CConnman hasn't been started yet, so all of the network processing state logic is empty when its called. * Move network-msg-processing code out of main to its own file * Rename the remaining main.{h,cpp} to validation.{h,cpp}
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
// Copyright (c) 2013-2015 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 "clientversion.h"
|
|
#include "consensus/validation.h"
|
|
#include "validation.h" // For CheckBlock
|
|
#include "primitives/block.h"
|
|
#include "test/test_dash.h"
|
|
#include "utiltime.h"
|
|
|
|
#include <cstdio>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
#include <boost/filesystem/path.hpp>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(CheckBlock_tests, BasicTestingSetup)
|
|
|
|
bool read_block(const std::string& filename, CBlock& block)
|
|
{
|
|
namespace fs = boost::filesystem;
|
|
fs::path testFile = fs::current_path() / "data" / filename;
|
|
#ifdef TEST_DATA_DIR
|
|
if (!fs::exists(testFile))
|
|
{
|
|
testFile = fs::path(BOOST_PP_STRINGIZE(TEST_DATA_DIR)) / filename;
|
|
}
|
|
#endif
|
|
FILE* fp = fopen(testFile.string().c_str(), "rb");
|
|
if (!fp) return false;
|
|
|
|
fseek(fp, 8, SEEK_SET); // skip msgheader/size
|
|
|
|
CAutoFile filein(fp, SER_DISK, CLIENT_VERSION);
|
|
if (filein.IsNull()) return false;
|
|
|
|
filein >> block;
|
|
|
|
return true;
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(May15)
|
|
{
|
|
// Putting a 1MB binary file in the git repository is not a great
|
|
// idea, so this test is only run if you manually download
|
|
// test/data/Mar12Fork.dat from
|
|
// http://sourceforge.net/projects/bitcoin/files/Bitcoin/blockchain/Mar12Fork.dat/download
|
|
unsigned int tMay15 = 1368576000;
|
|
SetMockTime(tMay15); // Test as if it was right at May 15
|
|
|
|
CBlock forkingBlock;
|
|
if (read_block("Mar12Fork.dat", forkingBlock))
|
|
{
|
|
CValidationState state;
|
|
|
|
// After May 15'th, big blocks are OK:
|
|
forkingBlock.nTime = tMay15; // Invalidates PoW
|
|
BOOST_CHECK(CheckBlock(forkingBlock, state, false, false));
|
|
}
|
|
|
|
SetMockTime(0);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|