mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #7667: Move GetTempPath() to testutil
2fdaa25
Move GetTempPath() to testutil. (Mustafa)393b22e
Add a source file for unit test utils. (Mustafa)
This commit is contained in:
parent
f1e95e3584
commit
8be396a3b8
@ -85,6 +85,8 @@ BITCOIN_TESTS =\
|
|||||||
test/streams_tests.cpp \
|
test/streams_tests.cpp \
|
||||||
test/test_dash.cpp \
|
test/test_dash.cpp \
|
||||||
test/test_dash.h \
|
test/test_dash.h \
|
||||||
|
test/testutil.cpp \
|
||||||
|
test/testutil.h \
|
||||||
test/timedata_tests.cpp \
|
test/timedata_tests.cpp \
|
||||||
test/transaction_tests.cpp \
|
test/transaction_tests.cpp \
|
||||||
test/txvalidationcache_tests.cpp \
|
test/txvalidationcache_tests.cpp \
|
||||||
|
@ -11,9 +11,9 @@
|
|||||||
#include "data/alertTests.raw.h"
|
#include "data/alertTests.raw.h"
|
||||||
#include "serialize.h"
|
#include "serialize.h"
|
||||||
#include "streams.h"
|
#include "streams.h"
|
||||||
#include "util.h"
|
|
||||||
#include "utilstrencodings.h"
|
#include "utilstrencodings.h"
|
||||||
|
|
||||||
|
#include "test/testutil.h"
|
||||||
#include "test/test_dash.h"
|
#include "test/test_dash.h"
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
@ -18,12 +18,13 @@
|
|||||||
#include "txdb.h"
|
#include "txdb.h"
|
||||||
#include "txmempool.h"
|
#include "txmempool.h"
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
#include "util.h"
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "wallet/db.h"
|
#include "wallet/db.h"
|
||||||
#include "wallet/wallet.h"
|
#include "wallet/wallet.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "test/testutil.h"
|
||||||
|
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
|
33
src/test/testutil.cpp
Normal file
33
src/test/testutil.cpp
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#include "testutil.h"
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#include <shlobj.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <boost/filesystem.hpp>
|
||||||
|
|
||||||
|
boost::filesystem::path GetTempPath() {
|
||||||
|
#if BOOST_FILESYSTEM_VERSION == 3
|
||||||
|
return boost::filesystem::temp_directory_path();
|
||||||
|
#else
|
||||||
|
// TODO: remove when we don't support filesystem v2 anymore
|
||||||
|
boost::filesystem::path path;
|
||||||
|
#ifdef WIN32
|
||||||
|
char pszPath[MAX_PATH] = "";
|
||||||
|
|
||||||
|
if (GetTempPathA(MAX_PATH, pszPath))
|
||||||
|
path = boost::filesystem::path(pszPath);
|
||||||
|
#else
|
||||||
|
path = boost::filesystem::path("/tmp");
|
||||||
|
#endif
|
||||||
|
if (path.empty() || !boost::filesystem::is_directory(path)) {
|
||||||
|
LogPrintf("GetTempPath(): failed to find temp path\n");
|
||||||
|
return boost::filesystem::path("");
|
||||||
|
}
|
||||||
|
return path;
|
||||||
|
#endif
|
||||||
|
}
|
15
src/test/testutil.h
Normal file
15
src/test/testutil.h
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Utility functions shared by unit tests
|
||||||
|
*/
|
||||||
|
#ifndef BITCOIN_TEST_TESTUTIL_H
|
||||||
|
#define BITCOIN_TEST_TESTUTIL_H
|
||||||
|
|
||||||
|
#include <boost/filesystem/path.hpp>
|
||||||
|
|
||||||
|
boost::filesystem::path GetTempPath();
|
||||||
|
|
||||||
|
#endif // BITCOIN_TEST_TESTUTIL_H
|
22
src/util.cpp
22
src/util.cpp
@ -841,28 +841,6 @@ boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
boost::filesystem::path GetTempPath() {
|
|
||||||
#if BOOST_FILESYSTEM_VERSION == 3
|
|
||||||
return boost::filesystem::temp_directory_path();
|
|
||||||
#else
|
|
||||||
// TODO: remove when we don't support filesystem v2 anymore
|
|
||||||
boost::filesystem::path path;
|
|
||||||
#ifdef WIN32
|
|
||||||
char pszPath[MAX_PATH] = "";
|
|
||||||
|
|
||||||
if (GetTempPathA(MAX_PATH, pszPath))
|
|
||||||
path = boost::filesystem::path(pszPath);
|
|
||||||
#else
|
|
||||||
path = boost::filesystem::path("/tmp");
|
|
||||||
#endif
|
|
||||||
if (path.empty() || !boost::filesystem::is_directory(path)) {
|
|
||||||
LogPrintf("GetTempPath(): failed to find temp path\n");
|
|
||||||
return boost::filesystem::path("");
|
|
||||||
}
|
|
||||||
return path;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void runCommand(const std::string& strCommand)
|
void runCommand(const std::string& strCommand)
|
||||||
{
|
{
|
||||||
int nErr = ::system(strCommand.c_str());
|
int nErr = ::system(strCommand.c_str());
|
||||||
|
@ -156,7 +156,6 @@ void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map
|
|||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true);
|
boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true);
|
||||||
#endif
|
#endif
|
||||||
boost::filesystem::path GetTempPath();
|
|
||||||
void OpenDebugLog();
|
void OpenDebugLog();
|
||||||
void ShrinkDebugFile();
|
void ShrinkDebugFile();
|
||||||
void runCommand(const std::string& strCommand);
|
void runCommand(const std::string& strCommand);
|
||||||
|
Loading…
Reference in New Issue
Block a user