2014-03-18 10:11:00 +01:00
|
|
|
// Copyright (c) 2013-2014 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2013-03-15 18:10:34 +01:00
|
|
|
//
|
|
|
|
// Unit tests for block.CheckBlock()
|
|
|
|
//
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2013-03-15 18:10:34 +01:00
|
|
|
|
|
|
|
#include "main.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "utiltime.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2013-03-15 18:10:34 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(CheckBlock_tests)
|
|
|
|
|
2014-02-10 16:31:06 +01:00
|
|
|
bool read_block(const std::string& filename, CBlock& block)
|
2013-03-15 18:10:34 +01:00
|
|
|
{
|
|
|
|
namespace fs = boost::filesystem;
|
2013-09-11 01:04:45 +02:00
|
|
|
fs::path testFile = fs::current_path() / "data" / filename;
|
2013-03-15 18:10:34 +01:00
|
|
|
#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
|
|
|
|
|
2014-09-26 01:25:19 +02:00
|
|
|
CAutoFile filein(fp, SER_DISK, CLIENT_VERSION);
|
2013-03-15 18:10:34 +01:00
|
|
|
if (!filein) 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
|
2013-06-24 04:14:11 +02:00
|
|
|
BOOST_CHECK(CheckBlock(forkingBlock, state, false, false));
|
2013-03-15 18:10:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SetMockTime(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|