diff options
author | chriseth <c@ethdev.com> | 2015-08-20 03:59:35 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-08-20 03:59:35 +0800 |
commit | 4c8b2202575b8c169b6dda9f81a0c6f171361df9 (patch) | |
tree | 0ce1f1f8969f35e3239d4f06edc6b5f6561d688a /test/TestUtils.h | |
parent | 3fe8db229cdc4d7ed8576228ae90160927731818 (diff) | |
parent | 936f6bab7c42eda8a765c72335b4da23c46cc3da (diff) | |
download | dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar.gz dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar.bz2 dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar.lz dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar.xz dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.tar.zst dexon-solidity-4c8b2202575b8c169b6dda9f81a0c6f171361df9.zip |
Merge pull request #5 from chriseth/addTests
Add tests from cpp-ethereum.
Diffstat (limited to 'test/TestUtils.h')
-rw-r--r-- | test/TestUtils.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/test/TestUtils.h b/test/TestUtils.h new file mode 100644 index 00000000..a7a0eacf --- /dev/null +++ b/test/TestUtils.h @@ -0,0 +1,83 @@ +/* + This file is part of cpp-ethereum. + + cpp-ethereum is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + cpp-ethereum is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>. + */ +/** @file TestUtils.h + * @author Marek Kotewicz <marek@ethdev.com> + * @date 2015 + */ + +#pragma once + +#include <functional> +#include <string> +#include <json/json.h> +#include <libdevcore/TransientDirectory.h> +#include <libethereum/BlockChain.h> +#include <libethereum/ClientBase.h> + +namespace dev +{ +namespace test +{ + +// should be used for multithread tests +static SharedMutex x_boostTest; +#define ETH_CHECK_EQUAL(x, y) { dev::WriteGuard(x_boostTest); BOOST_CHECK_EQUAL(x, y); } +#define ETH_CHECK_EQUAL_COLLECTIONS(xb, xe, yb, ye) { dev::WriteGuard(x_boostTest); BOOST_CHECK_EQUAL_COLLECTIONS(xb, xe, yb, ye); } +#define ETH_REQUIRE(x) { dev::WriteGuard(x_boostTest); BOOST_REQUIRE(x); } + +struct LoadTestFileFixture +{ + LoadTestFileFixture(); + +protected: + Json::Value m_json; +}; + +struct ParallelFixture +{ + void enumerateThreads(std::function<void()> callback) const; +}; + +struct BlockChainFixture: public LoadTestFileFixture +{ + void enumerateBlockchains(std::function<void(Json::Value const&, dev::eth::BlockChain const&, dev::eth::State state)> callback) const; +}; + +struct ClientBaseFixture: public BlockChainFixture +{ + void enumerateClients(std::function<void(Json::Value const&, dev::eth::ClientBase&)> callback) const; +}; + +// important BOOST TEST do have problems with thread safety!!! +// BOOST_CHECK is not thread safe +// BOOST_MESSAGE is not thread safe +// http://boost.2283326.n4.nabble.com/Is-boost-test-thread-safe-td3471644.html +// http://lists.boost.org/boost-users/2010/03/57691.php +// worth reading +// https://codecrafter.wordpress.com/2012/11/01/c-unit-test-framework-adapter-part-3/ +struct ParallelClientBaseFixture: public ClientBaseFixture, public ParallelFixture +{ + void enumerateClients(std::function<void(Json::Value const&, dev::eth::ClientBase&)> callback) const; +}; + +struct JsonRpcFixture: public ClientBaseFixture +{ + +}; + +} +} |