Skip to content

Commit 026bc82

Browse files
committed
[isoltest] Add support to query balance.
1 parent 8df7ccf commit 026bc82

File tree

5 files changed

+57
-2
lines changed

5 files changed

+57
-2
lines changed

test/libsolidity/SemanticTest.cpp

+18-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@ SemanticTest::SemanticTest(string const& _filename, langutil::EVMVersion _evmVer
6262
{
6363
{"smoke",
6464
{{"test0", simpleSmokeBuiltin},
65-
{"test1", simpleSmokeBuiltin},
66-
{"test2", simpleSmokeBuiltin}}
65+
{"test1", simpleSmokeBuiltin},
66+
{"test2", simpleSmokeBuiltin}}
67+
},
68+
{"contract",
69+
{{"balance", std::make_shared<Builtin>(std::bind(&SemanticTest::builtinContractBalance, this, _1))}}
6770
}
6871
};
6972
m_testHooks =
@@ -474,3 +477,16 @@ std::optional<bytes> SemanticTest::builtinSmokeTest(FunctionCall const& call)
474477
}
475478
return result;
476479
}
480+
481+
std::optional<bytes> SemanticTest::builtinContractBalance(FunctionCall const& call)
482+
{
483+
assert(call.arguments.parameters.size() <= 1);
484+
if (call.arguments.parameters.empty())
485+
return util::toBigEndian(SolidityExecutionFramework::balanceAt(m_contractAddress));
486+
else
487+
{
488+
h160 address{util::fromHex(call.arguments.parameters.at(0).rawString)};
489+
return util::toBigEndian(SolidityExecutionFramework::balanceAt(address));
490+
}
491+
return std::nullopt;
492+
}

test/libsolidity/SemanticTest.h

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ class SemanticTest: public SolidityExecutionFramework, public EVMVersionRestrict
6666
private:
6767
// builtin functions
6868
std::optional<bytes> builtinSmokeTest(FunctionCall const& call);
69+
std::optional<bytes> builtinContractBalance(FunctionCall const& call);
6970

7071
TestResult runTest(std::ostream& _stream, std::string const& _linePrefix, bool _formatted, bool _compileViaYul, bool _compileToEwasm);
7172
SourceMap m_sources;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
contract Other {
2+
constructor() payable {
3+
}
4+
function getAddress() public returns (address) {
5+
return address(this);
6+
}
7+
}
8+
contract ClientReceipt {
9+
Other other;
10+
constructor() payable {
11+
other = new Other{value:500}();
12+
}
13+
function getAddress() public returns (address) {
14+
return other.getAddress();
15+
}
16+
}
17+
// ====
18+
// compileViaYul: also
19+
// ----
20+
// constructor(), 1000 wei ->
21+
// contract.balance -> 500
22+
// getAddress() -> 0xF01F7809444BD9A93A854361C6FAE3F23D9E23DB
23+
// contract.balance(uint256): 0xF01F7809444BD9A93A854361C6FAE3F23D9E23DB -> 500
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
contract ClientReceipt {
2+
constructor() payable {}
3+
}
4+
// ====
5+
// compileViaYul: also
6+
// ----
7+
// constructor(), 1000 wei ->
8+
// contract.balance -> 1000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
contract ClientReceipt {
2+
}
3+
// ====
4+
// compileViaYul: also
5+
// ----
6+
// contract.balance -> 0
7+
// contract.balance: 0x0000000000000000000000000000000000000000 -> 0

0 commit comments

Comments
 (0)