diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-25 17:59:46 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-25 17:59:46 +0800 |
commit | 94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9 (patch) | |
tree | 32eeb393f3bc1603e099cd47b854fa2dc6fe5641 /TestUtils.h | |
parent | 0934d0e943765c7c87cf1b3da43aa876f4f1e469 (diff) | |
download | dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.gz dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.bz2 dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.lz dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.xz dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.tar.zst dexon-solidity-94e4f410e9fd9257b7ccddcc8ce3b6d4c68798f9.zip |
ClientBase tests
Diffstat (limited to 'TestUtils.h')
-rw-r--r-- | TestUtils.h | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/TestUtils.h b/TestUtils.h new file mode 100644 index 00000000..fef10e98 --- /dev/null +++ b/TestUtils.h @@ -0,0 +1,82 @@ +/* + 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 <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(); + + static bool m_loaded; + static Json::Value m_json; +}; + +struct ParallelFixture +{ + void enumerateThreads(std::function<void()> callback); +}; + +struct BlockChainFixture: public LoadTestFileFixture +{ + void enumerateBlockchains(std::function<void(Json::Value const&, dev::eth::BlockChain&, dev::eth::State state)> callback); +}; + +struct ClientBaseFixture: public BlockChainFixture +{ + void enumerateClients(std::function<void(Json::Value const&, dev::eth::ClientBase&)> callback); +}; + +// 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); +}; + +struct JsonRpcFixture: public ClientBaseFixture +{ + +}; + +} +} |