aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-10-02 18:45:26 +0800
committerchriseth <c@ethdev.com>2015-10-02 18:45:26 +0800
commitcae8db989a28838dc25c262f60b34162e6e3f83d (patch)
tree5312fb4944f243347de5ce8473ae1908721efa4e /test
parent0bedebe9b54e8c445476a5650cd7eacc3d060b02 (diff)
parent53d0684cb4dc7d7b5c9e92bf9e77383e14ecec8c (diff)
downloaddexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar.gz
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar.bz2
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar.lz
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar.xz
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.tar.zst
dexon-solidity-cae8db989a28838dc25c262f60b34162e6e3f83d.zip
Merge pull request #101 from LianaHus/sol_Disallow_access_if_not_initialized
Disallow access to non-initialized references in storage
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp48
1 files changed, 40 insertions, 8 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index cac16682..961c10b4 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -45,7 +45,7 @@ namespace
{
pair<ASTPointer<SourceUnit>, shared_ptr<Exception const>>
-parseAnalyseAndReturnError(string const& _source)
+parseAnalyseAndReturnError(string const& _source, bool _reportWarnings = false)
{
Parser parser;
ASTPointer<SourceUnit> sourceUnit;
@@ -74,7 +74,19 @@ parseAnalyseAndReturnError(string const& _source)
TypeChecker typeChecker;
if (!typeChecker.checkTypeRequirements(*contract))
{
- err = typeChecker.errors().front();
+ for (auto const& firstError: typeChecker.errors())
+ {
+ if (_reportWarnings || !dynamic_pointer_cast<Warning const>(firstError))
+ {
+ err = firstError;
+ break;
+ }
+ else if (_reportWarnings)
+ {
+ err = firstError;
+ break;
+ }
+ }
break;
}
}
@@ -101,9 +113,9 @@ ASTPointer<SourceUnit> parseAndAnalyse(string const& _source)
return sourceAndError.first;
}
-shared_ptr<Exception const> parseAndAnalyseReturnError(std::string const& _source)
+shared_ptr<Exception const> parseAndAnalyseReturnError(std::string const& _source, bool _warning = false)
{
- auto sourceAndError = parseAnalyseAndReturnError(_source);
+ auto sourceAndError = parseAnalyseAndReturnError(_source, _warning);
BOOST_REQUIRE(!!sourceAndError.second);
return sourceAndError.second;
}
@@ -119,8 +131,10 @@ static ContractDefinition const* retrieveContract(ASTPointer<SourceUnit> _source
return nullptr;
}
-static FunctionTypePointer const& retrieveFunctionBySignature(ContractDefinition const* _contract,
- std::string const& _signature)
+static FunctionTypePointer const& retrieveFunctionBySignature(
+ ContractDefinition const* _contract,
+ std::string const& _signature
+)
{
FixedHash<4> hash(dev::sha3(_signature));
return _contract->interfaceFunctions()[hash];
@@ -155,8 +169,8 @@ BOOST_AUTO_TEST_CASE(double_stateVariable_declaration)
BOOST_AUTO_TEST_CASE(double_function_declaration)
{
char const* text = "contract test {\n"
- " function fun() { var x; }\n"
- " function fun() { var x; }\n"
+ " function fun() { uint x; }\n"
+ " function fun() { uint x; }\n"
"}\n";
SOLIDITY_CHECK_ERROR_TYPE(parseAndAnalyseReturnError(text), DeclarationError);
}
@@ -2318,6 +2332,24 @@ BOOST_AUTO_TEST_CASE(literal_string_to_storage_pointer)
SOLIDITY_CHECK_ERROR_TYPE(parseAndAnalyseReturnError(text), TypeError);
}
+BOOST_AUTO_TEST_CASE(non_initialized_references)
+{
+ char const* text = R"(
+ contract c
+ {
+ struct s{
+ uint a;
+ }
+ function f()
+ {
+ s x;
+ x.a = 2;
+ }
+ }
+ )";
+ SOLIDITY_CHECK_ERROR_TYPE(parseAndAnalyseReturnError(text, true), Warning);
+}
+
BOOST_AUTO_TEST_SUITE_END()
}