diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-05 18:59:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 18:59:42 +0800 |
commit | 6ba0c2bba85ba099b10c58d1c7d10d91e1364471 (patch) | |
tree | 213903b1ff0f407e1795037507b9f4c62988cd8f /test | |
parent | 880be2581108f570d0824352ff7221c8cae3a998 (diff) | |
parent | 80cefb9cc810a96fea5817511d3fd908e960bf80 (diff) | |
download | dexon-solidity-6ba0c2bba85ba099b10c58d1c7d10d91e1364471.tar.gz dexon-solidity-6ba0c2bba85ba099b10c58d1c7d10d91e1364471.tar.zst dexon-solidity-6ba0c2bba85ba099b10c58d1c7d10d91e1364471.zip |
Merge pull request #2982 from ethereum/encoderFixes
ABI encoder fixes and test.
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/ABIEncoderTests.cpp | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/test/libsolidity/ABIEncoderTests.cpp b/test/libsolidity/ABIEncoderTests.cpp index 05158601..af51edcc 100644 --- a/test/libsolidity/ABIEncoderTests.cpp +++ b/test/libsolidity/ABIEncoderTests.cpp @@ -462,6 +462,87 @@ BOOST_AUTO_TEST_CASE(structs) ) } +BOOST_AUTO_TEST_CASE(empty_struct) +{ + string sourceCode = R"( + contract C { + struct S { } + S s; + event e(uint16, S, uint16); + function f() returns (uint, S, uint) { + e(7, s, 8); + return (7, s, 8); + } + } + )"; + + NEW_ENCODER( + compileAndRun(sourceCode, 0, "C"); + bytes encoded = encodeArgs(7, 8); + BOOST_CHECK(callContractFunction("f()") == encoded); + REQUIRE_LOG_DATA(encoded); + ) +} + +BOOST_AUTO_TEST_CASE(structs2) +{ + string sourceCode = R"( + contract C { + enum E {A, B, C} + struct T { uint x; E e; uint8 y; } + struct S { C c; T[] t;} + function f() public returns (uint a, S[2] s1, S[] s2, uint b) { + a = 7; + b = 8; + s1[0].c = this; + s1[0].t = new T[](1); + s1[0].t[0].x = 0x11; + s1[0].t[0].e = E.B; + s1[0].t[0].y = 0x12; + s2 = new S[](2); + s2[1].c = C(0x1234); + s2[1].t = new T[](3); + s2[1].t[1].x = 0x21; + s2[1].t[1].e = E.C; + s2[1].t[1].y = 0x22; + } + } + )"; + + NEW_ENCODER( + compileAndRun(sourceCode, 0, "C"); + ABI_CHECK(callContractFunction("f()"), encodeArgs( + 7, 0x80, 0x1e0, 8, + // S[2] s1 + 0x40, + 0x100, + // S s1[0] + u256(u160(m_contractAddress)), + 0x40, + // T s1[0].t + 1, // length + // s1[0].t[0] + 0x11, 1, 0x12, + // S s1[1] + 0, 0x40, + // T s1[1].t + 0, + // S[] s2 (0x1e0) + 2, // length + 0x40, 0xa0, + // S s2[0] + 0, 0x40, 0, + // S s2[1] + 0x1234, 0x40, + // s2[1].t + 3, // length + 0, 0, 0, + 0x21, 2, 0x22, + 0, 0, 0 + )); + ) +} + BOOST_AUTO_TEST_SUITE_END() } |