diff options
author | yann300 <yann.levreau@gmail.com> | 2015-05-19 16:31:32 +0800 |
---|---|---|
committer | yann300 <yann.levreau@gmail.com> | 2015-05-19 16:31:32 +0800 |
commit | 51d94ae1b98e82c411128c9ea38016b8c8076e38 (patch) | |
tree | d23dc645f7a9b402da7dc2e292bd9105873e0780 | |
parent | 38691f743ceb0a571afb0372e40d22d370f3a9a8 (diff) | |
parent | 8512e30f0ac9193c21d1ce70409426a469ff395a (diff) | |
download | dexon-solidity-51d94ae1b98e82c411128c9ea38016b8c8076e38.tar.gz dexon-solidity-51d94ae1b98e82c411128c9ea38016b8c8076e38.tar.zst dexon-solidity-51d94ae1b98e82c411128c9ea38016b8c8076e38.zip |
merge with develop
-rw-r--r-- | libsolidity/SolidityEndToEndTest.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libsolidity/SolidityEndToEndTest.cpp b/libsolidity/SolidityEndToEndTest.cpp index ed5f1acd..6713382f 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -2558,6 +2558,37 @@ BOOST_AUTO_TEST_CASE(generic_call) BOOST_CHECK_EQUAL(m_state.balance(m_contractAddress), 50 - 2); } +BOOST_AUTO_TEST_CASE(generic_callcode) +{ + char const* sourceCode = R"**( + contract receiver { + uint public received; + function receive(uint256 x) { received = x; } + } + contract sender { + uint public received; + function doSend(address rec) returns (uint d) + { + bytes4 signature = bytes4(bytes32(sha3("receive(uint256)"))); + rec.callcode.value(2)(signature, 23); + return receiver(rec).received(); + } + } + )**"; + compileAndRun(sourceCode, 0, "receiver"); + u160 const c_receiverAddress = m_contractAddress; + compileAndRun(sourceCode, 50, "sender"); + u160 const c_senderAddress = m_contractAddress; + BOOST_CHECK(callContractFunction("doSend(address)", c_receiverAddress) == encodeArgs(0)); + BOOST_CHECK(callContractFunction("received()") == encodeArgs(23)); + m_contractAddress = c_receiverAddress; + BOOST_CHECK(callContractFunction("received()") == encodeArgs(0)); + BOOST_CHECK(m_state.storage(c_receiverAddress).empty()); + BOOST_CHECK(!m_state.storage(c_senderAddress).empty()); + BOOST_CHECK_EQUAL(m_state.balance(c_receiverAddress), 0); + BOOST_CHECK_EQUAL(m_state.balance(c_senderAddress), 50); +} + BOOST_AUTO_TEST_CASE(store_bytes) { // this test just checks that the copy loop does not mess up the stack |