diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2016-11-14 22:15:09 +0800 |
---|---|---|
committer | Yoichi Hirai <i@yoichihirai.com> | 2016-11-15 03:46:30 +0800 |
commit | e6247195ddc38b437b8b22b4f5fcd80f25a960a7 (patch) | |
tree | 65bcb9042231370df0f4049bc8d5e8b65c6fdeb8 /test | |
parent | 7884a6924380495969a8e7da4e5ae579020434f0 (diff) | |
download | dexon-solidity-e6247195ddc38b437b8b22b4f5fcd80f25a960a7.tar.gz dexon-solidity-e6247195ddc38b437b8b22b4f5fcd80f25a960a7.tar.zst dexon-solidity-e6247195ddc38b437b8b22b4f5fcd80f25a960a7.zip |
test: add a testcase about using an invalid enum value as an external call argument
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 74cf53cf..739a2efd 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -4533,6 +4533,33 @@ BOOST_AUTO_TEST_CASE(invalid_enum_as_external_ret) BOOST_CHECK(callContractFunction("test_assignment()") == encodeArgs()); } +BOOST_AUTO_TEST_CASE(invalid_enum_as_external_arg) +{ + char const* sourceCode = R"( + contract C { + enum X { A, B } + + function tested (X x) returns (uint) { + return 1; + } + + function test() returns (uint) { + X garbled; + + assembly { + garbled := 5 + } + + return this.tested(garbled); + } + } + )"; + compileAndRun(sourceCode, 0, "C"); + // should throw + BOOST_CHECK(callContractFunction("test()") == encodeArgs()); +} + + BOOST_AUTO_TEST_CASE(proper_order_of_overwriting_of_attributes) { // bug #1798 |