2015-02-24 16:08:27 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-02-24 16:08:27 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-02-24 16:08:27 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-02-24 16:08:27 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Lefteris Karapetsas <lefteris@ethdev.com>
|
|
|
|
* @date 2015
|
2015-04-24 15:35:16 +00:00
|
|
|
* Unit tests for Assembly Items from evmasm/Assembly.h
|
2015-02-24 16:08:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2015-04-24 15:35:16 +00:00
|
|
|
#include <libevmasm/SourceLocation.h>
|
|
|
|
#include <libevmasm/Assembly.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/parsing/Scanner.h>
|
|
|
|
#include <libsolidity/parsing/Parser.h>
|
|
|
|
#include <libsolidity/analysis/NameAndTypeResolver.h>
|
|
|
|
#include <libsolidity/codegen/Compiler.h>
|
|
|
|
#include <libsolidity/ast/AST.h>
|
|
|
|
#include <libsolidity/analysis/TypeChecker.h>
|
2015-02-24 16:08:27 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev::eth;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
eth::AssemblyItems compileContract(const string& _sourceCode)
|
|
|
|
{
|
2015-10-14 18:37:41 +00:00
|
|
|
ErrorList errors;
|
|
|
|
Parser parser(errors);
|
2015-02-24 16:08:27 +00:00
|
|
|
ASTPointer<SourceUnit> sourceUnit;
|
|
|
|
BOOST_REQUIRE_NO_THROW(sourceUnit = parser.parse(make_shared<Scanner>(CharStream(_sourceCode))));
|
2015-10-14 18:37:41 +00:00
|
|
|
BOOST_CHECK(!!sourceUnit);
|
|
|
|
|
|
|
|
NameAndTypeResolver resolver({}, errors);
|
|
|
|
solAssert(Error::containsOnlyWarnings(errors), "");
|
2015-02-24 16:08:27 +00:00
|
|
|
resolver.registerDeclarations(*sourceUnit);
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-02-25 11:37:13 +00:00
|
|
|
{
|
2015-02-24 16:08:27 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(resolver.resolveNamesAndTypes(*contract));
|
2015-10-14 18:37:41 +00:00
|
|
|
if (!Error::containsOnlyWarnings(errors))
|
|
|
|
return AssemblyItems();
|
2015-02-25 11:37:13 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
2015-02-25 11:37:13 +00:00
|
|
|
{
|
2015-10-14 18:37:41 +00:00
|
|
|
TypeChecker checker(errors);
|
2015-09-16 14:56:30 +00:00
|
|
|
BOOST_REQUIRE_NO_THROW(checker.checkTypeRequirements(*contract));
|
2015-10-14 18:37:41 +00:00
|
|
|
if (!Error::containsOnlyWarnings(errors))
|
|
|
|
return AssemblyItems();
|
2015-02-25 11:37:13 +00:00
|
|
|
}
|
2015-08-31 16:44:29 +00:00
|
|
|
for (ASTPointer<ASTNode> const& node: sourceUnit->nodes())
|
2015-02-24 16:08:27 +00:00
|
|
|
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
|
|
|
|
{
|
|
|
|
Compiler compiler;
|
2015-09-10 10:01:05 +00:00
|
|
|
compiler.compileContract(*contract, map<ContractDefinition const*, Assembly const*>{});
|
2015-02-24 16:08:27 +00:00
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
return compiler.runtimeAssemblyItems();
|
2015-02-24 16:08:27 +00:00
|
|
|
}
|
|
|
|
BOOST_FAIL("No contract found in source.");
|
|
|
|
return AssemblyItems();
|
|
|
|
}
|
|
|
|
|
2015-03-11 14:59:02 +00:00
|
|
|
void checkAssemblyLocations(AssemblyItems const& _items, vector<SourceLocation> const& _locations)
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
|
|
|
BOOST_CHECK_EQUAL(_items.size(), _locations.size());
|
2015-03-11 14:59:02 +00:00
|
|
|
for (size_t i = 0; i < min(_items.size(), _locations.size()); ++i)
|
2015-02-24 16:08:27 +00:00
|
|
|
{
|
2015-03-11 14:59:02 +00:00
|
|
|
BOOST_CHECK_MESSAGE(
|
2015-09-01 09:19:02 +00:00
|
|
|
_items[i].location() == _locations[i],
|
2015-03-11 14:59:02 +00:00
|
|
|
"Location mismatch for assembly item " + to_string(i) + ". Found: " +
|
2016-11-07 13:12:30 +00:00
|
|
|
(_items[i].location().sourceName ? *_items[i].location().sourceName + ":" : "(null source name)") +
|
2015-09-01 09:19:02 +00:00
|
|
|
to_string(_items[i].location().start) + "-" +
|
|
|
|
to_string(_items[i].location().end) + ", expected: " +
|
2016-11-07 13:12:30 +00:00
|
|
|
(_locations[i].sourceName ? *_locations[i].sourceName + ":" : "(null source name)") +
|
2015-03-11 14:59:02 +00:00
|
|
|
to_string(_locations[i].start) + "-" +
|
|
|
|
to_string(_locations[i].end));
|
2015-02-24 16:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(Assembly)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(location_test)
|
|
|
|
{
|
2015-03-11 14:59:02 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f() returns (uint256 a) {
|
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2016-11-07 13:12:30 +00:00
|
|
|
shared_ptr<string const> n = make_shared<string>("");
|
2015-02-24 16:08:27 +00:00
|
|
|
AssemblyItems items = compileContract(sourceCode);
|
2015-03-11 14:59:02 +00:00
|
|
|
vector<SourceLocation> locations =
|
2016-11-11 14:24:08 +00:00
|
|
|
vector<SourceLocation>(16, SourceLocation(2, 75, n)) +
|
|
|
|
vector<SourceLocation>(27, SourceLocation(20, 72, n)) +
|
2015-03-11 15:31:56 +00:00
|
|
|
vector<SourceLocation>{SourceLocation(42, 51, n), SourceLocation(65, 67, n)} +
|
2016-11-11 14:24:08 +00:00
|
|
|
vector<SourceLocation>(2, SourceLocation(58, 67, n)) +
|
2015-03-11 15:31:56 +00:00
|
|
|
vector<SourceLocation>(3, SourceLocation(20, 72, n));
|
2015-02-24 16:08:27 +00:00
|
|
|
checkAssemblyLocations(items, locations);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|