Skip to content

Commit ec86e3e

Browse files
committed
[isoltest] Add support for events using call side-effects.
1 parent aec20f0 commit ec86e3e

11 files changed

+210
-9
lines changed

test/ExecutionFramework.cpp

+17
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,25 @@
2727

2828
#include <test/evmc/evmc.hpp>
2929

30+
#include <test/libsolidity/util/SoltestTypes.h>
31+
3032
#include <libsolutil/CommonIO.h>
3133
#include <libsolutil/FunctionSelector.h>
3234

3335
#include <liblangutil/Exceptions.h>
3436

3537
#include <boost/test/framework.hpp>
3638
#include <boost/algorithm/string/replace.hpp>
39+
#include <range/v3/range.hpp>
40+
#include <range/v3/view/transform.hpp>
3741

3842
#include <cstdlib>
3943

4044
using namespace std;
4145
using namespace solidity;
4246
using namespace solidity::util;
4347
using namespace solidity::test;
48+
using namespace solidity::frontend::test;
4449

4550
ExecutionFramework::ExecutionFramework():
4651
ExecutionFramework(solidity::test::CommonOptions::get().evmVersion(), solidity::test::CommonOptions::get().vmPaths)
@@ -282,3 +287,15 @@ bool ExecutionFramework::storageEmpty(h160 const& _addr) const
282287
}
283288
return true;
284289
}
290+
291+
vector<solidity::frontend::test::LogRecord> ExecutionFramework::recordedLogs() const
292+
{
293+
vector<LogRecord> logs;
294+
for (evmc::MockedHost::log_record const& logRecord: m_evmcHost->recorded_logs)
295+
logs.emplace_back(
296+
EVMHost::convertFromEVMC(logRecord.creator),
297+
bytes{logRecord.data.begin(), logRecord.data.end()},
298+
logRecord.topics | ranges::views::transform([](evmc::bytes32 _bytes) { return EVMHost::convertFromEVMC(_bytes); }) | ranges::to<vector>
299+
);
300+
return logs;
301+
}

test/ExecutionFramework.h

+12-5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939

4040
#include <boost/test/unit_test.hpp>
4141

42+
namespace solidity::frontend::test
43+
{
44+
struct LogRecord;
45+
} // namespace solidity::frontend::test
46+
4247
namespace solidity::test
4348
{
4449
using rational = boost::rational<bigint>;
@@ -247,6 +252,12 @@ class ExecutionFramework
247252
return m_sender;
248253
}
249254

255+
size_t numLogs() const;
256+
size_t numLogTopics(size_t _logIdx) const;
257+
util::h256 logTopic(size_t _logIdx, size_t _topicIdx) const;
258+
util::h160 logAddress(size_t _logIdx) const;
259+
bytes logData(size_t _logIdx) const;
260+
250261
private:
251262
template <class CppFunction, class... Args>
252263
auto callCppAndEncodeResult(CppFunction const& _cppFunction, Args const&... _arguments)
@@ -278,11 +289,7 @@ class ExecutionFramework
278289
bool storageEmpty(util::h160 const& _addr) const;
279290
bool addressHasCode(util::h160 const& _addr) const;
280291

281-
size_t numLogs() const;
282-
size_t numLogTopics(size_t _logIdx) const;
283-
util::h256 logTopic(size_t _logIdx, size_t _topicIdx) const;
284-
util::h160 logAddress(size_t _logIdx) const;
285-
bytes logData(size_t _logIdx) const;
292+
std::vector<frontend::test::LogRecord> recordedLogs() const;
286293

287294
langutil::EVMVersion m_evmVersion;
288295
solidity::frontend::RevertStrings m_revertStrings = solidity::frontend::RevertStrings::Default;

test/libsolidity/SemanticTest.cpp

+106-2
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ map<string, Builtin> SemanticTest::makeBuiltins()
178178
};
179179
}
180180

181-
182181
vector<SideEffectHook> SemanticTest::makeSideEffectHooks() const
183182
{
183+
using namespace std::placeholders;
184184
return {
185185
[](FunctionCall const& _call) -> vector<string>
186186
{
@@ -192,7 +192,111 @@ vector<SideEffectHook> SemanticTest::makeSideEffectHooks() const
192192
return result;
193193
}
194194
return {};
195-
}};
195+
},
196+
bind(&SemanticTest::eventSideEffectHook, this, _1)
197+
};
198+
}
199+
200+
string SemanticTest::formatEventParameter(optional<AnnotatedEventSignature> _signature, bool _indexed, size_t _index, bytes const& _data)
201+
{
202+
auto isPrintableASCII = [](bytes const& s)
203+
{
204+
bool zeroes = true;
205+
for (auto c: s)
206+
{
207+
if (static_cast<unsigned>(c) != 0x00)
208+
{
209+
zeroes = false;
210+
if (static_cast<unsigned>(c) <= 0x1f || static_cast<unsigned>(c) >= 0x7f)
211+
return false;
212+
} else
213+
break;
214+
}
215+
return !zeroes;
216+
};
217+
218+
ABIType abiType(ABIType::Type::Hex);
219+
if (isPrintableASCII(_data))
220+
abiType = ABIType(ABIType::Type::String);
221+
if (_signature.has_value())
222+
{
223+
vector<string> const& types = _indexed ? _signature->indexedTypes : _signature->nonIndexedTypes;
224+
if (_index < types.size())
225+
{
226+
if (types.at(_index) == "bool")
227+
abiType = ABIType(ABIType::Type::Boolean);
228+
}
229+
}
230+
return BytesUtils::formatBytes(_data, abiType);
231+
}
232+
233+
vector<string> SemanticTest::eventSideEffectHook(FunctionCall const&) const
234+
{
235+
vector<string> sideEffects;
236+
vector<LogRecord> recordedLogs = ExecutionFramework::recordedLogs();
237+
for (LogRecord const& log: recordedLogs)
238+
{
239+
optional<AnnotatedEventSignature> eventSignature;
240+
if (!log.topics.empty())
241+
eventSignature = matchEvent(log.topics[0]);
242+
stringstream sideEffect;
243+
sideEffect << "emit ";
244+
if (eventSignature.has_value())
245+
sideEffect << eventSignature.value().signature;
246+
else
247+
sideEffect << "<anonymous>";
248+
249+
if (m_contractAddress != log.creator)
250+
sideEffect << " from 0x" << log.creator;
251+
252+
vector<string> eventStrings;
253+
size_t index{0};
254+
for (h256 const& topic: log.topics)
255+
{
256+
if (!eventSignature.has_value() || index != 0)
257+
eventStrings.push_back("#" + formatEventParameter(eventSignature, true, index, topic.asBytes()));
258+
++index;
259+
}
260+
261+
soltestAssert(log.data.size() % 32 == 0, "");
262+
for (size_t index = 0; index < log.data.size() / 32; ++index)
263+
{
264+
auto begin = log.data.begin() + static_cast<long>(index * 32);
265+
bytes const& data = bytes{begin, begin + 32};
266+
eventStrings.emplace_back(formatEventParameter(eventSignature, false, index, data));
267+
}
268+
269+
if (!eventStrings.empty())
270+
sideEffect << ": ";
271+
sideEffect << joinHumanReadable(eventStrings);
272+
sideEffects.emplace_back(sideEffect.str());
273+
}
274+
return sideEffects;
275+
}
276+
277+
optional<AnnotatedEventSignature> SemanticTest::matchEvent(util::h256 const& hash) const
278+
{
279+
optional<AnnotatedEventSignature> result;
280+
for (string& contractName: m_compiler.contractNames())
281+
{
282+
ContractDefinition const& contract = m_compiler.contractDefinition(contractName);
283+
for (EventDefinition const* event: contract.events())
284+
{
285+
FunctionTypePointer eventFunctionType = event->functionType(true);
286+
if (!event->isAnonymous() && keccak256(eventFunctionType->externalSignature()) == hash)
287+
{
288+
AnnotatedEventSignature eventInfo;
289+
eventInfo.signature = eventFunctionType->externalSignature();
290+
for (auto const& param: event->parameters())
291+
if (param->isIndexed())
292+
eventInfo.indexedTypes.emplace_back(param->type()->toString(true));
293+
else
294+
eventInfo.nonIndexedTypes.emplace_back(param->type()->toString(true));
295+
result = eventInfo;
296+
}
297+
}
298+
}
299+
return result;
196300
}
197301

198302
TestCase::TestResult SemanticTest::run(ostream& _stream, string const& _linePrefix, bool _formatted)

test/libsolidity/SemanticTest.h

+10
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
namespace solidity::frontend::test
3131
{
3232

33+
struct AnnotatedEventSignature
34+
{
35+
std::string signature;
36+
std::vector<std::string> indexedTypes;
37+
std::vector<std::string> nonIndexedTypes;
38+
};
39+
3340
/**
3441
* Class that represents a semantic test (or end-to-end test) and allows running it as part of the
3542
* boost unit test environment or isoltest. It reads the Solidity source and an additional comment
@@ -82,6 +89,9 @@ class SemanticTest: public SolidityExecutionFramework, public EVMVersionRestrict
8289
bool checkGasCostExpectation(TestFunctionCall& io_test, bool _compileViaYul) const;
8390
std::map<std::string, Builtin> makeBuiltins();
8491
std::vector<SideEffectHook> makeSideEffectHooks() const;
92+
std::vector<std::string> eventSideEffectHook(FunctionCall const&) const;
93+
std::optional<AnnotatedEventSignature> matchEvent(util::h256 const& hash) const;
94+
static std::string formatEventParameter(std::optional<AnnotatedEventSignature> _signature, bool _indexed, size_t _index, bytes const& _data);
8595
SourceMap m_sources;
8696
std::size_t m_lineOffset;
8797
std::vector<TestFunctionCall> m_tests;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
contract ClientReceipt {
2+
event Deposit(uint256 indexed _from, bytes32 indexed _id, uint _value) anonymous;
3+
function deposit(bytes32 _id) public payable {
4+
emit Deposit(0x2012159ca6b6372f102c535a4814d13a00bfc5568ddfd72151364061b00355d1, _id, msg.value); // 0x2012159c -> 'Deposit(uint256,bytes32,uint256)'
5+
}
6+
}
7+
// ====
8+
// compileViaYul: also
9+
// ----
10+
// deposit(bytes32), 18 wei: 0x1234 ->
11+
// ~ emit <anonymous>: #0x2012159ca6b6372f102c535a4814d13a00bfc5568ddfd72151364061b00355d1, #0x1234, 0x12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
contract C {
2+
string x;
3+
uint[4] y;
4+
event E(string indexed r, uint[4] indexed t);
5+
function deposit() public {
6+
for (uint i = 0; i < 90; i++)
7+
bytes(x).push(0);
8+
for (uint8 i = 0; i < 90; i++)
9+
bytes(x)[i] = bytes1(i);
10+
y[0] = 4;
11+
y[1] = 5;
12+
y[2] = 6;
13+
y[3] = 7;
14+
emit E(x, y);
15+
}
16+
}
17+
// ====
18+
// compileViaYul: also
19+
// ----
20+
// deposit() ->
21+
// ~ emit E(string,uint256[4]): #0xa7fb06bb999a5eb9aff9e0779953f4e1e4ce58044936c2f51c7fb879b85c08bd, #0xe755d8cc1a8cde16a2a31160dcd8017ac32d7e2f13215b29a23cdae40a78aa81
22+
// gas irOptimized: 792278
23+
// gas legacy: 390742
24+
// gas legacyOptimized: 930774

test/libsolidity/semanticTests/externalContracts/deposit_contract.sol

+2
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,14 @@ contract DepositContract is IDepositContract, ERC165 {
197197
// gas legacyOptimized: 122798
198198
// get_deposit_count() -> 0x20, 8, 0
199199
// deposit(bytes,bytes,bytes,bytes32), 1 ether: 0x80, 0xe0, 0x120, 0xaa4a8d0b7d9077248630f1a4701ae9764e42271d7f22b7838778411857fd349e, 0x30, 0x933ad9491b62059dd065b560d256d8957a8c402cc6e8d8ee7290ae11e8f73292, 0x67a8811c397529dac52ae1342ba58c9500000000000000000000000000000000, 0x20, 0x00f50428677c60f997aadeab24aabf7fceaef491c96a52b463ae91f95611cf71, 0x60, 0xa29d01cc8c6296a8150e515b5995390ef841dc18948aa3e79be6d7c1851b4cbb, 0x5d6ff49fa70b9c782399506a22a85193151b9b691245cebafd2063012443c132, 0x4b6c36debaedefb7b2d71b0503ffdc00150aaffd42e63358238ec888901738b8 -> # txhash: 0x7085c586686d666e8bb6e9477a0f0b09565b2060a11f1c4209d3a52295033832 #
200+
// ~ emit DepositEvent(bytes,bytes,bytes,bytes,bytes): 0xa0, 0x0100, 0x0140, 0x0180, 0x0200, 0x30, 0x933ad9491b62059dd065b560d256d8957a8c402cc6e8d8ee7290ae11e8f73292, 0x67a8811c397529dac52ae1342ba58c9500000000000000000000000000000000, 0x20, 0xf50428677c60f997aadeab24aabf7fceaef491c96a52b463ae91f95611cf71, 0x08, 0xca9a3b00000000000000000000000000000000000000000000000000000000, 0x60, 0xa29d01cc8c6296a8150e515b5995390ef841dc18948aa3e79be6d7c1851b4cbb, 0x5d6ff49fa70b9c782399506a22a85193151b9b691245cebafd2063012443c132, 0x4b6c36debaedefb7b2d71b0503ffdc00150aaffd42e63358238ec888901738b8, 0x08, 0x00
200201
// get_deposit_root() -> 0x2089653123d9c721215120b6db6738ba273bbc5228ac093b1f983badcdc8a438
201202
// gas irOptimized: 127486
202203
// gas legacy: 150475
203204
// gas legacyOptimized: 122811
204205
// get_deposit_count() -> 0x20, 8, 0x0100000000000000000000000000000000000000000000000000000000000000
205206
// deposit(bytes,bytes,bytes,bytes32), 32 ether: 0x80, 0xe0, 0x120, 0xdbd986dc85ceb382708cf90a3500f500f0a393c5ece76963ac3ed72eccd2c301, 0x30, 0xb2ce0f79f90e7b3a113ca5783c65756f96c4b4673c2b5c1eb4efc22280259441, 0x06d601211e8866dc5b50dc48a244dd7c00000000000000000000000000000000, 0x20, 0x00344b6c73f71b11c56aba0d01b7d8ad83559f209d0a4101a515f6ad54c89771, 0x60, 0x945caaf82d18e78c033927d51f452ebcd76524497b91d7a11219cb3db6a1d369, 0x7595fc095ce489e46b2ef129591f2f6d079be4faaf345a02c5eb133c072e7c56, 0x0c6c3617eee66b4b878165c502357d49485326bc6b31bc96873f308c8f19c09d -> # txhash: 0x404d8e109822ce448e68f45216c12cb051b784d068fbe98317ab8e50c58304ac #
207+
// ~ emit DepositEvent(bytes,bytes,bytes,bytes,bytes): 0xa0, 0x0100, 0x0140, 0x0180, 0x0200, 0x30, 0xb2ce0f79f90e7b3a113ca5783c65756f96c4b4673c2b5c1eb4efc22280259441, 0x06d601211e8866dc5b50dc48a244dd7c00000000000000000000000000000000, 0x20, 0x344b6c73f71b11c56aba0d01b7d8ad83559f209d0a4101a515f6ad54c89771, 0x08, 0x40597307000000000000000000000000000000000000000000000000000000, 0x60, 0x945caaf82d18e78c033927d51f452ebcd76524497b91d7a11219cb3db6a1d369, 0x7595fc095ce489e46b2ef129591f2f6d079be4faaf345a02c5eb133c072e7c56, 0x0c6c3617eee66b4b878165c502357d49485326bc6b31bc96873f308c8f19c09d, 0x08, 0x0100000000000000000000000000000000000000000000000000000000000000
206208
// get_deposit_root() -> 0x40255975859377d912c53aa853245ebd939bdd2b33a28e084babdcc1ed8238ee
207209
// gas irOptimized: 127486
208210
// gas legacy: 150475

test/libsolidity/semanticTests/structs/event.sol

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ contract C {
1515
// ----
1616
// library: L
1717
// f() ->
18+
// ~ emit Ev((uint256)): 0x01

test/libsolidity/semanticTests/viaYul/erc20.sol

+3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ contract ERC20 {
9898
// ----
9999
// totalSupply() -> 20
100100
// transfer(address,uint256): 2, 5 -> true
101+
// ~ emit Transfer(address,address,uint256): #0x1212121212121212121212121212120000000012, #0x02, 0x05
101102
// decreaseAllowance(address,uint256): 2, 0 -> true
103+
// ~ emit Approval(address,address,uint256): #0x1212121212121212121212121212120000000012, #0x02, 0x00
102104
// decreaseAllowance(address,uint256): 2, 1 -> FAILURE, hex"4e487b71", 0x11
103105
// transfer(address,uint256): 2, 14 -> true
106+
// ~ emit Transfer(address,address,uint256): #0x1212121212121212121212121212120000000012, #0x02, 0x0e
104107
// transfer(address,uint256): 2, 2 -> FAILURE, hex"4e487b71", 0x11

test/libsolidity/util/SoltestTypes.h

+22
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
#include <test/ExecutionFramework.h>
2121

22+
#include <utility>
23+
2224
namespace solidity::frontend::test
2325
{
2426

@@ -311,4 +313,24 @@ struct FunctionCall
311313
using Builtin = std::function<std::optional<bytes>(FunctionCall const&)>;
312314
using SideEffectHook = std::function<std::vector<std::string>(FunctionCall const&)>;
313315

316+
struct LogRecord
317+
{
318+
util::h160 creator;
319+
bytes data;
320+
std::vector<util::h256> topics;
321+
322+
LogRecord(util::h160 _creator, bytes _data, std::vector<util::h256> _topics):
323+
creator(std::move(_creator)), data(std::move(_data)), topics(std::move(_topics)) {}
324+
325+
bool operator==(LogRecord const& other) const noexcept
326+
{
327+
return creator == other.creator && data == other.data && topics == other.topics;
328+
}
329+
330+
bool operator!=(LogRecord const& other) const noexcept
331+
{
332+
return !operator==(other);
333+
}
334+
};
335+
314336
}

test/libsolidity/util/TestFunctionCall.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,6 @@ string TestFunctionCall::format(
196196
}
197197
}
198198

199-
stream << formatGasExpectations(_linePrefix, _renderMode == RenderMode::ExpectedValuesActualGas, _interactivePrint);
200-
201199
vector<string> sideEffects;
202200
if (_renderMode == RenderMode::ExpectedValuesExpectedGas || _renderMode == RenderMode::ExpectedValuesActualGas)
203201
sideEffects = m_call.expectedSideEffects;
@@ -214,6 +212,8 @@ string TestFunctionCall::format(
214212
stream << std::endl;
215213
}
216214
}
215+
216+
stream << formatGasExpectations(_linePrefix, _renderMode == RenderMode::ExpectedValuesActualGas, _interactivePrint);
217217
};
218218

219219
formatOutput(m_call.displayMode == FunctionCall::DisplayMode::SingleLine);

0 commit comments

Comments
 (0)