mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
commit
1705ea1927
@ -363,6 +363,48 @@ BOOST_AUTO_TEST_CASE(small_signed_types)
|
|||||||
testSolidityAgainstCpp(0, small_signed_types_cpp);
|
testSolidityAgainstCpp(0, small_signed_types_cpp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(strings)
|
||||||
|
{
|
||||||
|
char const* sourceCode = "contract test {\n"
|
||||||
|
" function fixed() returns(string32 ret) {\n"
|
||||||
|
" return \"abc\\x00\\xff__\";\n"
|
||||||
|
" }\n"
|
||||||
|
" function pipeThrough(string2 small, bool one) returns(string16 large, bool oneRet) {\n"
|
||||||
|
" oneRet = one;\n"
|
||||||
|
" large = small;\n"
|
||||||
|
" }\n"
|
||||||
|
"}\n";
|
||||||
|
compileAndRun(sourceCode);
|
||||||
|
bytes expectation(32, 0);
|
||||||
|
expectation[0] = byte('a');
|
||||||
|
expectation[1] = byte('b');
|
||||||
|
expectation[2] = byte('c');
|
||||||
|
expectation[3] = byte(0);
|
||||||
|
expectation[4] = byte(0xff);
|
||||||
|
expectation[5] = byte('_');
|
||||||
|
expectation[6] = byte('_');
|
||||||
|
BOOST_CHECK(callContractFunction(0, bytes()) == expectation);
|
||||||
|
expectation = bytes(17, 0);
|
||||||
|
expectation[0] = 0;
|
||||||
|
expectation[1] = 2;
|
||||||
|
expectation[16] = 1;
|
||||||
|
BOOST_CHECK(callContractFunction(1, bytes({0x00, 0x02, 0x01})) == expectation);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(empty_string_on_stack)
|
||||||
|
{
|
||||||
|
char const* sourceCode = "contract test {\n"
|
||||||
|
" function run(string0 empty, uint8 inp) returns(uint16 a, string0 b, string4 c) {\n"
|
||||||
|
" var x = \"abc\";\n"
|
||||||
|
" var y = \"\";\n"
|
||||||
|
" var z = inp;\n"
|
||||||
|
" a = z; b = y; c = x;"
|
||||||
|
" }\n"
|
||||||
|
"}\n";
|
||||||
|
compileAndRun(sourceCode);
|
||||||
|
BOOST_CHECK(callContractFunction(0, bytes({0x02})) == bytes({0x00, 0x02, 'a', 'b', 'c', 0x00}));
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(state_smoke_test)
|
BOOST_AUTO_TEST_CASE(state_smoke_test)
|
||||||
{
|
{
|
||||||
char const* sourceCode = "contract test {\n"
|
char const* sourceCode = "contract test {\n"
|
||||||
@ -941,6 +983,34 @@ BOOST_AUTO_TEST_CASE(inter_contract_calls_with_local_vars)
|
|||||||
BOOST_REQUIRE(callContractFunction(0, a, b) == toBigEndian(a * b + 9));
|
BOOST_REQUIRE(callContractFunction(0, a, b) == toBigEndian(a * b + 9));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(strings_in_calls)
|
||||||
|
{
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract Helper {
|
||||||
|
function invoke(string3 x, bool stop) returns (string4 ret) {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
contract Main {
|
||||||
|
Helper h;
|
||||||
|
function callHelper(string2 x, bool stop) returns (string5 ret) {
|
||||||
|
return h.invoke(x, stop);
|
||||||
|
}
|
||||||
|
function getHelper() returns (address addr) {
|
||||||
|
return address(h);
|
||||||
|
}
|
||||||
|
function setHelper(address addr) {
|
||||||
|
h = Helper(addr);
|
||||||
|
}
|
||||||
|
})";
|
||||||
|
compileAndRun(sourceCode, 0, "Helper");
|
||||||
|
u160 const helperAddress = m_contractAddress;
|
||||||
|
compileAndRun(sourceCode, 0, "Main");
|
||||||
|
BOOST_REQUIRE(callContractFunction(2, helperAddress) == bytes());
|
||||||
|
BOOST_REQUIRE(callContractFunction(1, helperAddress) == toBigEndian(helperAddress));
|
||||||
|
BOOST_CHECK(callContractFunction(0, bytes({0, 'a', 1})) == bytes({0, 'a', 0, 0, 0}));
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -226,6 +226,14 @@ BOOST_AUTO_TEST_CASE(type_inference_explicit_conversion)
|
|||||||
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(large_string_literal)
|
||||||
|
{
|
||||||
|
char const* text = "contract test {\n"
|
||||||
|
" function f() { var x = \"123456789012345678901234567890123\"; }"
|
||||||
|
"}\n";
|
||||||
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(balance)
|
BOOST_AUTO_TEST_CASE(balance)
|
||||||
{
|
{
|
||||||
char const* text = "contract test {\n"
|
char const* text = "contract test {\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user