2015-01-05 21:40:24 +01:00
|
|
|
// Copyright (c) 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.
|
|
|
|
|
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"
|
|
|
|
#include "key.h"
|
2015-07-28 20:11:20 +02:00
|
|
|
#include "pubkey.h"
|
2015-03-03 16:49:12 +01:00
|
|
|
#include "txdb.h"
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/thread.hpp>
|
|
|
|
|
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.
|
|
|
|
* Included are data directory, coins database, script check threads
|
|
|
|
* and wallet (if enabled) setup.
|
|
|
|
*/
|
|
|
|
struct TestingSetup: public BasicTestingSetup {
|
2015-03-03 16:49:12 +01:00
|
|
|
CCoinsViewDB *pcoinsdbview;
|
|
|
|
boost::filesystem::path pathTemp;
|
|
|
|
boost::thread_group threadGroup;
|
|
|
|
|
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;
|
|
|
|
class CTxMemPool;
|
|
|
|
|
|
|
|
struct TestMemPoolEntryHelper
|
|
|
|
{
|
|
|
|
// Default values
|
|
|
|
CAmount nFee;
|
|
|
|
int64_t nTime;
|
|
|
|
double dPriority;
|
|
|
|
unsigned int nHeight;
|
|
|
|
bool hadNoDependencies;
|
2015-10-29 19:06:13 +01:00
|
|
|
bool spendsCoinbase;
|
2015-10-26 16:08:46 +01:00
|
|
|
unsigned int sigOpCount;
|
|
|
|
|
2015-11-14 23:04:15 +01:00
|
|
|
TestMemPoolEntryHelper() :
|
|
|
|
nFee(0), nTime(0), dPriority(0.0), nHeight(1),
|
2015-10-26 16:08:46 +01:00
|
|
|
hadNoDependencies(false), spendsCoinbase(false), sigOpCount(1) { }
|
|
|
|
|
2015-11-14 23:04:15 +01:00
|
|
|
CTxMemPoolEntry FromTx(CMutableTransaction &tx, CTxMemPool *pool = NULL);
|
|
|
|
|
|
|
|
// Change the default value
|
|
|
|
TestMemPoolEntryHelper &Fee(CAmount _fee) { nFee = _fee; return *this; }
|
|
|
|
TestMemPoolEntryHelper &Time(int64_t _time) { nTime = _time; return *this; }
|
|
|
|
TestMemPoolEntryHelper &Priority(double _priority) { dPriority = _priority; return *this; }
|
|
|
|
TestMemPoolEntryHelper &Height(unsigned int _height) { nHeight = _height; return *this; }
|
|
|
|
TestMemPoolEntryHelper &HadNoDependencies(bool _hnd) { hadNoDependencies = _hnd; return *this; }
|
2015-10-29 19:06:13 +01:00
|
|
|
TestMemPoolEntryHelper &SpendsCoinbase(bool _flag) { spendsCoinbase = _flag; return *this; }
|
2015-10-26 16:08:46 +01:00
|
|
|
TestMemPoolEntryHelper &SigOps(unsigned int _sigops) { sigOpCount = _sigops; return *this; }
|
2015-11-14 23:04:15 +01:00
|
|
|
};
|
2015-03-03 16:49:12 +01:00
|
|
|
#endif
|