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-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-03-03 15:59:32 +01:00
|
|
|
BasicTestingSetup(CBaseChainParams::Network network = 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-03-03 15:59:32 +01:00
|
|
|
TestingSetup(CBaseChainParams::Network network = 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-03-03 16:49:12 +01:00
|
|
|
#endif
|