2014-12-01 16:03:04 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-12-01 16:03:04 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-12-01 16:03:04 +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,
|
2014-12-01 16:03:04 +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/>.
|
2014-12-01 16:03:04 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Lefteris Karapetsas <lefteris@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Unit tests for the solidity compiler JSON Interface output.
|
|
|
|
*/
|
|
|
|
|
2020-01-14 16:48:17 +00:00
|
|
|
#include <test/Common.h>
|
2015-06-18 12:57:43 +00:00
|
|
|
#include <string>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Exceptions.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/Exceptions.h>
|
2020-06-09 15:30:17 +00:00
|
|
|
#include <libsolidity/interface/Natspec.h>
|
2014-12-01 16:03:04 +00:00
|
|
|
|
2020-01-14 14:55:31 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::langutil;
|
2018-11-14 16:11:55 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2014-12-01 16:03:04 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class DocumentationChecker
|
|
|
|
{
|
|
|
|
public:
|
2015-06-17 09:47:29 +00:00
|
|
|
void checkNatspec(
|
|
|
|
std::string const& _code,
|
2018-08-06 12:35:53 +00:00
|
|
|
std::string const& _contractName,
|
2015-06-17 09:47:29 +00:00
|
|
|
std::string const& _expectedDocumentationString,
|
|
|
|
bool _userDocumentation
|
|
|
|
)
|
2014-12-01 16:03:04 +00:00
|
|
|
{
|
2019-03-20 18:07:12 +00:00
|
|
|
m_compilerStack.reset();
|
|
|
|
m_compilerStack.setSources({{"", "pragma solidity >=0.0;\n" + _code}});
|
2020-01-14 16:48:17 +00:00
|
|
|
m_compilerStack.setEVMVersion(solidity::test::CommonOptions::get().evmVersion());
|
2017-09-20 09:52:41 +00:00
|
|
|
BOOST_REQUIRE_MESSAGE(m_compilerStack.parseAndAnalyze(), "Parsing contract failed");
|
2014-12-03 12:50:04 +00:00
|
|
|
|
2016-11-15 17:37:18 +00:00
|
|
|
Json::Value generatedDocumentation;
|
2014-12-03 12:50:04 +00:00
|
|
|
if (_userDocumentation)
|
2018-08-06 12:35:53 +00:00
|
|
|
generatedDocumentation = m_compilerStack.natspecUser(_contractName);
|
2014-12-03 12:50:04 +00:00
|
|
|
else
|
2018-08-06 12:35:53 +00:00
|
|
|
generatedDocumentation = m_compilerStack.natspecDev(_contractName);
|
2014-12-01 16:03:04 +00:00
|
|
|
Json::Value expectedDocumentation;
|
2019-12-23 15:50:30 +00:00
|
|
|
util::jsonParseStrict(_expectedDocumentationString, expectedDocumentation);
|
2020-06-09 15:30:17 +00:00
|
|
|
|
|
|
|
expectedDocumentation["version"] = Json::Value(Natspec::c_natspecVersion);
|
|
|
|
expectedDocumentation["kind"] = Json::Value(_userDocumentation ? "user" : "dev");
|
|
|
|
|
2015-06-17 09:47:29 +00:00
|
|
|
BOOST_CHECK_MESSAGE(
|
|
|
|
expectedDocumentation == generatedDocumentation,
|
2021-09-15 18:06:35 +00:00
|
|
|
"Expected:\n" << util::jsonPrettyPrint(expectedDocumentation) <<
|
|
|
|
"\n but got:\n" << util::jsonPrettyPrint(generatedDocumentation)
|
2015-06-17 09:47:29 +00:00
|
|
|
);
|
2014-12-01 16:03:04 +00:00
|
|
|
}
|
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
void expectNatspecError(std::string const& _code)
|
|
|
|
{
|
2019-03-20 18:07:12 +00:00
|
|
|
m_compilerStack.reset();
|
|
|
|
m_compilerStack.setSources({{"", "pragma solidity >=0.0;\n" + _code}});
|
2020-01-14 16:48:17 +00:00
|
|
|
m_compilerStack.setEVMVersion(solidity::test::CommonOptions::get().evmVersion());
|
2017-07-17 10:43:56 +00:00
|
|
|
BOOST_CHECK(!m_compilerStack.parseAndAnalyze());
|
2015-10-26 14:13:36 +00:00
|
|
|
BOOST_REQUIRE(Error::containsErrorOfType(m_compilerStack.errors(), Error::Type::DocstringParsingError));
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:30:09 +00:00
|
|
|
protected:
|
2014-12-01 16:03:04 +00:00
|
|
|
CompilerStack m_compilerStack;
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(SolidityNatspecJSON, DocumentationChecker)
|
|
|
|
|
2020-04-28 08:34:07 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_empty_natspec_test)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
///
|
|
|
|
///
|
|
|
|
function f() public {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"(
|
|
|
|
{
|
|
|
|
"methods": {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_newline_break)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
///
|
|
|
|
/// @notice hello
|
|
|
|
|
|
|
|
/// @notice world
|
|
|
|
function f() public {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods": {
|
|
|
|
"f()":
|
|
|
|
{
|
|
|
|
"notice": "world"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_multiline_empty_lines)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @notice hello world
|
|
|
|
*/
|
|
|
|
function f() public {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods": {
|
|
|
|
"f()": {
|
|
|
|
"notice": "hello world"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-03 12:50:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_basic_test)
|
2014-12-01 16:03:04 +00:00
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice Multiplies `a` by 7
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a) public returns(uint d) { return a * 7; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-01 16:03:04 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256)\":{ \"notice\": \"Multiplies `a` by 7\"}"
|
2014-12-01 16:03:04 +00:00
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2014-12-01 16:03:04 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 08:42:38 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_and_user_basic_test)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice Multiplies `a` by 7
|
|
|
|
/// @dev Multiplies a number by 7
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a) public returns (uint d) { return a * 7; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-04 08:42:38 +00:00
|
|
|
|
|
|
|
char const* devNatspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256)\":{ \n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7\"\n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" }\n"
|
|
|
|
" }\n"
|
2014-12-04 08:42:38 +00:00
|
|
|
"}}";
|
|
|
|
|
|
|
|
char const* userNatspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256)\":{ \"notice\": \"Multiplies `a` by 7\"}"
|
2014-12-04 08:42:38 +00:00
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", devNatspec, false);
|
|
|
|
checkNatspec(sourceCode, "test", userNatspec, true);
|
2014-12-04 08:42:38 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 12:50:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_multiline_comment)
|
2014-12-02 09:41:18 +00:00
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice Multiplies `a` by 7
|
|
|
|
/// and then adds `b`
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul_and_add(uint a, uint256 b) public returns (uint256 d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return (a * 7) + b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-02 09:41:18 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul_and_add(uint256,uint256)\":{ \"notice\": \"Multiplies `a` by 7 and then adds `b`\"}"
|
2014-12-02 09:41:18 +00:00
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2014-12-02 09:41:18 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 12:50:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_multiple_functions)
|
2014-12-02 09:41:18 +00:00
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice Multiplies `a` by 7 and then adds `b`
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul_and_add(uint a, uint256 b) public returns (uint256 d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return (a * 7) + b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @notice Divides `input` by `div`
|
2018-06-29 14:52:41 +00:00
|
|
|
function divide(uint input, uint div) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return input / div;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @notice Subtracts 3 from `input`
|
2018-06-29 14:52:41 +00:00
|
|
|
function sub(int input) public returns (int d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return input - 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-02 09:41:18 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul_and_add(uint256,uint256)\":{ \"notice\": \"Multiplies `a` by 7 and then adds `b`\"},"
|
|
|
|
" \"divide(uint256,uint256)\":{ \"notice\": \"Divides `input` by `div`\"},"
|
|
|
|
" \"sub(int256)\":{ \"notice\": \"Subtracts 3 from `input`\"}"
|
2014-12-02 09:41:18 +00:00
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2014-12-02 09:41:18 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 12:50:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_empty_contract)
|
2014-12-02 09:41:18 +00:00
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test { }
|
|
|
|
)";
|
2014-12-02 09:41:18 +00:00
|
|
|
|
|
|
|
char const* natspec = "{\"methods\":{} }";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2014-12-02 09:41:18 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 17:12:52 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_and_user_no_doc)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return a * 7;
|
|
|
|
}
|
2018-06-29 14:52:41 +00:00
|
|
|
function sub(int input) public returns (int d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return input - 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-04 17:12:52 +00:00
|
|
|
|
|
|
|
char const* devNatspec = "{\"methods\":{}}";
|
|
|
|
char const* userNatspec = "{\"methods\":{}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", devNatspec, false);
|
|
|
|
checkNatspec(sourceCode, "test", userNatspec, true);
|
2014-12-04 17:12:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(public_state_variable)
|
2020-03-05 20:59:26 +00:00
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2020-03-24 22:44:39 +00:00
|
|
|
/// @notice example of notice
|
|
|
|
/// @dev example of dev
|
|
|
|
/// @return returns state
|
2020-03-05 20:59:26 +00:00
|
|
|
uint public state;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
char const* devDoc = R"R(
|
|
|
|
{
|
|
|
|
"methods" : {},
|
|
|
|
"stateVariables" :
|
|
|
|
{
|
|
|
|
"state" :
|
|
|
|
{
|
|
|
|
"details" : "example of dev",
|
2021-02-09 12:04:10 +00:00
|
|
|
"return" : "returns state",
|
|
|
|
"returns" :
|
|
|
|
{
|
|
|
|
"_0" : "returns state"
|
|
|
|
}
|
2020-03-24 22:44:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)R";
|
|
|
|
checkNatspec(sourceCode, "test", devDoc, false);
|
2020-03-05 20:59:26 +00:00
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
char const* userDoc = R"R(
|
|
|
|
{
|
|
|
|
"methods" :
|
|
|
|
{
|
|
|
|
"state()" :
|
|
|
|
{
|
|
|
|
"notice": "example of notice"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)R";
|
|
|
|
checkNatspec(sourceCode, "test", userDoc, true);
|
2020-03-05 20:59:26 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 15:37:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(public_state_variable_struct)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract Bank {
|
|
|
|
struct Coin {
|
|
|
|
string observeGraphicURL;
|
|
|
|
string reverseGraphicURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @notice Get the n-th coin I own
|
|
|
|
/// @return observeGraphicURL Front pic
|
|
|
|
/// @return reverseGraphicURL Back pic
|
|
|
|
Coin[] public coinStack;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* devDoc = R"R(
|
|
|
|
{
|
|
|
|
"methods" : {},
|
|
|
|
"stateVariables" :
|
|
|
|
{
|
|
|
|
"coinStack" :
|
|
|
|
{
|
|
|
|
"returns" :
|
|
|
|
{
|
|
|
|
"observeGraphicURL" : "Front pic",
|
|
|
|
"reverseGraphicURL" : "Back pic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)R";
|
|
|
|
checkNatspec(sourceCode, "Bank", devDoc, false);
|
|
|
|
|
|
|
|
char const* userDoc = R"R(
|
|
|
|
{
|
|
|
|
"methods" :
|
|
|
|
{
|
|
|
|
"coinStack(uint256)" :
|
|
|
|
{
|
|
|
|
"notice": "Get the n-th coin I own"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)R";
|
|
|
|
checkNatspec(sourceCode, "Bank", userDoc, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(public_state_variable_struct_repeated)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract Bank {
|
|
|
|
struct Coin {
|
|
|
|
string obverseGraphicURL;
|
|
|
|
string reverseGraphicURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @notice Get the n-th coin I own
|
|
|
|
/// @return obverseGraphicURL Front pic
|
|
|
|
/// @return obverseGraphicURL Front pic
|
|
|
|
Coin[] public coinStack;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(private_state_variable)
|
2020-03-05 20:59:26 +00:00
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2020-03-24 22:44:39 +00:00
|
|
|
/// @dev example of dev
|
|
|
|
uint private state;
|
2020-03-05 20:59:26 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
char const* devDoc = R"(
|
|
|
|
{
|
|
|
|
"methods" : {},
|
|
|
|
"stateVariables" :
|
|
|
|
{
|
|
|
|
"state" :
|
|
|
|
{
|
|
|
|
"details" : "example of dev"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
checkNatspec(sourceCode, "test", devDoc, false);
|
2020-03-05 20:59:26 +00:00
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
char const* userDoc = R"(
|
|
|
|
{
|
|
|
|
"methods":{}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
checkNatspec(sourceCode, "test", userDoc, true);
|
2020-03-05 20:59:26 +00:00
|
|
|
}
|
|
|
|
|
2020-05-25 06:43:57 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(event)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract ERC20 {
|
|
|
|
/// @notice This event is emitted when a transfer occurs.
|
|
|
|
/// @param from The source account.
|
|
|
|
/// @param to The destination account.
|
|
|
|
/// @param amount The amount.
|
|
|
|
/// @dev A test case!
|
|
|
|
event Transfer(address indexed from, address indexed to, uint amount);
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* devDoc = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"events":
|
|
|
|
{
|
|
|
|
"Transfer(address,address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "A test case!",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "The amount.", "from": "The source account.", "to": "The destination account."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"methods": {}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
checkNatspec(sourceCode, "ERC20", devDoc, false);
|
|
|
|
|
|
|
|
char const* userDoc = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"events":
|
|
|
|
{
|
|
|
|
"Transfer(address,address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "This event is emitted when a transfer occurs."
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"methods": {}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
checkNatspec(sourceCode, "ERC20", userDoc, true);
|
|
|
|
}
|
|
|
|
|
2014-12-05 11:27:18 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_desc_after_nl)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev
|
|
|
|
/// Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param second Documentation for the second parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-05 11:27:18 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2017-01-26 23:00:05 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
2014-12-05 11:27:18 +00:00
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-05 11:27:18 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 16:19:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_multiple_params)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param second Documentation for the second parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-04 16:19:47 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-04 16:19:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-30 14:04:07 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_multiple_params_mixed_whitespace)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" /// @dev Multiplies a number by 7 and adds second parameter\n"
|
|
|
|
" /// @param a Documentation for the first parameter\n"
|
|
|
|
" /// @param second Documentation for the second parameter\n"
|
2018-06-29 14:52:41 +00:00
|
|
|
" function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }\n"
|
2016-11-30 14:04:07 +00:00
|
|
|
"}\n";
|
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2016-11-30 14:04:07 +00:00
|
|
|
}
|
|
|
|
|
2014-12-04 16:19:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_mutiline_param_description)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-04 16:19:47 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
2014-12-05 01:10:54 +00:00
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-04 16:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_multiple_functions)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param second Documentation for the second parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return a * 7 + second;
|
|
|
|
}
|
|
|
|
/// @dev Divides 2 numbers
|
|
|
|
/// @param input Documentation for the input parameter
|
|
|
|
/// @param div Documentation for the div parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function divide(uint input, uint div) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return input / div;
|
|
|
|
}
|
|
|
|
/// @dev Subtracts 3 from `input`
|
|
|
|
/// @param input Documentation for the input parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function sub(int input) public returns (int d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return input - 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-04 16:19:47 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" },\n"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"divide(uint256,uint256)\":{ \n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"details\": \"Divides 2 numbers\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"input\": \"Documentation for the input parameter\",\n"
|
|
|
|
" \"div\": \"Documentation for the div parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" },\n"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"sub(int256)\":{ \n"
|
2014-12-04 16:19:47 +00:00
|
|
|
" \"details\": \"Subtracts 3 from `input`\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"input\": \"Documentation for the input parameter\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-04 16:19:47 +00:00
|
|
|
}
|
2014-12-01 16:03:04 +00:00
|
|
|
|
2020-05-12 13:30:42 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_no_params)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @return d The result of the multiplication
|
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods": {
|
|
|
|
"mul(uint256,uint256)": {
|
|
|
|
"returns": { "d": "The result of the multiplication"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
2014-12-04 17:12:52 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return d The result of the multiplication
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-04 17:12:52 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
2014-12-05 01:10:54 +00:00
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
2019-10-21 22:05:34 +00:00
|
|
|
" \"d\": \"The result of the multiplication\"\n"
|
|
|
|
" }\n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-04 17:12:52 +00:00
|
|
|
}
|
2019-10-21 22:05:34 +00:00
|
|
|
|
2014-12-05 11:27:18 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_desc_after_nl)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
|
|
|
/// @return
|
2019-10-21 22:05:34 +00:00
|
|
|
/// d The result of the multiplication
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return a * 7 + second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-05 11:27:18 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-05 11:27:18 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
2019-10-21 22:05:34 +00:00
|
|
|
" \"d\": \"The result of the multiplication\"\n"
|
|
|
|
" }\n"
|
2014-12-05 11:27:18 +00:00
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-05 11:27:18 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 14:27:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_desc_multiple_unamed_mixed)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
|
|
|
/// @return The result of the multiplication
|
|
|
|
/// @return _cookies And cookies with nutella
|
|
|
|
function mul(uint a, uint second) public returns (uint, uint _cookies) {
|
|
|
|
uint mul = a * 7;
|
|
|
|
return (mul, second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
|
|
|
" \"returns\": {\n"
|
|
|
|
" \"_0\": \"The result of the multiplication\",\n"
|
|
|
|
" \"_cookies\": \"And cookies with nutella\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_desc_multiple_unamed_mixed_2)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
|
|
|
/// @return _cookies And cookies with nutella
|
|
|
|
/// @return The result of the multiplication
|
|
|
|
/// @return _milk And milk with nutella
|
|
|
|
function mul(uint a, uint second) public returns (uint _cookies, uint, uint _milk) {
|
|
|
|
uint mul = a * 7;
|
2019-10-28 23:09:18 +00:00
|
|
|
uint milk = 4;
|
2019-10-27 14:27:47 +00:00
|
|
|
return (mul, second, milk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
|
|
|
" \"returns\": {\n"
|
|
|
|
" \"_cookies\": \"And cookies with nutella\",\n"
|
|
|
|
" \"_1\": \"The result of the multiplication\",\n"
|
|
|
|
" \"_milk\": \"And milk with nutella\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
2019-10-13 09:52:13 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_desc_multiple_unamed)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
|
|
|
/// @return The result of the multiplication
|
|
|
|
/// @return And cookies with nutella
|
|
|
|
function mul(uint a, uint second) public returns (uint, uint) {
|
2019-10-21 22:05:34 +00:00
|
|
|
uint mul = a * 7;
|
2019-10-13 09:52:13 +00:00
|
|
|
return (mul, second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
|
|
|
" \"_0\": \"The result of the multiplication\",\n"
|
|
|
|
" \"_1\": \"And cookies with nutella\"\n"
|
2019-10-21 22:05:34 +00:00
|
|
|
" }\n"
|
2019-10-13 09:52:13 +00:00
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
2014-12-04 17:12:52 +00:00
|
|
|
|
2019-10-13 01:11:56 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_desc_multiple)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return d The result of the multiplication
|
|
|
|
/// @return f And cookies with nutella
|
2019-10-13 01:11:56 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d, uint f) {
|
2019-10-27 14:27:47 +00:00
|
|
|
uint mul = a * 7;
|
2019-10-13 01:11:56 +00:00
|
|
|
return (mul, second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
2019-10-13 01:11:56 +00:00
|
|
|
" \"d\": \"The result of the multiplication\",\n"
|
|
|
|
" \"f\": \"And cookies with nutella\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
2014-12-04 17:12:52 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_multiline_return)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return d The result of the multiplication
|
2016-12-03 20:52:51 +00:00
|
|
|
/// and cookies with nutella
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return a * 7 + second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-04 17:12:52 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
2014-12-05 01:10:54 +00:00
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
2019-10-21 22:05:34 +00:00
|
|
|
" \"d\": \"The result of the multiplication and cookies with nutella\",\n"
|
|
|
|
" }\n"
|
2014-12-04 17:12:52 +00:00
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-04 17:12:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 13:43:35 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_multiline_comment)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/**
|
|
|
|
* @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
* @param a Documentation for the first parameter starts here.
|
|
|
|
* Since it's a really complicated parameter we need 2 lines
|
|
|
|
* @param second Documentation for the second parameter
|
2019-10-21 22:05:34 +00:00
|
|
|
* @return d The result of the multiplication
|
2016-12-03 20:52:51 +00:00
|
|
|
* and cookies with nutella
|
|
|
|
*/
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return a * 7 + second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
2014-12-18 13:43:35 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
"\"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-18 13:43:35 +00:00
|
|
|
" \"details\": \"Multiplies a number by 7 and adds second parameter\",\n"
|
|
|
|
" \"params\": {\n"
|
|
|
|
" \"a\": \"Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines\",\n"
|
|
|
|
" \"second\": \"Documentation for the second parameter\"\n"
|
|
|
|
" },\n"
|
2019-10-27 14:27:47 +00:00
|
|
|
" \"returns\": {\n"
|
2019-10-21 22:05:34 +00:00
|
|
|
" \"d\": \"The result of the multiplication and cookies with nutella\",\n"
|
|
|
|
" }\n"
|
2014-12-18 13:43:35 +00:00
|
|
|
" }\n"
|
|
|
|
"}}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-18 13:43:35 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 14:27:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_documenting_no_return_paramname)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param second Documentation for the second parameter
|
|
|
|
/// @return
|
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
2014-12-10 12:13:12 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_contract_no_doc)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Mul function
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-10 12:13:12 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
" \"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-10 12:13:12 +00:00
|
|
|
" \"details\": \"Mul function\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-10 12:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_contract_doc)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
/// @author Lefteris
|
|
|
|
/// @title Just a test contract
|
|
|
|
contract test {
|
|
|
|
/// @dev Mul function
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-10 12:13:12 +00:00
|
|
|
|
|
|
|
char const* natspec = "{"
|
|
|
|
" \"author\": \"Lefteris\","
|
|
|
|
" \"title\": \"Just a test contract\","
|
|
|
|
" \"methods\":{"
|
2015-01-13 15:15:32 +00:00
|
|
|
" \"mul(uint256,uint256)\":{ \n"
|
2014-12-10 12:13:12 +00:00
|
|
|
" \"details\": \"Mul function\"\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
"}";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
2014-12-10 12:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_author_at_function)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
/// @author Lefteris
|
|
|
|
/// @title Just a test contract
|
|
|
|
contract test {
|
|
|
|
/// @dev Mul function
|
|
|
|
/// @author John Doe
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-10 12:13:12 +00:00
|
|
|
|
2020-07-21 09:39:25 +00:00
|
|
|
expectNatspecError(sourceCode);
|
2014-12-10 12:13:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-20 12:15:43 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(natspec_notice_without_tag)
|
2015-01-12 14:29:44 +00:00
|
|
|
{
|
2015-06-18 12:57:43 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// I do something awesome
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a) public returns (uint d) { return a * 7; }
|
2015-06-18 12:57:43 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-01-12 14:29:44 +00:00
|
|
|
|
2015-06-18 12:57:43 +00:00
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods" : {
|
|
|
|
"mul(uint256)" : {
|
2015-07-15 14:23:10 +00:00
|
|
|
"notice" : "I do something awesome"
|
2015-06-18 12:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
2015-01-20 12:15:43 +00:00
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2015-01-20 12:15:43 +00:00
|
|
|
}
|
2015-01-12 14:29:44 +00:00
|
|
|
|
2015-01-20 12:15:43 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(natspec_multiline_notice_without_tag)
|
|
|
|
{
|
2015-06-18 12:57:43 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// I do something awesome
|
|
|
|
/// which requires two lines to explain
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a) public returns (uint d) { return a * 7; }
|
2015-06-18 12:57:43 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods" : {
|
|
|
|
"mul(uint256)" : {
|
2015-07-15 14:23:10 +00:00
|
|
|
"notice" : "I do something awesome which requires two lines to explain"
|
2015-06-18 12:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
2015-01-20 12:15:43 +00:00
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2015-01-12 14:29:44 +00:00
|
|
|
}
|
|
|
|
|
2015-09-10 12:26:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(empty_comment)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
//
|
|
|
|
contract test
|
|
|
|
{}
|
|
|
|
)";
|
|
|
|
char const* natspec = R"ABCDEF(
|
|
|
|
{
|
|
|
|
"methods" : {}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
|
2018-08-06 12:35:53 +00:00
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
2015-09-10 12:26:34 +00:00
|
|
|
}
|
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_title_at_function_error)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
/// @author Lefteris
|
|
|
|
/// @title Just a test contract
|
|
|
|
contract test {
|
|
|
|
/// @dev Mul function
|
|
|
|
/// @title I really should not be here
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-10-26 14:13:36 +00:00
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:29:30 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_documenting_nonexistent_param)
|
2015-10-26 14:13:36 +00:00
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param not_existing Documentation for the second parameter
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-10-26 14:13:36 +00:00
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
2017-01-27 11:13:14 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_documenting_no_paramname)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
2018-09-03 13:01:15 +00:00
|
|
|
/// @param
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2017-01-27 11:13:14 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_documenting_no_paramname_end)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
|
|
|
/// @param se
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2017-01-27 11:13:14 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_documenting_no_param_description)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter
|
2018-09-03 13:01:15 +00:00
|
|
|
/// @param second
|
2018-06-29 14:52:41 +00:00
|
|
|
function mul(uint a, uint second) public returns (uint d) { return a * 7 + second; }
|
2017-01-27 11:13:14 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
2018-03-06 18:26:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(user_constructor)
|
|
|
|
{
|
2020-04-30 11:06:05 +00:00
|
|
|
char const* sourceCode = R"(
|
2018-03-06 18:26:49 +00:00
|
|
|
contract test {
|
|
|
|
/// @notice this is a really nice constructor
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint a, uint second) { }
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2020-04-30 11:06:05 +00:00
|
|
|
char const* natspec = R"ABCDEF({
|
|
|
|
"methods": {
|
|
|
|
"constructor" : {
|
|
|
|
"notice": "this is a really nice constructor"
|
|
|
|
}
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_constructor_and_function)
|
|
|
|
{
|
2020-04-30 11:06:05 +00:00
|
|
|
char const* sourceCode = R"(
|
2018-03-06 18:26:49 +00:00
|
|
|
contract test {
|
|
|
|
/// @notice this is a really nice constructor
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint a, uint second) { }
|
2018-03-06 18:26:49 +00:00
|
|
|
/// another multiplier
|
|
|
|
function mul(uint a, uint second) public returns(uint d) { return a * 7 + second; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2020-04-30 11:06:05 +00:00
|
|
|
char const* natspec = R"ABCDEF({
|
2018-03-06 18:26:49 +00:00
|
|
|
"methods" : {
|
|
|
|
"mul(uint256,uint256)" : {
|
|
|
|
"notice" : "another multiplier"
|
|
|
|
},
|
2020-04-30 11:06:05 +00:00
|
|
|
"constructor" : {
|
|
|
|
"notice" : "this is a really nice constructor"
|
|
|
|
}
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_constructor)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @param a the parameter a is really nice and very useful
|
|
|
|
/// @param second the second parameter is not very useful, it just provides additional confusion
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint a, uint second) { }
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods" : {
|
|
|
|
"constructor" : {
|
|
|
|
"params" : {
|
|
|
|
"a" : "the parameter a is really nice and very useful",
|
|
|
|
"second" : "the second parameter is not very useful, it just provides additional confusion"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_constructor_return)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @param a the parameter a is really nice and very useful
|
|
|
|
/// @param second the second parameter is not very useful, it just provides additional confusion
|
|
|
|
/// @return return should not work within constructors
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint a, uint second) { }
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
expectNatspecError(sourceCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_constructor_and_function)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @param a the parameter a is really nice and very useful
|
|
|
|
/// @param second the second parameter is not very useful, it just provides additional confusion
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor(uint a, uint second) { }
|
2018-03-06 18:26:49 +00:00
|
|
|
/// @dev Multiplies a number by 7 and adds second parameter
|
|
|
|
/// @param a Documentation for the first parameter starts here.
|
|
|
|
/// Since it's a really complicated parameter we need 2 lines
|
|
|
|
/// @param second Documentation for the second parameter
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return d The result of the multiplication
|
2018-03-06 18:26:49 +00:00
|
|
|
/// and cookies with nutella
|
|
|
|
function mul(uint a, uint second) public returns(uint d) {
|
|
|
|
return a * 7 + second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods" : {
|
|
|
|
"mul(uint256,uint256)" : {
|
|
|
|
"details" : "Multiplies a number by 7 and adds second parameter",
|
|
|
|
"params" : {
|
|
|
|
"a" : "Documentation for the first parameter starts here. Since it's a really complicated parameter we need 2 lines",
|
|
|
|
"second" : "Documentation for the second parameter"
|
|
|
|
},
|
2019-10-27 14:27:47 +00:00
|
|
|
"returns" : {
|
2019-10-21 22:05:34 +00:00
|
|
|
"d": "The result of the multiplication and cookies with nutella"
|
|
|
|
}
|
2018-03-06 18:26:49 +00:00
|
|
|
},
|
|
|
|
"constructor" : {
|
|
|
|
"params" : {
|
|
|
|
"a" : "the parameter a is really nice and very useful",
|
|
|
|
"second" : "the second parameter is not very useful, it just provides additional confusion"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, false);
|
|
|
|
}
|
|
|
|
|
2020-06-13 00:02:32 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(slash4)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
//// @notice lorem ipsum
|
|
|
|
function f() public { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"( { "methods": {} } )";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(star3)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/***
|
|
|
|
* @notice lorem ipsum
|
|
|
|
*/
|
|
|
|
function f() public { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"( { "methods": {} } )";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(slash3_slash3)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice lorem
|
|
|
|
/// ipsum
|
|
|
|
function f() public { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF({
|
|
|
|
"methods": {
|
|
|
|
"f()": { "notice": "lorem ipsum" }
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(slash3_slash4)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// @notice lorem
|
|
|
|
//// ipsum
|
|
|
|
function f() public { }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF({
|
|
|
|
"methods": {
|
|
|
|
"f()": { "notice": "lorem" }
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", natspec, true);
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:16:07 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_default_inherit_variable)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
/// @notice Hello world
|
|
|
|
/// @dev test
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract D is C {
|
|
|
|
uint public override x;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
2020-06-29 12:30:09 +00:00
|
|
|
"methods": { "x()": { "details": "test" } }
|
2020-06-29 12:16:07 +00:00
|
|
|
})ABCDEF";
|
2014-12-01 16:03:04 +00:00
|
|
|
|
2020-06-29 12:16:07 +00:00
|
|
|
char const *natspec1 = R"ABCDEF({
|
|
|
|
"methods" : {},
|
2021-05-26 15:37:49 +00:00
|
|
|
"stateVariables" :
|
2020-06-29 12:16:07 +00:00
|
|
|
{
|
|
|
|
"x" :
|
|
|
|
{
|
|
|
|
"details" : "test"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "C", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "D", natspec1, false);
|
2014-12-01 16:03:04 +00:00
|
|
|
}
|
2020-06-29 12:16:07 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_default_inherit_variable)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract C {
|
|
|
|
/// @notice Hello world
|
|
|
|
/// @dev test
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract D is C {
|
|
|
|
uint public override x;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
2020-06-29 12:30:09 +00:00
|
|
|
"methods": { "x()": { "notice": "Hello world" } }
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "C", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "D", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inherit_variable)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract B {
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract C {
|
|
|
|
/// @notice Hello world
|
|
|
|
/// @dev test
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract D is C, B {
|
|
|
|
/// @inheritdoc C
|
|
|
|
uint public override(C, B) x;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods": { "x()": { "details": "test" } }
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec1 = R"ABCDEF({
|
|
|
|
"methods" : {},
|
2021-05-26 15:37:49 +00:00
|
|
|
"stateVariables" :
|
2020-06-29 12:16:07 +00:00
|
|
|
{
|
2020-06-29 12:30:09 +00:00
|
|
|
"x" :
|
2020-06-29 12:16:07 +00:00
|
|
|
{
|
2020-06-29 12:30:09 +00:00
|
|
|
"details" : "test"
|
2020-06-29 12:16:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
2020-06-29 12:30:09 +00:00
|
|
|
checkNatspec(sourceCode, "C", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "D", natspec1, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_explicit_inherit_variable)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract B {
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract C {
|
|
|
|
/// @notice Hello world
|
|
|
|
/// @dev test
|
|
|
|
function x() virtual external returns (uint) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract D is C, B {
|
|
|
|
/// @inheritdoc C
|
|
|
|
uint public override(C, B) x;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods": { "x()": { "notice": "Hello world" } }
|
|
|
|
})ABCDEF";
|
|
|
|
|
2020-06-29 12:16:07 +00:00
|
|
|
checkNatspec(sourceCode, "C", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "D", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_default_inherit)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// Second line.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Middle is ERC20 {
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is Middle {
|
|
|
|
function transfer(address to, uint amount) override external returns (bool)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Middle", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_default_inherit)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// Second line.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Middle is ERC20 {
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is Middle {
|
|
|
|
function transfer(address to, uint amount) override external returns (bool)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``. Second line."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Middle", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, true);
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:30:09 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inherit)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 {
|
|
|
|
function transfer(address to, uint amount) virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21, ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
function transfer(address to, uint amount) override(ERC21, ERC20) external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_explicit_inherit)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 {
|
|
|
|
function transfer(address to, uint amount) virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21, ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
function transfer(address to, uint amount) override(ERC21, ERC20) external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inherit2)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 is ERC20 {
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
function transfer(address to, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "ERC21", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_explicit_inherit2)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 is ERC20 {
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
function transfer(address to, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "ERC21", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inherit_partial2)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 is ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
/// @dev override dev comment
|
|
|
|
/// @notice override notice
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21 {
|
|
|
|
function transfer(address to, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "override dev comment",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_explicit_inherit_partial2)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 is ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
/// @dev override dev comment
|
|
|
|
/// @notice override notice
|
|
|
|
function transfer(address to, uint amount) virtual override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21 {
|
|
|
|
function transfer(address to, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "override notice"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, true);
|
|
|
|
}
|
2020-10-08 09:07:31 +00:00
|
|
|
|
2020-06-29 12:30:09 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inherit_partial)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 {
|
|
|
|
function transfer(address to, uint amount) virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21, ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
/// @dev override dev comment
|
|
|
|
/// @notice override notice
|
|
|
|
function transfer(address to, uint amount) override(ERC21, ERC20) external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "override dev comment",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_explicit_inherit_partial)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract ERC21 {
|
|
|
|
function transfer(address to, uint amount) virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is ERC21, ERC20 {
|
|
|
|
/// @inheritdoc ERC20
|
|
|
|
/// @dev override dev comment
|
|
|
|
/// @notice override notice
|
|
|
|
function transfer(address to, uint amount) override(ERC21, ERC20) external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "override notice"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, true);
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:16:07 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_inherit_parameter_mismatch)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Middle is ERC20 {
|
|
|
|
function transfer(address to, uint amount) override virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is Middle {
|
|
|
|
function transfer(address too, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods": { }
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Middle", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(user_inherit_parameter_mismatch)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Middle is ERC20 {
|
|
|
|
function transfer(address to, uint amount) override virtual external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Token is Middle {
|
|
|
|
function transfer(address too, uint amount) override external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"notice": "Transfer ``amount`` from ``msg.sender`` to ``to``."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods": { }
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "ERC20", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Middle", natspec, true);
|
|
|
|
checkNatspec(sourceCode, "Token", natspec2, true);
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:30:09 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_explicit_inehrit_complex)
|
|
|
|
{
|
|
|
|
char const *sourceCode1 = R"(
|
|
|
|
interface ERC20 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ERC21 {
|
|
|
|
/// Transfer ``amount`` from ``msg.sender`` to ``to``.
|
|
|
|
/// @dev test2
|
|
|
|
/// @param to address to transfer to
|
|
|
|
/// @param amount amount to transfer
|
|
|
|
function transfer(address to, uint amount) external returns (bool);
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *sourceCode2 = R"(
|
|
|
|
import "Interfaces.sol" as myInterfaces;
|
|
|
|
|
|
|
|
contract Token is myInterfaces.ERC20, myInterfaces.ERC21 {
|
|
|
|
/// @inheritdoc myInterfaces.ERC20
|
|
|
|
function transfer(address too, uint amount)
|
|
|
|
override(myInterfaces.ERC20, myInterfaces.ERC21) external returns (bool) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"transfer(address,uint256)":
|
|
|
|
{
|
|
|
|
"details": "test",
|
|
|
|
"params":
|
|
|
|
{
|
|
|
|
"amount": "amount to transfer",
|
|
|
|
"to": "address to transfer to"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
m_compilerStack.reset();
|
|
|
|
m_compilerStack.setSources({
|
|
|
|
{"Interfaces.sol", "pragma solidity >=0.0;\n" + std::string(sourceCode1)},
|
|
|
|
{"Testfile.sol", "pragma solidity >=0.0;\n" + std::string(sourceCode2)}
|
|
|
|
});
|
|
|
|
|
|
|
|
m_compilerStack.setEVMVersion(solidity::test::CommonOptions::get().evmVersion());
|
|
|
|
|
|
|
|
BOOST_REQUIRE_MESSAGE(m_compilerStack.parseAndAnalyze(), "Parsing contract failed");
|
|
|
|
|
|
|
|
Json::Value generatedDocumentation = m_compilerStack.natspecDev("Token");
|
|
|
|
Json::Value expectedDocumentation;
|
|
|
|
util::jsonParseStrict(natspec, expectedDocumentation);
|
|
|
|
|
|
|
|
expectedDocumentation["version"] = Json::Value(Natspec::c_natspecVersion);
|
|
|
|
expectedDocumentation["kind"] = Json::Value("dev");
|
|
|
|
|
|
|
|
BOOST_CHECK_MESSAGE(
|
|
|
|
expectedDocumentation == generatedDocumentation,
|
2021-09-15 18:06:35 +00:00
|
|
|
"Expected:\n" << util::jsonPrettyPrint(expectedDocumentation) <<
|
|
|
|
"\n but got:\n" << util::jsonPrettyPrint(generatedDocumentation)
|
2020-06-29 12:30:09 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-08 09:07:31 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_different_return_name)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @return y value
|
|
|
|
function g(int x) public pure virtual returns (int y) { return x; }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B is A {
|
|
|
|
function g(int x) public pure override returns (int z) { return x; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"y": "value"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"z": "value"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_different_return_name_multiple)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @return a value A
|
|
|
|
/// @return b value B
|
|
|
|
function g(int x) public pure virtual returns (int a, int b) { return (1, 2); }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B is A {
|
|
|
|
function g(int x) public pure override returns (int z, int y) { return (1, 2); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"a": "value A",
|
|
|
|
"b": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"z": "value A",
|
|
|
|
"y": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_different_return_name_multiple_partly_unnamed)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @return value A
|
|
|
|
/// @return b value B
|
|
|
|
function g(int x) public pure virtual returns (int, int b) { return (1, 2); }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B is A {
|
|
|
|
function g(int x) public pure override returns (int z, int) { return (1, 2); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"_0": "value A",
|
|
|
|
"b": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"z": "value A",
|
|
|
|
"_1": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_different_return_name_multiple_unnamed)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @return value A
|
|
|
|
/// @return value B
|
|
|
|
function g(int x) public pure virtual returns (int, int) { return (1, 2); }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B is A {
|
|
|
|
function g(int x) public pure override returns (int z, int y) { return (1, 2); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"_0": "value A",
|
|
|
|
"_1": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"z": "value A",
|
|
|
|
"y": "value B"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspec2, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(dev_return_name_no_description)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @return a
|
|
|
|
function g(int x) public pure virtual returns (int a) { return 2; }
|
|
|
|
}
|
|
|
|
|
|
|
|
contract B is A {
|
|
|
|
function g(int x) public pure override returns (int b) { return 2; }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"a": "a",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"b": "a",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspec2, false);
|
|
|
|
}
|
|
|
|
|
2021-02-03 12:53:39 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(error)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
/// Something failed.
|
|
|
|
/// @dev an error.
|
|
|
|
/// @param a first parameter
|
|
|
|
/// @param b second parameter
|
|
|
|
error E(uint a, uint b);
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* devdoc = R"X({
|
|
|
|
"errors":{
|
|
|
|
"E(uint256,uint256)": [{
|
|
|
|
"details" : "an error.",
|
|
|
|
"params" :
|
|
|
|
{
|
|
|
|
"a" : "first parameter",
|
|
|
|
"b" : "second parameter"
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
"methods": {}
|
|
|
|
})X";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", devdoc, false);
|
|
|
|
|
|
|
|
char const* userdoc = R"X({
|
|
|
|
"errors":{
|
|
|
|
"E(uint256,uint256)": [{
|
|
|
|
"notice" : "Something failed."
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
"methods": {}
|
|
|
|
})X";
|
|
|
|
checkNatspec(sourceCode, "test", userdoc, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(error_multiple)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// Something failed.
|
|
|
|
/// @dev an error.
|
|
|
|
/// @param x first parameter
|
|
|
|
/// @param y second parameter
|
|
|
|
error E(uint x, uint y);
|
|
|
|
}
|
|
|
|
contract test {
|
|
|
|
/// X Something failed.
|
|
|
|
/// @dev X an error.
|
|
|
|
/// @param a X first parameter
|
|
|
|
/// @param b X second parameter
|
|
|
|
error E(uint a, uint b);
|
|
|
|
function f(bool a) public pure {
|
|
|
|
if (a)
|
|
|
|
revert E(1, 2);
|
|
|
|
else
|
|
|
|
revert A.E(5, 6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* devdoc = R"X({
|
|
|
|
"methods": {},
|
|
|
|
"errors": {
|
|
|
|
"E(uint256,uint256)": [
|
|
|
|
{
|
|
|
|
"details" : "an error.",
|
|
|
|
"params" :
|
|
|
|
{
|
|
|
|
"x" : "first parameter",
|
|
|
|
"y" : "second parameter"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"details" : "X an error.",
|
|
|
|
"params" :
|
|
|
|
{
|
|
|
|
"a" : "X first parameter",
|
|
|
|
"b" : "X second parameter"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
})X";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "test", devdoc, false);
|
|
|
|
|
|
|
|
char const* userdoc = R"X({
|
|
|
|
"errors":{
|
|
|
|
"E(uint256,uint256)": [
|
|
|
|
{ "notice" : "Something failed." },
|
|
|
|
{ "notice" : "X Something failed." }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"methods": {}
|
|
|
|
})X";
|
|
|
|
checkNatspec(sourceCode, "test", userdoc, true);
|
|
|
|
}
|
|
|
|
|
2021-02-25 12:57:34 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(custom)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
/// @custom:x one two three
|
|
|
|
/// @custom:y line
|
|
|
|
/// break
|
|
|
|
/// @custom:t one
|
|
|
|
/// @custom:t two
|
|
|
|
contract A {
|
|
|
|
/// @custom:note statevar
|
|
|
|
uint x;
|
|
|
|
/// @custom:since 2014
|
|
|
|
function g(int x) public pure virtual returns (int, int) { return (1, 2); }
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspec = R"ABCDEF({
|
|
|
|
"custom:t": "onetwo",
|
|
|
|
"custom:x": "one two three",
|
|
|
|
"custom:y": "line break",
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(int256)":
|
|
|
|
{
|
|
|
|
"custom:since": "2014"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"stateVariables": { "x": { "custom:note": "statevar" } }
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(custom_inheritance)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
contract A {
|
|
|
|
/// @custom:since 2014
|
|
|
|
function g(uint x) public pure virtual {}
|
|
|
|
}
|
|
|
|
contract B is A {
|
|
|
|
function g(uint x) public pure override {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* natspecA = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"g(uint256)":
|
|
|
|
{
|
|
|
|
"custom:since": "2014"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)ABCDEF";
|
|
|
|
char const* natspecB = R"ABCDEF({
|
|
|
|
"methods": {}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "A", natspecA, false);
|
|
|
|
checkNatspec(sourceCode, "B", natspecB, false);
|
|
|
|
}
|
|
|
|
|
2021-02-09 12:04:10 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(dev_different_amount_return_parameters)
|
|
|
|
{
|
|
|
|
char const *sourceCode = R"(
|
|
|
|
interface IThing {
|
|
|
|
/// @return x a number
|
|
|
|
/// @return y another number
|
|
|
|
function value() external view returns (uint128 x, uint128 y);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Thing is IThing {
|
|
|
|
struct Value {
|
|
|
|
uint128 x;
|
|
|
|
uint128 y;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value public override value;
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const *natspec = R"ABCDEF({
|
|
|
|
"methods":
|
|
|
|
{
|
|
|
|
"value()":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"x": "a number",
|
|
|
|
"y": "another number"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
char const *natspec2 = R"ABCDEF({
|
|
|
|
"methods": {},
|
|
|
|
"stateVariables":
|
|
|
|
{
|
|
|
|
"value":
|
|
|
|
{
|
|
|
|
"returns":
|
|
|
|
{
|
|
|
|
"x": "a number",
|
|
|
|
"y": "another number"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})ABCDEF";
|
|
|
|
|
|
|
|
checkNatspec(sourceCode, "IThing", natspec, false);
|
|
|
|
checkNatspec(sourceCode, "Thing", natspec2, false);
|
|
|
|
}
|
|
|
|
|
2020-06-29 12:16:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|