2016-12-31 11:01:21 -07:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
2015-03-03 07:49:12 -08:00
|
|
|
#include "test_bitcoin.h"
|
|
|
|
|
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chainparams.h"
|
2015-03-03 09:59:32 -05:00
|
|
|
#include "consensus/consensus.h"
|
|
|
|
|
#include "consensus/validation.h"
|
2017-03-01 15:54:22 +00:00
|
|
|
#include "fs.h"
|
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 14:28:26 -07:00
|
|
|
#include "key.h"
|
2016-12-01 16:06:41 -08:00
|
|
|
#include "validation.h"
|
2015-03-03 09:59:32 -05:00
|
|
|
#include "miner.h"
|
2016-12-01 15:45:50 -08:00
|
|
|
#include "net_processing.h"
|
2015-03-03 09:59:32 -05:00
|
|
|
#include "pubkey.h"
|
2014-06-26 14:41:53 +02:00
|
|
|
#include "random.h"
|
2013-04-13 00:13:08 -05:00
|
|
|
#include "txdb.h"
|
2015-11-14 17:04:15 -05:00
|
|
|
#include "txmempool.h"
|
2013-04-13 00:13:08 -05:00
|
|
|
#include "ui_interface.h"
|
2016-03-29 19:43:02 +02:00
|
|
|
#include "rpc/server.h"
|
|
|
|
|
#include "rpc/register.h"
|
2016-10-05 16:58:47 -04:00
|
|
|
#include "script/sigcache.h"
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2016-03-11 15:04:05 +00:00
|
|
|
#include "test/testutil.h"
|
|
|
|
|
|
2016-06-18 19:38:28 +02:00
|
|
|
#include <memory>
|
|
|
|
|
|
2017-02-15 17:45:22 -08:00
|
|
|
uint256 insecure_rand_seed = GetRandHash();
|
|
|
|
|
FastRandomContext insecure_rand_ctx(insecure_rand_seed);
|
2016-04-16 14:47:18 -04:00
|
|
|
|
2011-10-03 16:14:13 -04:00
|
|
|
extern bool fPrintToConsole;
|
2012-05-19 09:35:26 +02:00
|
|
|
extern void noui_connect();
|
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
BasicTestingSetup::BasicTestingSetup(const std::string& chainName)
|
2015-03-03 07:49:12 -08:00
|
|
|
{
|
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 14:28:26 -07:00
|
|
|
ECC_Start();
|
2015-03-25 12:09:17 +01:00
|
|
|
SetupEnvironment();
|
2015-11-01 11:43:55 +01:00
|
|
|
SetupNetworking();
|
2016-10-05 16:58:47 -04:00
|
|
|
InitSignatureCache();
|
2013-12-14 13:51:11 +01:00
|
|
|
fPrintToDebugLog = false; // don't want to write to debug.log file
|
2015-03-13 09:25:34 -07:00
|
|
|
fCheckBlockIndex = true;
|
2015-06-30 21:39:49 +02:00
|
|
|
SelectParams(chainName);
|
2015-03-03 09:59:32 -05:00
|
|
|
noui_connect();
|
2015-03-12 09:34:42 +01:00
|
|
|
}
|
2015-03-03 09:59:32 -05:00
|
|
|
|
2015-03-12 09:34:42 +01:00
|
|
|
BasicTestingSetup::~BasicTestingSetup()
|
|
|
|
|
{
|
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 14:28:26 -07:00
|
|
|
ECC_Stop();
|
2016-04-16 14:47:18 -04:00
|
|
|
g_connman.reset();
|
2015-03-12 09:34:42 +01:00
|
|
|
}
|
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
TestingSetup::TestingSetup(const std::string& chainName) : BasicTestingSetup(chainName)
|
2015-03-12 09:34:42 +01:00
|
|
|
{
|
2015-04-17 14:40:24 +02:00
|
|
|
const CChainParams& chainparams = Params();
|
2016-03-29 19:43:02 +02:00
|
|
|
// Ideally we'd move all the RPC tests to the functional testing framework
|
|
|
|
|
// instead of unit tests, but for now we need these here.
|
2016-04-16 14:47:18 -04:00
|
|
|
|
2016-03-29 19:43:02 +02:00
|
|
|
RegisterAllCoreRPCCommands(tableRPC);
|
2015-03-03 07:49:12 -08:00
|
|
|
ClearDatadirCache();
|
2017-06-07 12:03:17 -07:00
|
|
|
pathTemp = GetTempPath() / strprintf("test_bitcoin_%lu_%i", (unsigned long)GetTime(), (int)(InsecureRandRange(100000)));
|
2017-03-01 17:05:50 +01:00
|
|
|
fs::create_directories(pathTemp);
|
2016-12-24 11:28:44 -05:00
|
|
|
ForceSetArg("-datadir", pathTemp.string());
|
2016-06-18 19:15:03 +02:00
|
|
|
mempool.setSanityCheck(1.0);
|
2012-11-10 00:09:57 +01:00
|
|
|
pblocktree = new CBlockTreeDB(1 << 20, true);
|
|
|
|
|
pcoinsdbview = new CCoinsViewDB(1 << 23, true);
|
2014-09-24 03:19:04 +02:00
|
|
|
pcoinsTip = new CCoinsViewCache(pcoinsdbview);
|
2017-03-10 15:47:41 -05:00
|
|
|
if (!InitBlockIndex(chainparams)) {
|
|
|
|
|
throw std::runtime_error("InitBlockIndex failed.");
|
|
|
|
|
}
|
2016-07-22 15:57:25 +02:00
|
|
|
{
|
|
|
|
|
CValidationState state;
|
2017-03-10 15:47:41 -05:00
|
|
|
if (!ActivateBestChain(state, chainparams)) {
|
|
|
|
|
throw std::runtime_error("ActivateBestChain failed.");
|
|
|
|
|
}
|
2016-07-22 15:57:25 +02:00
|
|
|
}
|
2012-12-01 23:04:14 +01:00
|
|
|
nScriptCheckThreads = 3;
|
|
|
|
|
for (int i=0; i < nScriptCheckThreads-1; i++)
|
2013-03-06 22:31:26 -05:00
|
|
|
threadGroup.create_thread(&ThreadScriptCheck);
|
2016-09-09 12:48:10 +02:00
|
|
|
g_connman = std::unique_ptr<CConnman>(new CConnman(0x1337, 0x1337)); // Deterministic randomness for tests.
|
2016-04-16 14:47:18 -04:00
|
|
|
connman = g_connman.get();
|
2013-11-18 01:25:17 +01:00
|
|
|
RegisterNodeSignals(GetNodeSignals());
|
2015-03-03 07:49:12 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestingSetup::~TestingSetup()
|
|
|
|
|
{
|
|
|
|
|
UnregisterNodeSignals(GetNodeSignals());
|
2013-03-06 22:31:26 -05:00
|
|
|
threadGroup.interrupt_all();
|
|
|
|
|
threadGroup.join_all();
|
2015-03-03 07:49:12 -08:00
|
|
|
UnloadBlockIndex();
|
2012-09-03 15:26:57 +02:00
|
|
|
delete pcoinsTip;
|
|
|
|
|
delete pcoinsdbview;
|
|
|
|
|
delete pblocktree;
|
2017-03-01 17:05:50 +01:00
|
|
|
fs::remove_all(pathTemp);
|
2015-03-03 07:49:12 -08:00
|
|
|
}
|
2011-10-03 16:14:13 -04:00
|
|
|
|
2015-03-03 09:59:32 -05:00
|
|
|
TestChain100Setup::TestChain100Setup() : TestingSetup(CBaseChainParams::REGTEST)
|
|
|
|
|
{
|
|
|
|
|
// Generate a 100-block chain:
|
|
|
|
|
coinbaseKey.MakeNewKey(true);
|
|
|
|
|
CScript scriptPubKey = CScript() << ToByteVector(coinbaseKey.GetPubKey()) << OP_CHECKSIG;
|
|
|
|
|
for (int i = 0; i < COINBASE_MATURITY; i++)
|
|
|
|
|
{
|
|
|
|
|
std::vector<CMutableTransaction> noTxns;
|
|
|
|
|
CBlock b = CreateAndProcessBlock(noTxns, scriptPubKey);
|
2016-11-10 17:26:00 -08:00
|
|
|
coinbaseTxns.push_back(*b.vtx[0]);
|
2015-03-03 09:59:32 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Create a new block with just given transactions, coinbase paying to
|
|
|
|
|
// scriptPubKey, and try to add it to the current chain.
|
|
|
|
|
//
|
|
|
|
|
CBlock
|
|
|
|
|
TestChain100Setup::CreateAndProcessBlock(const std::vector<CMutableTransaction>& txns, const CScript& scriptPubKey)
|
|
|
|
|
{
|
2015-04-20 00:17:11 +02:00
|
|
|
const CChainParams& chainparams = Params();
|
2016-06-18 19:38:28 +02:00
|
|
|
std::unique_ptr<CBlockTemplate> pblocktemplate = BlockAssembler(chainparams).CreateNewBlock(scriptPubKey);
|
2015-03-03 09:59:32 -05:00
|
|
|
CBlock& block = pblocktemplate->block;
|
|
|
|
|
|
|
|
|
|
// Replace mempool-selected txns with just coinbase plus passed-in txns:
|
|
|
|
|
block.vtx.resize(1);
|
|
|
|
|
BOOST_FOREACH(const CMutableTransaction& tx, txns)
|
2016-11-10 17:34:17 -08:00
|
|
|
block.vtx.push_back(MakeTransactionRef(tx));
|
2015-03-03 09:59:32 -05:00
|
|
|
// IncrementExtraNonce creates a valid coinbase and merkleRoot
|
|
|
|
|
unsigned int extraNonce = 0;
|
|
|
|
|
IncrementExtraNonce(&block, chainActive.Tip(), extraNonce);
|
|
|
|
|
|
2015-04-20 00:17:11 +02:00
|
|
|
while (!CheckProofOfWork(block.GetHash(), block.nBits, chainparams.GetConsensus())) ++block.nNonce;
|
2015-03-03 09:59:32 -05:00
|
|
|
|
2016-12-04 00:17:30 -08:00
|
|
|
std::shared_ptr<const CBlock> shared_pblock = std::make_shared<const CBlock>(block);
|
2016-12-04 00:23:17 -08:00
|
|
|
ProcessNewBlock(chainparams, shared_pblock, true, NULL);
|
2015-03-03 09:59:32 -05:00
|
|
|
|
|
|
|
|
CBlock result = block;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestChain100Setup::~TestChain100Setup()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-14 17:04:15 -05:00
|
|
|
|
2017-01-19 22:46:50 -05:00
|
|
|
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CMutableTransaction &tx) {
|
2015-11-13 10:05:21 -05:00
|
|
|
CTransaction txn(tx);
|
2017-01-19 22:46:50 -05:00
|
|
|
return FromTx(txn);
|
2016-04-25 17:04:13 -07:00
|
|
|
}
|
|
|
|
|
|
2017-01-19 22:46:50 -05:00
|
|
|
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CTransaction &txn) {
|
2017-01-20 09:24:35 -05:00
|
|
|
return CTxMemPoolEntry(MakeTransactionRef(txn), nFee, nTime, nHeight,
|
|
|
|
|
spendsCoinbase, sigOpCost, lp);
|
2015-11-14 17:04:15 -05:00
|
|
|
}
|