Skip to content

Commit 38e79ad

Browse files
authoredFeb 8, 2017
Merge pull request ethereum#1662 from ethereum/ipc-safety-checks
Add safety checks to IPC (tests)
2 parents b66d9c3 + af6ab7f commit 38e79ad

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
 

‎test/RPCSession.cpp

+11-7
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ IPCSocket::IPCSocket(string const& _path): m_path(_path)
7575
BOOST_FAIL("Error connecting to IPC socket: " << _path);
7676

7777
m_fp = fdopen(m_socket, "r");
78+
if (!m_fp)
79+
BOOST_FAIL("Error opening IPC socket: " << _path);
7880
#endif
7981
}
8082

@@ -109,7 +111,9 @@ string IPCSocket::sendRequest(string const& _req)
109111
if (!fSuccess)
110112
BOOST_FAIL("ReadFile from pipe failed");
111113

112-
cerr << "."; //Output for log activity
114+
// This is needed for Appveyor, otherwise it may terminate
115+
// the session due to the inactivity.
116+
cerr << ".";
113117
return returnStr;
114118
#else
115119
send(m_socket, _req.c_str(), _req.length(), 0);
@@ -187,7 +191,7 @@ string RPCSession::eth_getStorageRoot(string const& _address, string const& _blo
187191

188192
void RPCSession::personal_unlockAccount(string const& _address, string const& _password, int _duration)
189193
{
190-
rpcCall("personal_unlockAccount", { quote(_address), quote(_password), to_string(_duration) });
194+
BOOST_REQUIRE(rpcCall("personal_unlockAccount", { quote(_address), quote(_password), to_string(_duration) }) == true);
191195
}
192196

193197
string RPCSession::personal_newAccount(string const& _password)
@@ -231,18 +235,18 @@ void RPCSession::test_setChainParams(vector<string> const& _accounts)
231235

232236
void RPCSession::test_setChainParams(string const& _config)
233237
{
234-
rpcCall("test_setChainParams", { _config });
238+
BOOST_REQUIRE(rpcCall("test_setChainParams", { _config }) == true);
235239
}
236240

237241
void RPCSession::test_rewindToBlock(size_t _blockNr)
238242
{
239-
rpcCall("test_rewindToBlock", { to_string(_blockNr) });
243+
BOOST_REQUIRE(rpcCall("test_rewindToBlock", { to_string(_blockNr) }) == true);
240244
}
241245

242246
void RPCSession::test_mineBlocks(int _number)
243247
{
244248
u256 startBlock = fromBigEndian<u256>(fromHex(rpcCall("eth_blockNumber").asString()));
245-
rpcCall("test_mineBlocks", { to_string(_number) }, true);
249+
BOOST_REQUIRE(rpcCall("test_mineBlocks", { to_string(_number) }, true) == true);
246250

247251
bool mined = false;
248252

@@ -281,7 +285,7 @@ void RPCSession::test_mineBlocks(int _number)
281285

282286
void RPCSession::test_modifyTimestamp(size_t _timestamp)
283287
{
284-
rpcCall("test_modifyTimestamp", { to_string(_timestamp) });
288+
BOOST_REQUIRE(rpcCall("test_modifyTimestamp", { to_string(_timestamp) }) == true);
285289
}
286290

287291
Json::Value RPCSession::rpcCall(string const& _methodName, vector<string> const& _args, bool _canFail)
@@ -302,7 +306,7 @@ Json::Value RPCSession::rpcCall(string const& _methodName, vector<string> const&
302306
//cout << "Reply: " << reply << endl;
303307

304308
Json::Value result;
305-
Json::Reader().parse(reply, result, false);
309+
BOOST_REQUIRE(Json::Reader().parse(reply, result, false));
306310

307311
if (result.isMember("error"))
308312
{

0 commit comments

Comments
 (0)
Please sign in to comment.