2017-05-02 21:49:01 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity 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.
|
|
|
|
|
|
|
|
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-05-02 21:49:01 +00:00
|
|
|
/**
|
|
|
|
* @date 2017
|
2018-06-27 17:17:44 +00:00
|
|
|
* Unit tests for libsolc/libsolc.cpp.
|
2017-05-02 21:49:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2019-09-17 14:06:43 +00:00
|
|
|
#include <libsolidity/interface/ReadFile.h>
|
2017-07-18 13:40:24 +00:00
|
|
|
#include <libsolidity/interface/Version.h>
|
2017-09-16 02:50:16 +00:00
|
|
|
#include <libsolc/libsolc.h>
|
2017-05-02 21:49:01 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2017-05-02 21:49:01 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2019-02-05 19:33:53 +00:00
|
|
|
/// TODO: share this between StandardCompiler.cpp
|
|
|
|
/// Helper to match a specific error type and message
|
|
|
|
bool containsError(Json::Value const& _compilerResult, string const& _type, string const& _message)
|
2017-07-19 12:45:00 +00:00
|
|
|
{
|
2019-02-05 19:33:53 +00:00
|
|
|
if (!_compilerResult.isMember("errors"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (auto const& error: _compilerResult["errors"])
|
|
|
|
{
|
|
|
|
BOOST_REQUIRE(error.isObject());
|
|
|
|
BOOST_REQUIRE(error["type"].isString());
|
|
|
|
BOOST_REQUIRE(error["message"].isString());
|
|
|
|
if ((error["type"].asString() == _type) && (error["message"].asString() == _message))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value compile(string const& _input, CStyleReadFileCallback _callback = nullptr)
|
|
|
|
{
|
2019-12-11 23:51:27 +00:00
|
|
|
char* output_ptr = solidity_compile(_input.c_str(), _callback, nullptr);
|
2019-12-11 18:41:05 +00:00
|
|
|
string output(output_ptr);
|
|
|
|
solidity_free(output_ptr);
|
2019-12-04 15:36:56 +00:00
|
|
|
solidity_reset();
|
2017-07-19 12:45:00 +00:00
|
|
|
Json::Value ret;
|
2019-12-23 15:50:30 +00:00
|
|
|
BOOST_REQUIRE(util::jsonParseStrict(output, ret));
|
2017-07-19 12:45:00 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-12-04 23:37:57 +00:00
|
|
|
char* stringToSolidity(string const& _input)
|
|
|
|
{
|
|
|
|
char* ptr = solidity_alloc(_input.length());
|
|
|
|
BOOST_REQUIRE(ptr != nullptr);
|
|
|
|
std::memcpy(ptr, _input.c_str(), _input.length());
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2017-05-02 21:49:01 +00:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2018-06-27 17:17:44 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE(LibSolc)
|
2017-05-02 21:49:01 +00:00
|
|
|
|
2017-07-18 13:40:24 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(read_version)
|
|
|
|
{
|
2018-09-27 00:53:34 +00:00
|
|
|
string output(solidity_version());
|
2017-07-18 13:40:24 +00:00
|
|
|
BOOST_CHECK(output.find(VersionString) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(read_license)
|
|
|
|
{
|
2018-09-27 00:53:34 +00:00
|
|
|
string output(solidity_license());
|
2017-07-18 13:40:24 +00:00
|
|
|
BOOST_CHECK(output.find("GNU GENERAL PUBLIC LICENSE") != string::npos);
|
|
|
|
}
|
|
|
|
|
2017-07-19 12:45:00 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(standard_compilation)
|
|
|
|
{
|
|
|
|
char const* input = R"(
|
|
|
|
{
|
|
|
|
"language": "Solidity",
|
|
|
|
"sources": {
|
|
|
|
"fileA": {
|
|
|
|
"content": "contract A { }"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
Json::Value result = compile(input);
|
2019-12-11 14:00:41 +00:00
|
|
|
BOOST_REQUIRE(result.isObject());
|
2017-07-19 12:45:00 +00:00
|
|
|
|
|
|
|
// Only tests some assumptions. The StandardCompiler is tested properly in another suite.
|
|
|
|
BOOST_CHECK(result.isMember("sources"));
|
2018-12-19 11:22:19 +00:00
|
|
|
// This used to test that it is a member, but we did not actually request any output,
|
|
|
|
// so there should not be a contract member.
|
|
|
|
BOOST_CHECK(!result.isMember("contracts"));
|
2017-07-19 12:45:00 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 19:33:53 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(missing_callback)
|
|
|
|
{
|
|
|
|
char const* input = R"(
|
|
|
|
{
|
|
|
|
"language": "Solidity",
|
|
|
|
"sources": {
|
|
|
|
"fileA": {
|
|
|
|
"content": "import \"missing.sol\"; contract A { }"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
Json::Value result = compile(input);
|
2019-12-11 14:00:41 +00:00
|
|
|
BOOST_REQUIRE(result.isObject());
|
2019-02-05 19:33:53 +00:00
|
|
|
|
|
|
|
BOOST_CHECK(containsError(result, "ParserError", "Source \"missing.sol\" not found: File not supplied initially."));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(with_callback)
|
|
|
|
{
|
|
|
|
char const* input = R"(
|
|
|
|
{
|
|
|
|
"language": "Solidity",
|
|
|
|
"sources": {
|
|
|
|
"fileA": {
|
2019-02-05 20:26:47 +00:00
|
|
|
"content": "import \"found.sol\"; import \"notfound.sol\"; contract A { }"
|
2019-02-05 19:33:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
CStyleReadFileCallback callback{
|
2019-10-29 19:00:58 +00:00
|
|
|
[](void* _context, char const* _kind, char const* _path, char** o_contents, char** o_error)
|
2019-02-05 19:33:53 +00:00
|
|
|
{
|
2019-10-29 19:00:58 +00:00
|
|
|
// Passed in a nullptr in the compile() helper above.
|
2019-12-11 14:00:41 +00:00
|
|
|
BOOST_REQUIRE(_context == nullptr);
|
2019-02-05 19:33:53 +00:00
|
|
|
// Caller frees the pointers.
|
2019-12-11 14:00:41 +00:00
|
|
|
BOOST_REQUIRE(string(_kind) == ReadCallback::kindString(ReadCallback::Kind::ReadFile));
|
2019-02-05 19:33:53 +00:00
|
|
|
if (string(_path) == "found.sol")
|
|
|
|
{
|
|
|
|
static string content{"import \"missing.sol\"; contract B {}"};
|
2019-12-04 23:37:57 +00:00
|
|
|
*o_contents = stringToSolidity(content);
|
2019-02-05 19:33:53 +00:00
|
|
|
*o_error = nullptr;
|
|
|
|
}
|
2019-02-05 20:26:47 +00:00
|
|
|
else if (string(_path) == "missing.sol")
|
2019-02-05 19:33:53 +00:00
|
|
|
{
|
|
|
|
static string errorMsg{"Missing file."};
|
2019-12-04 23:37:57 +00:00
|
|
|
*o_error = stringToSolidity(errorMsg);
|
2019-02-05 19:33:53 +00:00
|
|
|
*o_contents = nullptr;
|
|
|
|
}
|
2019-02-05 20:26:47 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
*o_error = nullptr;
|
|
|
|
*o_contents = nullptr;
|
|
|
|
}
|
2019-02-05 19:33:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Json::Value result = compile(input, callback);
|
2019-12-11 14:00:41 +00:00
|
|
|
BOOST_REQUIRE(result.isObject());
|
2019-02-05 19:33:53 +00:00
|
|
|
|
|
|
|
// This ensures that "found.sol" was properly loaded which triggered the second import statement.
|
|
|
|
BOOST_CHECK(containsError(result, "ParserError", "Source \"missing.sol\" not found: Missing file."));
|
2019-02-05 20:26:47 +00:00
|
|
|
|
|
|
|
// This should be placed due to the missing "notfound.sol" which sets both pointers to null.
|
2019-11-21 17:25:51 +00:00
|
|
|
BOOST_CHECK(containsError(result, "ParserError", "Source \"notfound.sol\" not found: Callback not supported."));
|
2019-02-05 19:33:53 +00:00
|
|
|
}
|
|
|
|
|
2017-05-02 21:49:01 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
} // end namespaces
|