aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-20 01:20:49 +0800
committerchriseth <chris@ethereum.org>2018-03-01 21:28:27 +0800
commit754076319659a387a2c447fe69285aad07e0abb6 (patch)
treebb6bd8a442e4118f5321fdecc1c38015c76be76a
parent2c82f748bb91a7c44ae112f5f4fc22bb63d7f861 (diff)
downloaddexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar.gz
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar.bz2
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar.lz
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar.xz
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.tar.zst
dexon-solidity-754076319659a387a2c447fe69285aad07e0abb6.zip
Tests for multi-dimensional arrays.
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index 8c2d853c..1fadcbde 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -979,6 +979,62 @@ BOOST_AUTO_TEST_CASE(functions_with_stucts_of_non_external_types_in_interface_ne
CHECK_ERROR(text, TypeError, "Internal or recursive type is not allowed for public or external functions.");
}
+BOOST_AUTO_TEST_CASE(returning_multi_dimensional_arrays_new_abi)
+{
+ char const* text = R"(
+ pragma experimental ABIEncoderV2;
+
+ contract C {
+ function f() public pure returns (string[][]) {}
+ }
+ )";
+ CHECK_WARNING(text, "Experimental features");
+}
+
+BOOST_AUTO_TEST_CASE(returning_multi_dimensional_arrays)
+{
+ char const* text = R"(
+ contract C {
+ function f() public pure returns (string[][]) {}
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "only supported in the new experimental ABI encoder");
+}
+
+BOOST_AUTO_TEST_CASE(returning_multi_dimensional_static_arrays)
+{
+ char const* text = R"(
+ contract C {
+ function f() public pure returns (uint[][2]) {}
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "only supported in the new experimental ABI encoder");
+}
+
+BOOST_AUTO_TEST_CASE(returning_arrays_in_structs_new_abi)
+{
+ char const* text = R"(
+ pragma experimental ABIEncoderV2;
+
+ contract C {
+ struct S { string[] s; }
+ function f() public pure returns (S) {}
+ }
+ )";
+ CHECK_WARNING(text, "Experimental features");
+}
+
+BOOST_AUTO_TEST_CASE(returning_arrays_in_structs_arrays)
+{
+ char const* text = R"(
+ contract C {
+ struct S { string[] s; }
+ function f() public pure returns (S x) {}
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "only supported in the new experimental ABI encoder");
+}
+
BOOST_AUTO_TEST_CASE(function_external_call_allowed_conversion)
{
char const* text = R"(