neobytes/src/test/Checkpoints_tests.cpp

39 lines
1.2 KiB
C++
Raw Normal View History

// Copyright (c) 2011-2013 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.
//
// Unit tests for block-chain checkpoints
//
#include "checkpoints.h"
#include "uint256.h"
#include <boost/test/unit_test.hpp>
using namespace std;
BOOST_AUTO_TEST_SUITE(Checkpoints_tests)
BOOST_AUTO_TEST_CASE(sanity)
{
2015-02-25 18:24:15 +01:00
uint256 p88805 = uint256("0x00000000001392f1652e9bf45cd8bc79dc60fe935277cd11538565b4a94fa85f");
2016-01-27 12:55:54 +01:00
uint256 p107996 = uint256("0x00000000000a23840ac16115407488267aa3da2b9bc843e301185b7d17e4dc40");
2015-02-25 18:24:15 +01:00
BOOST_CHECK(Checkpoints::CheckBlock(88805, p88805));
2016-01-27 12:55:54 +01:00
BOOST_CHECK(Checkpoints::CheckBlock(107996, p107996));
// Wrong hashes at checkpoints should fail:
2016-01-27 12:55:54 +01:00
BOOST_CHECK(!Checkpoints::CheckBlock(88805, p107996));
BOOST_CHECK(!Checkpoints::CheckBlock(107996, p88805));
// ... but any hash not at a checkpoint should succeed:
2016-01-27 12:55:54 +01:00
BOOST_CHECK(Checkpoints::CheckBlock(88805+1, p107996));
BOOST_CHECK(Checkpoints::CheckBlock(107996+1, p88805));
2016-01-27 12:55:54 +01:00
BOOST_CHECK(Checkpoints::GetTotalBlocksEstimate() >= 107996);
}
BOOST_AUTO_TEST_SUITE_END()