2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2015-2016 The Bitcoin Core developers
|
2015-01-05 21:40:24 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2015-03-03 16:49:12 +01:00
|
|
|
#ifndef BITCOIN_TEST_TEST_BITCOIN_H
|
|
|
|
#define BITCOIN_TEST_TEST_BITCOIN_H
|
|
|
|
|
2015-03-03 15:59:32 +01:00
|
|
|
#include "chainparamsbase.h"
|
2017-03-01 16:54:22 +01:00
|
|
|
#include "fs.h"
|
2015-03-03 15:59:32 +01:00
|
|
|
#include "key.h"
|
2015-07-28 20:11:20 +02:00
|
|
|
#include "pubkey.h"
|
2017-05-24 00:09:30 +02:00
|
|
|
#include "random.h"
|
2015-03-03 16:49:12 +01:00
|
|
|
#include "txdb.h"
|
2015-12-04 21:01:22 +01:00
|
|
|
#include "txmempool.h"
|
2015-03-03 16:49:12 +01:00
|
|
|
|
|
|
|
#include <boost/thread.hpp>
|
|
|
|
|
2017-05-24 00:09:30 +02:00
|
|
|
extern uint256 insecure_rand_seed;
|
|
|
|
extern FastRandomContext insecure_rand_ctx;
|
|
|
|
|
|
|
|
static inline void seed_insecure_rand(bool fDeterministic = false)
|
|
|
|
{
|
|
|
|
if (fDeterministic) {
|
|
|
|
insecure_rand_seed = uint256();
|
|
|
|
} else {
|
|
|
|
insecure_rand_seed = GetRandHash();
|
|
|
|
}
|
|
|
|
insecure_rand_ctx = FastRandomContext(insecure_rand_seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t insecure_rand(void)
|
|
|
|
{
|
|
|
|
return insecure_rand_ctx.rand32();
|
|
|
|
}
|
|
|
|
|
2015-03-12 09:34:42 +01:00
|
|
|
/** Basic testing setup.
|
|
|
|
* This just configures logging and chain parameters.
|
|
|
|
*/
|
|
|
|
struct BasicTestingSetup {
|
2015-07-28 20:11:20 +02:00
|
|
|
ECCVerifyHandle globalVerifyHandle;
|
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
BasicTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
2015-03-12 09:34:42 +01:00
|
|
|
~BasicTestingSetup();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Testing setup that configures a complete environment.
|
2016-04-18 14:54:57 +02:00
|
|
|
* Included are data directory, coins database, script check threads setup.
|
2015-03-12 09:34:42 +01:00
|
|
|
*/
|
2016-04-16 20:47:18 +02:00
|
|
|
class CConnman;
|
2015-03-12 09:34:42 +01:00
|
|
|
struct TestingSetup: public BasicTestingSetup {
|
2015-03-03 16:49:12 +01:00
|
|
|
CCoinsViewDB *pcoinsdbview;
|
2017-03-01 17:05:50 +01:00
|
|
|
fs::path pathTemp;
|
2015-03-03 16:49:12 +01:00
|
|
|
boost::thread_group threadGroup;
|
2016-04-16 20:47:18 +02:00
|
|
|
CConnman* connman;
|
2015-03-03 16:49:12 +01:00
|
|
|
|
2015-06-30 21:39:49 +02:00
|
|
|
TestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
2015-03-03 16:49:12 +01:00
|
|
|
~TestingSetup();
|
|
|
|
};
|
|
|
|
|
2015-03-03 15:59:32 +01:00
|
|
|
class CBlock;
|
|
|
|
struct CMutableTransaction;
|
|
|
|
class CScript;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Testing fixture that pre-creates a
|
|
|
|
// 100-block REGTEST-mode block chain
|
|
|
|
//
|
|
|
|
struct TestChain100Setup : public TestingSetup {
|
|
|
|
TestChain100Setup();
|
|
|
|
|
|
|
|
// Create a new block with just given transactions, coinbase paying to
|
|
|
|
// scriptPubKey, and try to add it to the current chain.
|
|
|
|
CBlock CreateAndProcessBlock(const std::vector<CMutableTransaction>& txns,
|
|
|
|
const CScript& scriptPubKey);
|
|
|
|
|
|
|
|
~TestChain100Setup();
|
|
|
|
|
|
|
|
std::vector<CTransaction> coinbaseTxns; // For convenience, coinbase transactions
|
|
|
|
CKey coinbaseKey; // private/public key needed to spend coinbase transactions
|
|
|
|
};
|
|
|
|
|
2015-11-14 23:04:15 +01:00
|
|
|
class CTxMemPoolEntry;
|
|
|
|
|
|
|
|
struct TestMemPoolEntryHelper
|
|
|
|
{
|
|
|
|
// Default values
|
|
|
|
CAmount nFee;
|
|
|
|
int64_t nTime;
|
|
|
|
unsigned int nHeight;
|
2015-10-29 19:06:13 +01:00
|
|
|
bool spendsCoinbase;
|
2016-01-03 18:54:50 +01:00
|
|
|
unsigned int sigOpCost;
|
2015-12-04 21:01:22 +01:00
|
|
|
LockPoints lp;
|
|
|
|
|
2015-11-14 23:04:15 +01:00
|
|
|
TestMemPoolEntryHelper() :
|
2017-01-20 04:46:50 +01:00
|
|
|
nFee(0), nTime(0), nHeight(1),
|
2016-11-11 17:57:51 +01:00
|
|
|
spendsCoinbase(false), sigOpCost(4) { }
|
2015-10-26 16:08:46 +01:00
|
|
|
|
2017-01-20 04:46:50 +01:00
|
|
|
CTxMemPoolEntry FromTx(const CMutableTransaction &tx);
|
|
|
|
CTxMemPoolEntry FromTx(const CTransaction &tx);
|
2015-11-14 23:04:15 +01:00
|
|
|
|
|
|
|
// Change the default value
|
|
|
|
TestMemPoolEntryHelper &Fee(CAmount _fee) { nFee = _fee; return *this; }
|
|
|
|
TestMemPoolEntryHelper &Time(int64_t _time) { nTime = _time; return *this; }
|
|
|
|
TestMemPoolEntryHelper &Height(unsigned int _height) { nHeight = _height; return *this; }
|
2015-10-29 19:06:13 +01:00
|
|
|
TestMemPoolEntryHelper &SpendsCoinbase(bool _flag) { spendsCoinbase = _flag; return *this; }
|
2016-01-03 18:54:50 +01:00
|
|
|
TestMemPoolEntryHelper &SigOpsCost(unsigned int _sigopsCost) { sigOpCost = _sigopsCost; return *this; }
|
2015-11-14 23:04:15 +01:00
|
|
|
};
|
2015-03-03 16:49:12 +01:00
|
|
|
#endif
|