2014-03-18 10:11:00 +01:00
|
|
|
// 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.
|
|
|
|
|
2011-08-02 17:34:23 +02:00
|
|
|
#define BOOST_TEST_MODULE Bitcoin Test Suite
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
|
2011-06-27 20:05:02 +02:00
|
|
|
|
2011-10-12 01:50:06 +02:00
|
|
|
#include "main.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "txdb.h"
|
|
|
|
#include "ui_interface.h"
|
2012-11-28 21:58:41 +01:00
|
|
|
#include "util.h"
|
2013-11-29 16:04:29 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2013-12-18 20:46:43 +01:00
|
|
|
#include "db.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "wallet.h"
|
2013-11-29 16:04:29 +01:00
|
|
|
#endif
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2011-07-31 20:00:38 +02:00
|
|
|
|
2012-01-05 03:40:52 +01:00
|
|
|
CWallet* pwalletMain;
|
|
|
|
|
2011-10-03 22:14:13 +02:00
|
|
|
extern bool fPrintToConsole;
|
2012-05-19 09:35:26 +02:00
|
|
|
extern void noui_connect();
|
|
|
|
|
2011-10-03 22:14:13 +02:00
|
|
|
struct TestingSetup {
|
2012-09-03 15:26:57 +02:00
|
|
|
CCoinsViewDB *pcoinsdbview;
|
2012-11-28 21:58:41 +01:00
|
|
|
boost::filesystem::path pathTemp;
|
2013-03-07 04:31:26 +01:00
|
|
|
boost::thread_group threadGroup;
|
2012-09-03 15:26:57 +02:00
|
|
|
|
2011-10-03 22:14:13 +02:00
|
|
|
TestingSetup() {
|
2013-12-14 13:51:11 +01:00
|
|
|
fPrintToDebugLog = false; // don't want to write to debug.log file
|
2012-05-19 09:35:26 +02:00
|
|
|
noui_connect();
|
2013-11-29 16:04:29 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2012-05-22 21:51:13 +02:00
|
|
|
bitdb.MakeMock();
|
2013-11-29 16:04:29 +01:00
|
|
|
#endif
|
2012-11-28 21:58:41 +01:00
|
|
|
pathTemp = GetTempPath() / strprintf("test_bitcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000)));
|
|
|
|
boost::filesystem::create_directories(pathTemp);
|
|
|
|
mapArgs["-datadir"] = pathTemp.string();
|
2012-11-10 00:09:57 +01:00
|
|
|
pblocktree = new CBlockTreeDB(1 << 20, true);
|
|
|
|
pcoinsdbview = new CCoinsViewDB(1 << 23, true);
|
2012-09-03 15:26:57 +02:00
|
|
|
pcoinsTip = new CCoinsViewCache(*pcoinsdbview);
|
2013-01-30 21:43:36 +01:00
|
|
|
InitBlockIndex();
|
2013-11-29 16:04:29 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2012-05-22 21:51:13 +02:00
|
|
|
bool fFirstRun;
|
|
|
|
pwalletMain = new CWallet("wallet.dat");
|
|
|
|
pwalletMain->LoadWallet(fFirstRun);
|
2012-01-05 03:40:52 +01:00
|
|
|
RegisterWallet(pwalletMain);
|
2013-11-29 16:04:29 +01:00
|
|
|
#endif
|
2012-12-01 23:04:14 +01:00
|
|
|
nScriptCheckThreads = 3;
|
|
|
|
for (int i=0; i < nScriptCheckThreads-1; i++)
|
2013-03-07 04:31:26 +01:00
|
|
|
threadGroup.create_thread(&ThreadScriptCheck);
|
2013-11-18 01:25:17 +01:00
|
|
|
RegisterNodeSignals(GetNodeSignals());
|
2012-01-05 03:40:52 +01:00
|
|
|
}
|
|
|
|
~TestingSetup()
|
|
|
|
{
|
2013-03-07 04:31:26 +01:00
|
|
|
threadGroup.interrupt_all();
|
|
|
|
threadGroup.join_all();
|
2013-11-18 01:25:17 +01:00
|
|
|
UnregisterNodeSignals(GetNodeSignals());
|
2013-11-29 16:04:29 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2012-01-05 03:40:52 +01:00
|
|
|
delete pwalletMain;
|
|
|
|
pwalletMain = NULL;
|
2013-11-29 16:04:29 +01:00
|
|
|
#endif
|
2012-09-03 15:26:57 +02:00
|
|
|
delete pcoinsTip;
|
|
|
|
delete pcoinsdbview;
|
|
|
|
delete pblocktree;
|
2013-11-29 16:04:29 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2012-05-22 21:51:13 +02:00
|
|
|
bitdb.Flush(true);
|
2013-11-29 16:04:29 +01:00
|
|
|
#endif
|
2012-11-28 21:58:41 +01:00
|
|
|
boost::filesystem::remove_all(pathTemp);
|
2011-10-03 22:14:13 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOST_GLOBAL_FIXTURE(TestingSetup);
|
|
|
|
|
2011-07-31 20:00:38 +02:00
|
|
|
void Shutdown(void* parg)
|
|
|
|
{
|
2011-09-27 20:16:07 +02:00
|
|
|
exit(0);
|
2011-07-31 20:00:38 +02:00
|
|
|
}
|
2012-06-14 09:41:11 +02:00
|
|
|
|
|
|
|
void StartShutdown()
|
|
|
|
{
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2014-03-25 07:53:21 +01:00
|
|
|
bool ShutdownRequested()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|