Add tests for constant bytes/strings

This commit is contained in:
Alex Beregszaszi 2017-09-18 22:25:50 +01:00
parent ff275e369c
commit ada68bcee6
2 changed files with 36 additions and 0 deletions

View File

@ -10076,6 +10076,30 @@ BOOST_AUTO_TEST_CASE(function_types_sig)
BOOST_CHECK(callContractFunction("h()") == encodeArgs(asString(FixedHash<4>(dev::keccak256("f()")).asBytes())));
}
BOOST_AUTO_TEST_CASE(constant_string)
{
char const* sourceCode = R"(
contract C {
bytes constant a = "\x03\x01\x02";
bytes constant b = hex"030102";
string constant c = "hello";
function f() returns (bytes) {
return a;
}
function g() returns (bytes) {
return b;
}
function h() returns (bytes) {
return bytes(c);
}
}
)";
compileAndRun(sourceCode, 0, "C");
BOOST_CHECK(callContractFunction("f()") == encodeDyn(string("\x03\x01\x02")));
BOOST_CHECK(callContractFunction("g()") == encodeDyn(string("\x03\x01\x02")));
BOOST_CHECK(callContractFunction("h()") == encodeDyn(string("hello")));
}
BOOST_AUTO_TEST_SUITE_END()
}

View File

@ -2385,6 +2385,18 @@ BOOST_AUTO_TEST_CASE(assignment_to_const_array_vars)
CHECK_ERROR(text, TypeError, "implemented");
}
BOOST_AUTO_TEST_CASE(assignment_to_const_string_bytes)
{
char const* text = R"(
contract C {
bytes constant a = "\x00\x01\x02";
bytes constant b = hex"000102";
string constant c = "hello";
}
)";
CHECK_SUCCESS(text);
}
BOOST_AUTO_TEST_CASE(constant_struct)
{
char const* text = R"(