aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-09-27 21:56:17 +0800
committerchriseth <chris@ethereum.org>2017-09-27 21:57:39 +0800
commit2940964044331a87cbc3573fdb80fda8f0b4e976 (patch)
tree4aa44b4447e65f3cdf8f661d65d448078f5546c1 /test/libsolidity
parent3f783c8dad7a143d364f75ddac839aac2eeece1a (diff)
downloaddexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar.gz
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar.bz2
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar.lz
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar.xz
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.tar.zst
dexon-solidity-2940964044331a87cbc3573fdb80fda8f0b4e976.zip
ABI encoder fixes and test.
Diffstat (limited to 'test/libsolidity')
-rw-r--r--test/libsolidity/ABIEncoderTests.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/libsolidity/ABIEncoderTests.cpp b/test/libsolidity/ABIEncoderTests.cpp
index 05158601..9836eb77 100644
--- a/test/libsolidity/ABIEncoderTests.cpp
+++ b/test/libsolidity/ABIEncoderTests.cpp
@@ -462,6 +462,65 @@ BOOST_AUTO_TEST_CASE(structs)
)
}
+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()
}