mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #799 from chriseth/sol_gasAndValue
Specify gas and value for function calls and contract creation calls.
This commit is contained in:
commit
25fc28422b
@ -1295,7 +1295,113 @@ BOOST_AUTO_TEST_CASE(contracts_as_addresses)
|
|||||||
}
|
}
|
||||||
)";
|
)";
|
||||||
compileAndRun(sourceCode, 20);
|
compileAndRun(sourceCode, 20);
|
||||||
BOOST_REQUIRE(callContractFunction("getBalance()") == toBigEndian(u256(20 - 5)) + toBigEndian(u256(5)));
|
BOOST_REQUIRE(callContractFunction("getBalance()") == encodeArgs(u256(20 - 5), u256(5)));
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(gas_and_value_basic)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract helper {
|
||||||
|
bool flag;
|
||||||
|
function getBalance() returns (uint256 myBalance) {
|
||||||
|
return this.balance;
|
||||||
|
}
|
||||||
|
function setFlag() { flag = true; }
|
||||||
|
function getFlag() returns (bool fl) { return flag; }
|
||||||
|
}
|
||||||
|
contract test {
|
||||||
|
helper h;
|
||||||
|
function test() { h = new helper(); }
|
||||||
|
function sendAmount(uint amount) returns (uint256 bal) {
|
||||||
|
return h.getBalance.value(amount)();
|
||||||
|
}
|
||||||
|
function outOfGas() returns (bool flagBefore, bool flagAfter, uint myBal) {
|
||||||
|
flagBefore = h.getFlag();
|
||||||
|
h.setFlag.gas(2)(); // should fail due to OOG, return value can be garbage
|
||||||
|
flagAfter = h.getFlag();
|
||||||
|
myBal = this.balance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
compileAndRun(sourceCode, 20);
|
||||||
|
BOOST_REQUIRE(callContractFunction("sendAmount(uint256)", 5) == encodeArgs(5));
|
||||||
|
// call to helper should not succeed but amount should be transferred anyway
|
||||||
|
BOOST_REQUIRE(callContractFunction("outOfGas()", 5) == encodeArgs(false, false, 20 - 5));
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(value_complex)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract helper {
|
||||||
|
function getBalance() returns (uint256 myBalance) {
|
||||||
|
return this.balance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contract test {
|
||||||
|
helper h;
|
||||||
|
function test() { h = new helper(); }
|
||||||
|
function sendAmount(uint amount) returns (uint256 bal) {
|
||||||
|
var x1 = h.getBalance.value(amount);
|
||||||
|
uint someStackElement = 20;
|
||||||
|
var x2 = x1.gas(1000);
|
||||||
|
return x2.value(amount + 3)();// overwrite value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
compileAndRun(sourceCode, 20);
|
||||||
|
BOOST_REQUIRE(callContractFunction("sendAmount(uint256)", 5) == encodeArgs(8));
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(value_insane)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract helper {
|
||||||
|
function getBalance() returns (uint256 myBalance) {
|
||||||
|
return this.balance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contract test {
|
||||||
|
helper h;
|
||||||
|
function test() { h = new helper(); }
|
||||||
|
function sendAmount(uint amount) returns (uint256 bal) {
|
||||||
|
var x1 = h.getBalance.value;
|
||||||
|
uint someStackElement = 20;
|
||||||
|
var x2 = x1(amount).gas;
|
||||||
|
var x3 = x2(1000).value;
|
||||||
|
return x3(amount + 3)();// overwrite value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
compileAndRun(sourceCode, 20);
|
||||||
|
BOOST_REQUIRE(callContractFunction("sendAmount(uint256)", 5) == encodeArgs(8));
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(value_for_constructor)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract Helper {
|
||||||
|
string3 name;
|
||||||
|
bool flag;
|
||||||
|
function Helper(string3 x, bool f) {
|
||||||
|
name = x;
|
||||||
|
flag = f;
|
||||||
|
}
|
||||||
|
function getName() returns (string3 ret) { return name; }
|
||||||
|
function getFlag() returns (bool ret) { return flag; }
|
||||||
|
}
|
||||||
|
contract Main {
|
||||||
|
Helper h;
|
||||||
|
function Main() {
|
||||||
|
h = new Helper.value(10)("abc", true);
|
||||||
|
}
|
||||||
|
function getFlag() returns (bool ret) { return h.getFlag(); }
|
||||||
|
function getName() returns (string3 ret) { return h.getName(); }
|
||||||
|
function getBalances() returns (uint me, uint them) { me = this.balance; them = h.balance;}
|
||||||
|
})";
|
||||||
|
compileAndRun(sourceCode, 22, "Main");
|
||||||
|
BOOST_REQUIRE(callContractFunction("getFlag()") == encodeArgs(true));
|
||||||
|
BOOST_REQUIRE(callContractFunction("getName()") == encodeArgs("abc"));
|
||||||
|
BOOST_REQUIRE(callContractFunction("getBalances()") == encodeArgs(12, 10));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
Loading…
Reference in New Issue
Block a user