2014-10-13 13:07:21 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Unit tests for the name and type resolution of the solidity parser.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <libdevcore/Log.h>
|
2015-05-19 17:51:38 +00:00
|
|
|
#include <libdevcore/SHA3.h>
|
2014-10-13 13:07:21 +00:00
|
|
|
#include <libsolidity/Scanner.h>
|
|
|
|
#include <libsolidity/Parser.h>
|
|
|
|
#include <libsolidity/NameAndTypeResolver.h>
|
2014-10-15 12:45:51 +00:00
|
|
|
#include <libsolidity/Exceptions.h>
|
2015-03-25 12:58:15 +00:00
|
|
|
#include <libsolidity/GlobalContext.h>
|
2015-04-20 20:48:53 +00:00
|
|
|
#include "../TestHelper.h"
|
2014-10-13 13:07:21 +00:00
|
|
|
|
2015-01-23 15:37:06 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
2014-10-13 13:07:21 +00:00
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace
|
|
|
|
{
|
2015-01-23 15:37:06 +00:00
|
|
|
|
2015-01-07 01:07:34 +00:00
|
|
|
ASTPointer<SourceUnit> parseTextAndResolveNames(std::string const& _source)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
|
|
|
Parser parser;
|
2014-12-03 06:46:55 +00:00
|
|
|
ASTPointer<SourceUnit> sourceUnit = parser.parse(std::make_shared<Scanner>(CharStream(_source)));
|
2014-12-03 16:45:12 +00:00
|
|
|
NameAndTypeResolver resolver({});
|
|
|
|
resolver.registerDeclarations(*sourceUnit);
|
2015-03-25 12:58:15 +00:00
|
|
|
std::shared_ptr<GlobalContext> globalContext = make_shared<GlobalContext>();
|
|
|
|
|
2014-12-03 06:46:55 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-03-25 12:58:15 +00:00
|
|
|
{
|
|
|
|
globalContext->setCurrentContract(*contract);
|
|
|
|
resolver.updateDeclaration(*globalContext->getCurrentThis());
|
|
|
|
resolver.updateDeclaration(*globalContext->getCurrentSuper());
|
2014-12-03 06:46:55 +00:00
|
|
|
resolver.resolveNamesAndTypes(*contract);
|
2015-03-25 12:58:15 +00:00
|
|
|
}
|
2014-12-16 22:45:24 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-03-25 12:58:15 +00:00
|
|
|
{
|
|
|
|
globalContext->setCurrentContract(*contract);
|
|
|
|
resolver.updateDeclaration(*globalContext->getCurrentThis());
|
2014-12-16 22:45:24 +00:00
|
|
|
resolver.checkTypeRequirements(*contract);
|
2015-03-25 12:58:15 +00:00
|
|
|
}
|
2015-01-07 01:07:34 +00:00
|
|
|
|
|
|
|
return sourceUnit;
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
2015-01-22 16:43:16 +00:00
|
|
|
|
2015-03-25 12:58:15 +00:00
|
|
|
|
2015-01-22 16:43:16 +00:00
|
|
|
static ContractDefinition const* retrieveContract(ASTPointer<SourceUnit> _source, unsigned index)
|
|
|
|
{
|
|
|
|
ContractDefinition* contract;
|
|
|
|
unsigned counter = 0;
|
|
|
|
for (ASTPointer<ASTNode> const& node: _source->getNodes())
|
|
|
|
if ((contract = dynamic_cast<ContractDefinition*>(node.get())) && counter == index)
|
|
|
|
return contract;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-01-29 15:48:39 +00:00
|
|
|
static FunctionTypePointer const& retrieveFunctionBySignature(ContractDefinition const* _contract,
|
|
|
|
std::string const& _signature)
|
2015-01-22 16:43:16 +00:00
|
|
|
{
|
|
|
|
FixedHash<4> hash(dev::sha3(_signature));
|
|
|
|
return _contract->getInterfaceFunctions()[hash];
|
|
|
|
}
|
2015-03-09 12:49:53 +00:00
|
|
|
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(SolidityNameAndTypeResolution)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(smoke_test)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" uint256 stateVariable1;\n"
|
2015-04-15 22:06:57 +00:00
|
|
|
" function fun(uint256 arg1) { uint256 y; }"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(double_stateVariable_declaration)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" uint256 variable;\n"
|
|
|
|
" uint128 variable;\n"
|
|
|
|
"}\n";
|
2014-10-15 12:45:51 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(double_function_declaration)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
2014-10-13 16:22:15 +00:00
|
|
|
" function fun() { var x; }\n"
|
|
|
|
" function fun() { var x; }\n"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2014-10-15 12:45:51 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(double_variable_declaration)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
2014-10-13 16:22:15 +00:00
|
|
|
" function f() { uint256 x; if (true) { uint256 x; } }\n"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2014-10-15 12:45:51 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(name_shadowing)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" uint256 variable;\n"
|
2014-10-13 16:22:15 +00:00
|
|
|
" function f() { uint32 variable ; }"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(name_references)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" uint256 variable;\n"
|
2014-10-13 16:22:15 +00:00
|
|
|
" function f(uint256 arg) returns (uint out) { f(variable); test; out; }"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(undeclared_name)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" uint256 variable;\n"
|
2014-10-13 16:22:15 +00:00
|
|
|
" function f(uint256 arg) { f(notfound); }"
|
2014-10-13 13:07:21 +00:00
|
|
|
"}\n";
|
2014-10-15 12:45:51 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
2014-10-13 13:07:21 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:54:41 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(reference_to_later_declaration)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function g() { f(); }"
|
|
|
|
" function f() { }"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:12:57 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(struct_definition_directly_recursive)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" struct MyStructName {\n"
|
|
|
|
" address addr;\n"
|
|
|
|
" MyStructName x;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), ParserError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(struct_definition_indirectly_recursive)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" struct MyStructName1 {\n"
|
|
|
|
" address addr;\n"
|
|
|
|
" uint256 count;\n"
|
|
|
|
" MyStructName2 x;\n"
|
|
|
|
" }\n"
|
|
|
|
" struct MyStructName2 {\n"
|
|
|
|
" MyStructName1 x;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), ParserError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(struct_definition_recursion_via_mapping)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" struct MyStructName1 {\n"
|
|
|
|
" address addr;\n"
|
|
|
|
" uint256 count;\n"
|
|
|
|
" mapping(uint => MyStructName1) x;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-11-13 00:12:57 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:54:41 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(type_inference_smoke_test)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f(uint256 arg1, uint32 arg2) returns (bool ret) { var x = arg1 + arg2 == 8; ret = x; }"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(type_checking_return)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() returns (bool r) { return 1 >= 2; }"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(type_checking_return_wrong_number)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() returns (bool r1, bool r2) { return 1 >= 2; }"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(type_checking_return_wrong_type)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() returns (uint256 r) { return 1 >= 2; }"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(type_checking_function_call)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() returns (bool r) { return g(12, true) == 3; }\n"
|
|
|
|
" function g(uint256 a, bool b) returns (uint256 r) { }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 14:07:33 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(type_conversion_for_comparison)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() { uint32(2) == int64(2); }"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-11-04 14:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(type_conversion_for_comparison_invalid)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() { int32(2) == uint64(2); }"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2014-10-15 13:54:41 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(type_inference_explicit_conversion)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function f() returns (int256 r) { var x = int256(uint32(2)); return x; }"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-10-15 13:54:41 +00:00
|
|
|
}
|
|
|
|
|
2014-12-10 16:15:10 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-11-21 18:14:56 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(balance)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function fun() {\n"
|
|
|
|
" uint256 x = address(0).balance;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-11-21 18:14:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(balance_invalid)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function fun() {\n"
|
|
|
|
" address(0).balance = 7;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2014-12-01 16:32:10 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(assignment_to_mapping)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" struct str {\n"
|
|
|
|
" mapping(uint=>uint) map;\n"
|
|
|
|
" }\n"
|
|
|
|
" str data;"
|
|
|
|
" function fun() {\n"
|
|
|
|
" var a = data.map;\n"
|
|
|
|
" data.map = a;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(assignment_to_struct)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" struct str {\n"
|
|
|
|
" mapping(uint=>uint) map;\n"
|
|
|
|
" }\n"
|
|
|
|
" str data;"
|
|
|
|
" function fun() {\n"
|
|
|
|
" var a = data;\n"
|
|
|
|
" data = a;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-12-01 16:32:10 +00:00
|
|
|
}
|
|
|
|
|
2014-12-15 15:09:50 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(returns_in_constructor)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function test() returns (uint a) {\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2014-12-16 22:45:24 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(forward_function_reference)
|
|
|
|
{
|
|
|
|
char const* text = "contract First {\n"
|
|
|
|
" function fun() returns (bool ret) {\n"
|
|
|
|
" return Second(1).fun(1, true, 3) > 0;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Second {\n"
|
|
|
|
" function fun(uint a, bool b, uint c) returns (uint ret) {\n"
|
|
|
|
" if (First(2).fun() == true) return 1;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-12-16 22:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 16:04:20 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(comparison_bitop_precedence)
|
|
|
|
{
|
|
|
|
char const* text = "contract First {\n"
|
|
|
|
" function fun() returns (bool ret) {\n"
|
2014-12-18 16:49:11 +00:00
|
|
|
" return 1 & 2 == 8 & 9 && 1 ^ 2 < 4 | 6;\n"
|
2014-12-18 16:04:20 +00:00
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2014-12-18 16:04:20 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 16:50:26 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_no_implementation)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function functionName(bytes32 input) returns (bytes32 out);\n"
|
|
|
|
"}\n";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
2015-03-27 14:15:34 +00:00
|
|
|
std::vector<ASTPointer<ASTNode>> nodes = sourceUnit->getNodes();
|
|
|
|
ContractDefinition* contract = dynamic_cast<ContractDefinition*>(nodes[0].get());
|
2015-03-20 16:50:26 +00:00
|
|
|
BOOST_CHECK(contract);
|
|
|
|
BOOST_CHECK(!contract->isFullyImplemented());
|
|
|
|
BOOST_CHECK(!contract->getDefinedFunctions()[0]->isFullyImplemented());
|
|
|
|
}
|
|
|
|
|
2015-03-27 14:15:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(abstract_contract)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract base { function foo(); }
|
|
|
|
contract derived is base { function foo() {} }
|
|
|
|
)";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
|
|
|
std::vector<ASTPointer<ASTNode>> nodes = sourceUnit->getNodes();
|
|
|
|
ContractDefinition* base = dynamic_cast<ContractDefinition*>(nodes[0].get());
|
|
|
|
ContractDefinition* derived = dynamic_cast<ContractDefinition*>(nodes[1].get());
|
|
|
|
BOOST_CHECK(base);
|
|
|
|
BOOST_CHECK(!base->isFullyImplemented());
|
|
|
|
BOOST_CHECK(!base->getDefinedFunctions()[0]->isFullyImplemented());
|
|
|
|
BOOST_CHECK(derived);
|
|
|
|
BOOST_CHECK(derived->isFullyImplemented());
|
|
|
|
BOOST_CHECK(derived->getDefinedFunctions()[0]->isFullyImplemented());
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(create_abstract_contract)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract base { function foo(); }
|
2015-03-30 15:18:38 +00:00
|
|
|
contract derived {
|
2015-03-27 14:15:34 +00:00
|
|
|
base b;
|
2015-03-30 15:18:38 +00:00
|
|
|
function foo() { b = new base();}
|
|
|
|
}
|
2015-03-27 14:15:34 +00:00
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-04-02 13:10:35 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(abstract_contract_constructor_args_optional)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract BaseBase { function BaseBase(uint j); }
|
|
|
|
contract base is BaseBase { function foo(); }
|
|
|
|
contract derived is base {
|
|
|
|
function derived(uint i) BaseBase(i){}
|
|
|
|
function foo() {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(parseTextAndResolveNames(text), "Parsing and name resolving failed");
|
|
|
|
}
|
|
|
|
|
2015-04-02 14:56:12 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(abstract_contract_constructor_args_not_provided)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract BaseBase { function BaseBase(uint j); }
|
|
|
|
contract base is BaseBase { function foo(); }
|
|
|
|
contract derived is base {
|
|
|
|
function derived(uint i) {}
|
|
|
|
function foo() {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name resolving failed");
|
|
|
|
std::vector<ASTPointer<ASTNode>> nodes = sourceUnit->getNodes();
|
|
|
|
BOOST_CHECK_EQUAL(nodes.size(), 3);
|
|
|
|
ContractDefinition* derived = dynamic_cast<ContractDefinition*>(nodes[2].get());
|
|
|
|
BOOST_CHECK(derived);
|
|
|
|
BOOST_CHECK(!derived->isFullyImplemented());
|
|
|
|
}
|
|
|
|
|
2015-03-27 14:15:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(redeclare_implemented_abstract_function_as_abstract)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract base { function foo(); }
|
|
|
|
contract derived is base { function foo() {} }
|
|
|
|
contract wrong is derived { function foo(); }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-07 01:07:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_canonical_signature)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = "contract Test {\n"
|
|
|
|
" function foo(uint256 arg1, uint64 arg2, bool arg3) returns (uint256 ret) {\n"
|
|
|
|
" ret = arg1 + arg2;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-09 12:49:53 +00:00
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
2015-01-07 01:07:34 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
|
|
|
auto functions = contract->getDefinedFunctions();
|
2015-03-24 10:11:27 +00:00
|
|
|
BOOST_CHECK_EQUAL("foo(uint256,uint64,bool)", functions[0]->externalSignature());
|
2015-01-07 09:45:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_canonical_signature_type_aliases)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = "contract Test {\n"
|
2015-03-09 12:49:53 +00:00
|
|
|
" function boo(uint arg1, bytes32 arg2, address arg3) returns (uint ret) {\n"
|
2015-01-07 09:45:59 +00:00
|
|
|
" ret = 5;\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
2015-03-09 12:49:53 +00:00
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
2015-01-07 09:45:59 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
|
|
|
auto functions = contract->getDefinedFunctions();
|
2015-03-25 12:58:15 +00:00
|
|
|
if (functions.empty())
|
|
|
|
continue;
|
2015-03-24 10:11:27 +00:00
|
|
|
BOOST_CHECK_EQUAL("boo(uint256,bytes32,address)", functions[0]->externalSignature());
|
2015-01-07 01:07:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-23 17:08:45 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_external_types)
|
|
|
|
{
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
2015-03-25 12:58:15 +00:00
|
|
|
contract C {
|
|
|
|
uint a;
|
|
|
|
}
|
2015-03-23 17:08:45 +00:00
|
|
|
contract Test {
|
2015-03-30 12:34:38 +00:00
|
|
|
function boo(uint arg2, bool arg3, bytes8 arg4, bool[2] pairs, uint[] dynamic, C carg, address[] addresses) external returns (uint ret) {
|
2015-03-23 17:08:45 +00:00
|
|
|
ret = 5;
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
|
|
|
auto functions = contract->getDefinedFunctions();
|
2015-03-25 12:58:15 +00:00
|
|
|
if (functions.empty())
|
|
|
|
continue;
|
2015-03-30 12:34:38 +00:00
|
|
|
BOOST_CHECK_EQUAL("boo(uint256,bool,bytes8,bool[2],uint256[],address,address[])", functions[0]->externalSignature());
|
2015-03-23 17:08:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 11:47:21 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_external_type)
|
|
|
|
{
|
|
|
|
// bug #1801
|
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
char const* text = R"(
|
|
|
|
contract Test {
|
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
|
|
|
function boo(ActionChoices enumArg) external returns (uint ret) {
|
2015-05-11 14:24:04 +00:00
|
|
|
ret = 5;
|
2015-05-11 11:47:21 +00:00
|
|
|
}
|
|
|
|
})";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(sourceUnit = parseTextAndResolveNames(text), "Parsing and name Resolving failed");
|
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
|
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
|
|
|
auto functions = contract->getDefinedFunctions();
|
|
|
|
if (functions.empty())
|
|
|
|
continue;
|
|
|
|
BOOST_CHECK_EQUAL("boo(uint8)", functions[0]->externalSignature());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-26 13:11:24 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_external_call_allowed_conversion)
|
2015-03-25 12:58:15 +00:00
|
|
|
{
|
2015-03-26 13:11:24 +00:00
|
|
|
char const* text = R"(
|
|
|
|
contract C {}
|
|
|
|
contract Test {
|
|
|
|
function externalCall() {
|
|
|
|
C arg;
|
|
|
|
this.g(arg);
|
|
|
|
}
|
|
|
|
function g (C c) external {}
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_external_call_not_allowed_conversion)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
2015-03-25 12:58:15 +00:00
|
|
|
contract C {}
|
|
|
|
contract Test {
|
|
|
|
function externalCall() {
|
|
|
|
address arg;
|
|
|
|
this.g(arg);
|
|
|
|
}
|
|
|
|
function g (C c) external {}
|
|
|
|
})";
|
2015-03-26 13:11:24 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_internal_allowed_conversion)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
uint a;
|
|
|
|
}
|
|
|
|
contract Test {
|
|
|
|
C a;
|
|
|
|
function g (C c) {}
|
|
|
|
function internalCall() {
|
|
|
|
g(a);
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
2015-03-25 12:58:15 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 13:11:24 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_internal_not_allowed_conversion)
|
2015-03-25 12:58:15 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
uint a;
|
|
|
|
}
|
|
|
|
contract Test {
|
|
|
|
address a;
|
|
|
|
function g (C c) {}
|
|
|
|
function internalCall() {
|
|
|
|
g(a);
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
2015-03-23 17:08:45 +00:00
|
|
|
|
2015-01-14 09:16:58 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(hash_collision_in_interface)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function gsf() {\n"
|
|
|
|
" }\n"
|
|
|
|
" function tgeo() {\n"
|
|
|
|
" }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-15 19:04:06 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(inheritance_basic)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract base { uint baseMember; struct BaseType { uint element; } }
|
|
|
|
contract derived is base {
|
|
|
|
BaseType data;
|
|
|
|
function f() { baseMember = 7; }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-15 19:04:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(inheritance_diamond_basic)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract root { function rootFunction() {} }
|
|
|
|
contract inter1 is root { function f() {} }
|
|
|
|
contract inter2 is root { function f() {} }
|
2015-01-26 09:20:46 +00:00
|
|
|
contract derived is root, inter2, inter1 {
|
2015-01-15 19:04:06 +00:00
|
|
|
function g() { f(); rootFunction(); }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-15 19:04:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(cyclic_inheritance)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A is B { }
|
|
|
|
contract B is A { }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-28 08:29:32 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(legal_override_direct)
|
2015-01-16 16:50:10 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B { function f() {} }
|
|
|
|
contract C is B { function f(uint i) {} }
|
|
|
|
)";
|
2015-02-28 08:29:32 +00:00
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
2015-01-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
2015-02-28 08:29:32 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(legal_override_indirect)
|
2015-01-16 16:50:10 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function f(uint a) {} }
|
|
|
|
contract B { function f() {} }
|
|
|
|
contract C is A, B { }
|
|
|
|
)";
|
2015-02-28 08:29:32 +00:00
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
|
2015-01-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
2015-02-02 16:24:09 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(illegal_override_visibility)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
2015-02-22 18:37:54 +00:00
|
|
|
contract B { function f() internal {} }
|
2015-02-02 16:24:09 +00:00
|
|
|
contract C is B { function f() public {} }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(illegal_override_constness)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B { function f() constant {} }
|
|
|
|
contract C is B { function f() {} }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-16 16:50:10 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(complex_inheritance)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function f() { uint8 x = C(0).g(); } }
|
|
|
|
contract B { function f() {} function g() returns (uint8 r) {} }
|
|
|
|
contract C is A, B { }
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(constructor_visibility)
|
|
|
|
{
|
|
|
|
// The constructor of a base class should not be visible in the derived class
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function A() { } }
|
|
|
|
contract B is A { function f() { A x = A(0); } }
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(overriding_constructor)
|
|
|
|
{
|
|
|
|
// It is fine to "override" constructor of a base class since it is invisible
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function A() { } }
|
|
|
|
contract B is A { function A() returns (uint8 r) {} }
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-16 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 22:08:48 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(missing_base_constructor_arguments)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function A(uint a) { } }
|
|
|
|
contract B is A { }
|
|
|
|
)";
|
2015-04-02 13:10:35 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-19 22:08:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base_constructor_arguments_override)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function A(uint a) { } }
|
|
|
|
contract B is A { }
|
|
|
|
)";
|
2015-04-02 13:10:35 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-19 22:08:48 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 22:34:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(implicit_derived_to_base_conversion)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { }
|
|
|
|
contract B is A {
|
|
|
|
function f() { A a = B(1); }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-19 22:34:49 +00:00
|
|
|
}
|
2015-01-22 00:02:38 +00:00
|
|
|
|
2015-01-19 22:34:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(implicit_base_to_derived_conversion)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { }
|
|
|
|
contract B is A {
|
|
|
|
function f() { B b = A(1); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-22 00:02:38 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_modifier_invocation)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B {
|
|
|
|
function f() mod1(2, true) mod2("0123456") { }
|
|
|
|
modifier mod1(uint a, bool b) { if (b) _ }
|
2015-03-09 12:49:53 +00:00
|
|
|
modifier mod2(bytes7 a) { while (a == "1234567") _ }
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(invalid_function_modifier_type)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B {
|
|
|
|
function f() mod1(true) { }
|
|
|
|
modifier mod1(uint a) { if (a > 0) _ }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_modifier_invocation_parameters)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B {
|
2015-03-09 12:49:53 +00:00
|
|
|
function f(uint8 a) mod1(a, true) mod2(r) returns (bytes7 r) { }
|
2015-01-22 00:02:38 +00:00
|
|
|
modifier mod1(uint a, bool b) { if (b) _ }
|
2015-03-09 12:49:53 +00:00
|
|
|
modifier mod2(bytes7 a) { while (a == "1234567") _ }
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_modifier_invocation_local_variables)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract B {
|
|
|
|
function f() mod(x) { uint x = 7; }
|
|
|
|
modifier mod(uint a) { if (a > 0) _ }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(legal_modifier_override)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { modifier mod(uint a) {} }
|
|
|
|
contract B is A { modifier mod(uint a) {} }
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-22 00:02:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(illegal_modifier_override)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { modifier mod(uint a) {} }
|
|
|
|
contract B is A { modifier mod(uint8 a) {} }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(modifier_overrides_function)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { modifier mod(uint a) {} }
|
|
|
|
contract B is A { function mod(uint a) {} }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(function_overrides_modifier)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A { function mod(uint a) {} }
|
|
|
|
contract B is A { modifier mod(uint a) {} }
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-23 01:35:27 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(modifier_returns_value)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A {
|
|
|
|
function f(uint a) mod(2) returns (uint r) {}
|
|
|
|
modifier mod(uint a) { return 7; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-22 16:43:16 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(state_variable_accessors)
|
|
|
|
{
|
2015-01-23 15:37:06 +00:00
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function fun() {\n"
|
|
|
|
" uint64(2);\n"
|
|
|
|
" }\n"
|
2015-02-02 16:24:09 +00:00
|
|
|
"uint256 public foo;\n"
|
2015-03-09 12:49:53 +00:00
|
|
|
"mapping(uint=>bytes4) public map;\n"
|
|
|
|
"mapping(uint=>mapping(uint=>bytes4)) public multiple_map;\n"
|
2015-01-23 15:37:06 +00:00
|
|
|
"}\n";
|
2015-03-24 10:11:27 +00:00
|
|
|
|
2015-01-23 15:37:06 +00:00
|
|
|
ASTPointer<SourceUnit> source;
|
|
|
|
ContractDefinition const* contract;
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(source = parseTextAndResolveNames(text), "Parsing and Resolving names failed");
|
2015-01-28 17:06:45 +00:00
|
|
|
BOOST_REQUIRE((contract = retrieveContract(source, 0)) != nullptr);
|
2015-01-29 15:48:39 +00:00
|
|
|
FunctionTypePointer function = retrieveFunctionBySignature(contract, "foo()");
|
2015-01-30 15:06:56 +00:00
|
|
|
BOOST_REQUIRE(function && function->hasDeclaration());
|
2015-01-29 15:39:30 +00:00
|
|
|
auto returnParams = function->getReturnParameterTypeNames();
|
|
|
|
BOOST_CHECK_EQUAL(returnParams.at(0), "uint256");
|
|
|
|
BOOST_CHECK(function->isConstant());
|
2015-02-02 16:52:50 +00:00
|
|
|
|
2015-01-30 15:06:56 +00:00
|
|
|
function = retrieveFunctionBySignature(contract, "map(uint256)");
|
|
|
|
BOOST_REQUIRE(function && function->hasDeclaration());
|
2015-02-02 16:52:50 +00:00
|
|
|
auto params = function->getParameterTypeNames();
|
|
|
|
BOOST_CHECK_EQUAL(params.at(0), "uint256");
|
|
|
|
returnParams = function->getReturnParameterTypeNames();
|
2015-03-09 12:49:53 +00:00
|
|
|
BOOST_CHECK_EQUAL(returnParams.at(0), "bytes4");
|
2015-02-02 16:52:50 +00:00
|
|
|
BOOST_CHECK(function->isConstant());
|
|
|
|
|
|
|
|
function = retrieveFunctionBySignature(contract, "multiple_map(uint256,uint256)");
|
|
|
|
BOOST_REQUIRE(function && function->hasDeclaration());
|
|
|
|
params = function->getParameterTypeNames();
|
|
|
|
BOOST_CHECK_EQUAL(params.at(0), "uint256");
|
|
|
|
BOOST_CHECK_EQUAL(params.at(1), "uint256");
|
2015-01-30 15:06:56 +00:00
|
|
|
returnParams = function->getReturnParameterTypeNames();
|
2015-03-09 12:49:53 +00:00
|
|
|
BOOST_CHECK_EQUAL(returnParams.at(0), "bytes4");
|
2015-01-30 15:06:56 +00:00
|
|
|
BOOST_CHECK(function->isConstant());
|
2015-01-23 15:37:06 +00:00
|
|
|
}
|
|
|
|
|
2015-01-28 15:48:27 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_clash_with_state_variable_accessor)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
|
|
|
" function fun() {\n"
|
|
|
|
" uint64(2);\n"
|
|
|
|
" }\n"
|
|
|
|
"uint256 foo;\n"
|
|
|
|
" function foo() {}\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
|
|
|
}
|
|
|
|
|
2015-01-23 15:37:06 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(private_state_variable)
|
|
|
|
{
|
|
|
|
char const* text = "contract test {\n"
|
2015-01-22 16:43:16 +00:00
|
|
|
" function fun() {\n"
|
|
|
|
" uint64(2);\n"
|
|
|
|
" }\n"
|
2015-02-02 16:24:09 +00:00
|
|
|
"uint256 private foo;\n"
|
2015-02-22 18:37:54 +00:00
|
|
|
"uint256 internal bar;\n"
|
2015-01-22 16:43:16 +00:00
|
|
|
"}\n";
|
|
|
|
|
|
|
|
ASTPointer<SourceUnit> source;
|
|
|
|
ContractDefinition const* contract;
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(source = parseTextAndResolveNames(text), "Parsing and Resolving names failed");
|
2015-01-22 16:43:16 +00:00
|
|
|
BOOST_CHECK((contract = retrieveContract(source, 0)) != nullptr);
|
2015-02-02 16:24:09 +00:00
|
|
|
FunctionTypePointer function;
|
|
|
|
function = retrieveFunctionBySignature(contract, "foo()");
|
2015-01-29 15:39:30 +00:00
|
|
|
BOOST_CHECK_MESSAGE(function == nullptr, "Accessor function of a private variable should not exist");
|
2015-02-02 16:24:09 +00:00
|
|
|
function = retrieveFunctionBySignature(contract, "bar()");
|
2015-02-22 18:37:54 +00:00
|
|
|
BOOST_CHECK_MESSAGE(function == nullptr, "Accessor function of an internal variable should not exist");
|
2015-01-22 16:43:16 +00:00
|
|
|
}
|
|
|
|
|
2015-02-25 15:32:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(base_class_state_variable_accessor)
|
|
|
|
{
|
|
|
|
// test for issue #1126 https://github.com/ethereum/cpp-ethereum/issues/1126
|
|
|
|
char const* text = "contract Parent {\n"
|
|
|
|
" uint256 public m_aMember;\n"
|
|
|
|
"}\n"
|
2015-02-26 11:11:54 +00:00
|
|
|
"contract Child is Parent{\n"
|
|
|
|
" function foo() returns (uint256) { return Parent.m_aMember; }\n"
|
2015-02-25 15:32:04 +00:00
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-25 15:32:04 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 09:08:14 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(base_class_state_variable_internal_member)
|
|
|
|
{
|
|
|
|
char const* text = "contract Parent {\n"
|
|
|
|
" uint256 internal m_aMember;\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Child is Parent{\n"
|
|
|
|
" function foo() returns (uint256) { return Parent.m_aMember; }\n"
|
|
|
|
"}\n";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-27 09:08:14 +00:00
|
|
|
}
|
|
|
|
|
2015-02-28 17:30:33 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(state_variable_member_of_wrong_class1)
|
|
|
|
{
|
|
|
|
char const* text = "contract Parent1 {\n"
|
|
|
|
" uint256 internal m_aMember1;\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Parent2 is Parent1{\n"
|
|
|
|
" uint256 internal m_aMember2;\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Child is Parent2{\n"
|
|
|
|
" function foo() returns (uint256) { return Parent2.m_aMember1; }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(state_variable_member_of_wrong_class2)
|
|
|
|
{
|
|
|
|
char const* text = "contract Parent1 {\n"
|
|
|
|
" uint256 internal m_aMember1;\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Parent2 is Parent1{\n"
|
|
|
|
" uint256 internal m_aMember2;\n"
|
|
|
|
"}\n"
|
|
|
|
"contract Child is Parent2{\n"
|
|
|
|
" function foo() returns (uint256) { return Child.m_aMember2; }\n"
|
|
|
|
" uint256 public m_aMember3;\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-01-29 21:50:20 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(fallback_function)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
uint x;
|
|
|
|
function() { x = 2; }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-29 21:50:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(fallback_function_with_arguments)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
uint x;
|
|
|
|
function(uint a) { x = 2; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(fallback_function_twice)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
uint x;
|
|
|
|
function() { x = 2; }
|
|
|
|
function() { x = 3; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(fallback_function_inheritance)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract A {
|
|
|
|
uint x;
|
|
|
|
function() { x = 1; }
|
|
|
|
}
|
|
|
|
contract C is A {
|
|
|
|
function() { x = 2; }
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-29 21:50:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-29 13:35:28 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(event)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
2015-03-09 12:49:53 +00:00
|
|
|
event e(uint indexed a, bytes3 indexed s, bool indexed b);
|
2015-01-29 13:35:28 +00:00
|
|
|
function f() { e(2, "abc", true); }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(event_too_many_indexed)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
2015-03-09 12:49:53 +00:00
|
|
|
event e(uint indexed a, bytes3 indexed b, bool indexed c, uint indexed d);
|
2015-01-29 13:35:28 +00:00
|
|
|
function f() { e(2, "abc", true); }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(event_call)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
2015-03-09 12:49:53 +00:00
|
|
|
event e(uint a, bytes3 indexed s, bool indexed b);
|
2015-01-29 13:35:28 +00:00
|
|
|
function f() { e(2, "abc", true); }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(event_inheritance)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract base {
|
2015-03-09 12:49:53 +00:00
|
|
|
event e(uint a, bytes3 indexed s, bool indexed b);
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
contract c is base {
|
|
|
|
function f() { e(2, "abc", true); }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-29 13:35:28 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 15:50:33 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(multiple_events_argument_clash)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
event e1(uint a, uint e1, uint e2);
|
|
|
|
event e2(uint a, uint e1, uint e2);
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-01-31 15:50:33 +00:00
|
|
|
}
|
2015-01-29 13:35:28 +00:00
|
|
|
|
2015-02-02 16:24:09 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(access_to_default_function_visibility)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
function f() {}
|
|
|
|
}
|
|
|
|
contract d {
|
|
|
|
function g() { c(0).f(); }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-02 16:24:09 +00:00
|
|
|
}
|
|
|
|
|
2015-02-22 18:37:54 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(access_to_internal_function)
|
2015-02-02 16:24:09 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
2015-02-22 18:37:54 +00:00
|
|
|
function f() internal {}
|
2015-02-02 16:24:09 +00:00
|
|
|
}
|
|
|
|
contract d {
|
|
|
|
function g() { c(0).f(); }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(access_to_default_state_variable_visibility)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint a;
|
|
|
|
}
|
|
|
|
contract d {
|
|
|
|
function g() { c(0).a(); }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-22 18:37:54 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(access_to_internal_state_variable)
|
2015-02-02 16:24:09 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint public a;
|
|
|
|
}
|
|
|
|
contract d {
|
|
|
|
function g() { c(0).a(); }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-02 16:24:09 +00:00
|
|
|
}
|
|
|
|
|
2015-02-04 16:58:20 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(error_count_in_named_args)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function a(uint a, uint b) returns (uint r) { r = a + b; }\n"
|
|
|
|
" function b() returns (uint r) { r = a({a: 1}); }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_in_named_args)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function a(uint a, uint b) returns (uint r) { r = a + b; }\n"
|
|
|
|
" function b() returns (uint r) { r = a({}); }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(duplicate_parameter_names_in_named_args)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function a(uint a, uint b) returns (uint r) { r = a + b; }\n"
|
|
|
|
" function b() returns (uint r) { r = a({a: 1, a: 2}); }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(invalid_parameter_names_in_named_args)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function a(uint a, uint b) returns (uint r) { r = a + b; }\n"
|
|
|
|
" function b() returns (uint r) { r = a({a: 1, c: 2}); }\n"
|
|
|
|
"}\n";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-09 01:06:30 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_input_parameter)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint){
|
|
|
|
}
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-09 01:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_return_parameter)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns(bool){
|
|
|
|
}
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-09 01:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_input_parameter_with_named_one)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint, uint k) returns(uint ret_k){
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-09 01:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_return_parameter_with_named_one)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns(uint ret_k, uint){
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-05 23:44:38 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(disallow_declaration_of_void_type)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract c { function f() { var x = f(); } }";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-06 12:38:10 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(overflow_caused_by_ether_units)
|
|
|
|
{
|
|
|
|
char const* sourceCodeFine = R"(
|
|
|
|
contract c {
|
|
|
|
function c ()
|
|
|
|
{
|
|
|
|
a = 115792089237316195423570985008687907853269984665640564039458;
|
|
|
|
}
|
|
|
|
uint256 a;
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCodeFine),
|
|
|
|
"Parsing and Resolving names failed");
|
2015-02-06 12:38:10 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract c {
|
|
|
|
function c ()
|
|
|
|
{
|
|
|
|
a = 115792089237316195423570985008687907853269984665640564039458 ether;
|
|
|
|
}
|
|
|
|
uint256 a;
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-09 15:15:36 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(exp_operator_negative_exponent)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns(uint d) { return 2 ** -3; }
|
|
|
|
})";
|
2015-02-10 14:43:13 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
2015-02-09 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 14:43:13 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(exp_operator_exponent_too_big)
|
2015-02-09 15:15:36 +00:00
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2015-02-10 14:43:13 +00:00
|
|
|
function f() returns(uint d) { return 2 ** 10000000000; }
|
2015-02-09 15:15:36 +00:00
|
|
|
})";
|
2015-02-10 14:43:13 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
2015-02-09 15:15:36 +00:00
|
|
|
}
|
2015-02-12 14:19:04 +00:00
|
|
|
|
2015-02-11 20:40:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_member_access)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2015-02-11 20:40:47 +00:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
choices = ActionChoices.GoStraight;
|
|
|
|
}
|
|
|
|
ActionChoices choices;
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-11 20:40:47 +00:00
|
|
|
}
|
2015-02-09 15:15:36 +00:00
|
|
|
|
2015-02-12 14:19:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_invalid_member_access)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2015-02-12 14:19:04 +00:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
choices = ActionChoices.RunAroundWavingYourHands;
|
|
|
|
}
|
|
|
|
ActionChoices choices;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-12 16:59:52 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_explicit_conversion_is_okay)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2015-02-12 16:59:52 +00:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
a = uint256(ActionChoices.GoStraight);
|
|
|
|
b = uint64(ActionChoices.Sit);
|
|
|
|
}
|
|
|
|
uint256 a;
|
|
|
|
uint64 b;
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-12 16:59:52 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 22:14:58 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(int_to_enum_explicit_conversion_is_okay)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2015-02-13 22:14:58 +00:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
a = 2;
|
|
|
|
b = ActionChoices(a);
|
|
|
|
}
|
|
|
|
uint256 a;
|
|
|
|
ActionChoices b;
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-13 22:14:58 +00:00
|
|
|
}
|
|
|
|
|
2015-02-12 16:59:52 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_implicit_conversion_is_not_okay)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2015-02-12 16:59:52 +00:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
a = ActionChoices.GoStraight;
|
|
|
|
b = ActionChoices.Sit;
|
|
|
|
}
|
|
|
|
uint256 a;
|
|
|
|
uint64 b;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-13 12:32:18 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(enum_duplicate_values)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract test {
|
2015-02-13 22:47:55 +00:00
|
|
|
enum ActionChoices { GoLeft, GoRight, GoLeft, Sit }
|
2015-02-13 12:32:18 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-02-14 02:06:50 +00:00
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
|
2015-02-13 12:32:18 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 23:43:02 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(private_visibility)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract base {
|
|
|
|
function f() private {}
|
|
|
|
}
|
|
|
|
contract derived is base {
|
|
|
|
function g() { f(); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(private_visibility_via_explicit_base_access)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract base {
|
|
|
|
function f() private {}
|
|
|
|
}
|
|
|
|
contract derived is base {
|
|
|
|
function g() { base.f(); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(external_visibility)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract c {
|
|
|
|
function f() external {}
|
|
|
|
function g() { f(); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(external_base_visibility)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract base {
|
|
|
|
function f() external {}
|
|
|
|
}
|
|
|
|
contract derived is base {
|
|
|
|
function g() { base.f(); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-14 00:22:44 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(external_argument_assign)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract c {
|
|
|
|
function f(uint a) external { a = 1; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(external_argument_increment)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract c {
|
|
|
|
function f(uint a) external { a++; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(external_argument_delete)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract c {
|
|
|
|
function f(uint a) external { delete a; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-19 16:43:53 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_for_bug_override_function_with_bytearray_type)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract Vehicle {
|
|
|
|
function f(bytes _a) external returns (uint256 r) {r = 1;}
|
|
|
|
}
|
|
|
|
contract Bike is Vehicle {
|
|
|
|
function f(bytes _a) external returns (uint256 r) {r = 42;}
|
|
|
|
}
|
|
|
|
)";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode), "Parsing and Name Resolving failed");
|
2015-02-19 16:43:53 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 14:52:30 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(array_with_nonconstant_length)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
function f(uint a) { uint8[a] x; }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-02-27 13:50:06 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(array_copy_with_different_types1)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
bytes a;
|
|
|
|
uint[] b;
|
|
|
|
function f() { b = a; }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(array_copy_with_different_types2)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint32[] a;
|
|
|
|
uint8[] b;
|
|
|
|
function f() { b = a; }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(array_copy_with_different_types_conversion_possible)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint32[] a;
|
|
|
|
uint8[] b;
|
|
|
|
function f() { a = b; }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-27 13:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(array_copy_with_different_types_static_dynamic)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint32[] a;
|
|
|
|
uint8[80] b;
|
|
|
|
function f() { a = b; }
|
|
|
|
})";
|
2015-03-06 11:50:31 +00:00
|
|
|
ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(text), "Parsing and Name Resolving Failed");
|
2015-02-27 13:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(array_copy_with_different_types_dynamic_static)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint[] a;
|
|
|
|
uint[80] b;
|
|
|
|
function f() { b = a; }
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-03-06 12:44:37 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(storage_variable_initialization_with_incorrect_type_int)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint8 a = 1000;
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(storage_variable_initialization_with_incorrect_type_string)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
uint a = "abc";
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-03-09 16:48:33 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_fromElementaryTypeName)
|
|
|
|
{
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int) == *make_shared<IntegerType>(256, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int8) == *make_shared<IntegerType>(8, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int16) == *make_shared<IntegerType>(16, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int24) == *make_shared<IntegerType>(24, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int32) == *make_shared<IntegerType>(32, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int40) == *make_shared<IntegerType>(40, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int48) == *make_shared<IntegerType>(48, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int56) == *make_shared<IntegerType>(56, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int64) == *make_shared<IntegerType>(64, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int72) == *make_shared<IntegerType>(72, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int80) == *make_shared<IntegerType>(80, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int88) == *make_shared<IntegerType>(88, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int96) == *make_shared<IntegerType>(96, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int104) == *make_shared<IntegerType>(104, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int112) == *make_shared<IntegerType>(112, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int120) == *make_shared<IntegerType>(120, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int128) == *make_shared<IntegerType>(128, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int136) == *make_shared<IntegerType>(136, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int144) == *make_shared<IntegerType>(144, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int152) == *make_shared<IntegerType>(152, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int160) == *make_shared<IntegerType>(160, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int168) == *make_shared<IntegerType>(168, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int176) == *make_shared<IntegerType>(176, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int184) == *make_shared<IntegerType>(184, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int192) == *make_shared<IntegerType>(192, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int200) == *make_shared<IntegerType>(200, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int208) == *make_shared<IntegerType>(208, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int216) == *make_shared<IntegerType>(216, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int224) == *make_shared<IntegerType>(224, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int232) == *make_shared<IntegerType>(232, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int240) == *make_shared<IntegerType>(240, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int248) == *make_shared<IntegerType>(248, IntegerType::Modifier::Signed));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Int256) == *make_shared<IntegerType>(256, IntegerType::Modifier::Signed));
|
|
|
|
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt) == *make_shared<IntegerType>(256, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt8) == *make_shared<IntegerType>(8, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt16) == *make_shared<IntegerType>(16, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt24) == *make_shared<IntegerType>(24, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt32) == *make_shared<IntegerType>(32, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt40) == *make_shared<IntegerType>(40, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt48) == *make_shared<IntegerType>(48, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt56) == *make_shared<IntegerType>(56, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt64) == *make_shared<IntegerType>(64, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt72) == *make_shared<IntegerType>(72, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt80) == *make_shared<IntegerType>(80, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt88) == *make_shared<IntegerType>(88, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt96) == *make_shared<IntegerType>(96, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt104) == *make_shared<IntegerType>(104, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt112) == *make_shared<IntegerType>(112, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt120) == *make_shared<IntegerType>(120, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt128) == *make_shared<IntegerType>(128, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt136) == *make_shared<IntegerType>(136, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt144) == *make_shared<IntegerType>(144, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt152) == *make_shared<IntegerType>(152, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt160) == *make_shared<IntegerType>(160, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt168) == *make_shared<IntegerType>(168, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt176) == *make_shared<IntegerType>(176, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt184) == *make_shared<IntegerType>(184, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt192) == *make_shared<IntegerType>(192, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt200) == *make_shared<IntegerType>(200, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt208) == *make_shared<IntegerType>(208, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt216) == *make_shared<IntegerType>(216, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt224) == *make_shared<IntegerType>(224, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt232) == *make_shared<IntegerType>(232, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt240) == *make_shared<IntegerType>(240, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt248) == *make_shared<IntegerType>(248, IntegerType::Modifier::Unsigned));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::UInt256) == *make_shared<IntegerType>(256, IntegerType::Modifier::Unsigned));
|
|
|
|
|
2015-03-12 16:31:39 +00:00
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Byte) == *make_shared<FixedBytesType>(1));
|
2015-03-09 16:48:33 +00:00
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes0) == *make_shared<FixedBytesType>(0));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes1) == *make_shared<FixedBytesType>(1));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes2) == *make_shared<FixedBytesType>(2));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes3) == *make_shared<FixedBytesType>(3));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes4) == *make_shared<FixedBytesType>(4));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes5) == *make_shared<FixedBytesType>(5));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes6) == *make_shared<FixedBytesType>(6));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes7) == *make_shared<FixedBytesType>(7));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes8) == *make_shared<FixedBytesType>(8));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes9) == *make_shared<FixedBytesType>(9));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes10) == *make_shared<FixedBytesType>(10));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes11) == *make_shared<FixedBytesType>(11));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes12) == *make_shared<FixedBytesType>(12));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes13) == *make_shared<FixedBytesType>(13));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes14) == *make_shared<FixedBytesType>(14));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes15) == *make_shared<FixedBytesType>(15));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes16) == *make_shared<FixedBytesType>(16));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes17) == *make_shared<FixedBytesType>(17));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes18) == *make_shared<FixedBytesType>(18));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes19) == *make_shared<FixedBytesType>(19));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes20) == *make_shared<FixedBytesType>(20));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes21) == *make_shared<FixedBytesType>(21));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes22) == *make_shared<FixedBytesType>(22));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes23) == *make_shared<FixedBytesType>(23));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes24) == *make_shared<FixedBytesType>(24));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes25) == *make_shared<FixedBytesType>(25));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes26) == *make_shared<FixedBytesType>(26));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes27) == *make_shared<FixedBytesType>(27));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes28) == *make_shared<FixedBytesType>(28));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes29) == *make_shared<FixedBytesType>(29));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes30) == *make_shared<FixedBytesType>(30));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes31) == *make_shared<FixedBytesType>(31));
|
|
|
|
BOOST_CHECK(*Type::fromElementaryTypeName(Token::Bytes32) == *make_shared<FixedBytesType>(32));
|
|
|
|
}
|
|
|
|
|
2015-03-11 16:41:12 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_byte_is_alias_of_byte1)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract c {
|
|
|
|
bytes arr;
|
|
|
|
function f() { byte a = arr[0];}
|
|
|
|
})";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(parseTextAndResolveNames(text), "Type resolving failed");
|
|
|
|
}
|
|
|
|
|
2015-03-13 17:16:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(assigning_value_to_const_variable)
|
2015-03-03 11:58:01 +00:00
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract Foo {
|
2015-03-12 13:15:04 +00:00
|
|
|
function changeIt() { x = 9; }
|
|
|
|
uint constant x = 56;
|
2015-03-03 11:58:01 +00:00
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-03-13 17:16:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(complex_const_variable)
|
|
|
|
{
|
|
|
|
//for now constant specifier is valid only for uint bytesXX and enums
|
|
|
|
char const* text = R"(
|
|
|
|
contract Foo {
|
|
|
|
mapping(uint => bool) constant mapVar;
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(uninitialized_const_variable)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract Foo {
|
|
|
|
uint constant y;
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(local_const_variable)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract Foo {
|
|
|
|
function localConst() returns (uint ret)
|
|
|
|
{
|
|
|
|
uint constant local = 4;
|
|
|
|
return local;
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), ParserError);
|
|
|
|
}
|
|
|
|
|
2015-03-17 17:34:57 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(bytes0_array)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract Foo {
|
|
|
|
bytes0[] illegalArray;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-03-01 03:33:38 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(overloaded_function_cannot_resolve)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns(uint) { return 1; }
|
|
|
|
function f(uint a) returns(uint) { return a; }
|
|
|
|
function g() returns(uint) { return f(3, 5); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(ambiguous_overloaded_function)
|
|
|
|
{
|
2015-04-15 15:40:50 +00:00
|
|
|
// literal 1 can be both converted to uint and uint8, so the call is ambiguous.
|
2015-03-01 03:33:38 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint8 a) returns(uint) { return a; }
|
|
|
|
function f(uint a) returns(uint) { return 2*a; }
|
|
|
|
function g() returns(uint) { return f(1); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-04-15 15:40:50 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(assignment_of_nonoverloaded_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f(uint a) returns(uint) { return 2 * a; }
|
|
|
|
function g() returns(uint) { var x = f; return x(7); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
ETH_TEST_REQUIRE_NO_THROW(parseTextAndResolveNames(sourceCode), "Type resolving failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(assignment_of_overloaded_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns(uint) { return 1; }
|
|
|
|
function f(uint a) returns(uint) { return 2 * a; }
|
|
|
|
function g() returns(uint) { var x = f; return x(7); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(external_types_clash)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract base {
|
|
|
|
enum a { X }
|
|
|
|
function f(a) { }
|
|
|
|
}
|
|
|
|
contract test is base {
|
|
|
|
function f(uint8 a) { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(override_changes_return_types)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract base {
|
|
|
|
function f(uint a) returns (uint) { }
|
|
|
|
}
|
|
|
|
contract test is base {
|
|
|
|
function f(uint a) returns (uint8) { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(multiple_constructors)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function test(uint a) { }
|
|
|
|
function test() {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(equal_overload)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function test(uint a) returns (uint b) { }
|
|
|
|
function test(uint a) external {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), DeclarationError);
|
|
|
|
}
|
|
|
|
|
2015-04-15 22:06:57 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(uninitialized_var)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
function f() returns (uint) { var x; return 2; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-05-28 14:20:50 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(string)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
string s;
|
|
|
|
function f(string x) external { s = x; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(string_index)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
string s;
|
|
|
|
function f() { var a = s[2]; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(string_length)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
string s;
|
|
|
|
function f() { var a = s.length; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-06-03 14:14:23 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(negative_integers_to_signed_out_of_bound)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
int8 public i = -129;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(negative_integers_to_signed_min)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
int8 public i = -128;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(positive_integers_to_signed_out_of_bound)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
int8 public j = 128;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(positive_integers_to_signed_out_of_bound_max)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
int8 public j = 127;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
|
|
|
}
|
|
|
|
|
2015-06-04 10:42:55 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(negative_integers_to_unsigned)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
uint8 public x = -1;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-06-04 12:09:19 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(positive_integers_to_unsigned_out_of_bound)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
uint8 public x = 700;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
2015-06-05 09:07:50 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(overwrite_memory_location_external)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
function f(uint[] memory a) external {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(overwrite_storage_location_external)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
function f(uint[] storage a) external {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(storage_location_local_variables)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
function f() {
|
|
|
|
uint[] storage x;
|
|
|
|
uint[] memory y;
|
|
|
|
uint[] memory z;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
BOOST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode));
|
|
|
|
}
|
|
|
|
|
2014-10-13 13:07:21 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|