aboutsummaryrefslogtreecommitdiffstats
path: root/solidityNatspecJSON.cpp
blob: 9e24d23ede898e3eaa2b12bd85c9a4a5762c31cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
    This file is part of cpp-ethereum.

    cpp-ethereum is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    cpp-ethereum is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with cpp-ethereum.  If not, see <http://www.gnu.org/licenses/>.
 */
/**
 * @author Lefteris Karapetsas <lefteris@ethdev.com>
 * @date 2014
 * Unit tests for the solidity compiler JSON Interface output.
 */

#include <boost/test/unit_test.hpp>
#include <libsolidity/CompilerStack.h>
#include <jsonrpc/json/json.h>
#include <libdevcore/Exceptions.h>

namespace dev
{
namespace solidity
{
namespace test
{

class DocumentationChecker
{
public:
    void checkNatspec(std::string const& _code,
                      std::string const& _expectedDocumentationString,
                      bool _userDocumentation)
    {
        std::string generatedDocumentationString;
        try
        {
            m_compilerStack.parse(_code);
        }
        catch (const std::exception& e)
        {
            std::string const* extra = boost::get_error_info<errinfo_comment>(e);
            std::string msg = std::string("Parsing contract failed with: ") +
                e.what() + std::string("\n");
            if (extra)
                msg += *extra;
            BOOST_FAIL(msg);
        }

        if (_userDocumentation)
            generatedDocumentationString = *m_compilerStack.getJsonDocumentation(NATSPEC_USER);
        else
            generatedDocumentationString = *m_compilerStack.getJsonDocumentation(NATSPEC_DEV);
        Json::Value generatedDocumentation;
        m_reader.parse(generatedDocumentationString, generatedDocumentation);
        Json::Value expectedDocumentation;
        m_reader.parse(_expectedDocumentationString, expectedDocumentation);
        BOOST_CHECK_MESSAGE(expectedDocumentation == generatedDocumentation,
                            "Expected " << _expectedDocumentationString <<
                            "\n but got:\n" << generatedDocumentationString);
    }

private:
    CompilerStack m_compilerStack;
    Json::Reader m_reader;
};

BOOST_FIXTURE_TEST_SUITE(SolidityNatspecJSON, DocumentationChecker)

BOOST_AUTO_TEST_CASE(user_basic_test)
{
    char const* sourceCode = "contract test {\n"
    "  /// Multiplies `a` by 7\n"
    "  function mul(uint a) returns(uint d) { return a * 7; }\n"
    "}\n";

    char const* natspec = "{"
    "\"methods\":{"
    "    \"mul\":{ \"notice\": \" Multiplies `a` by 7\"}"
    "}}";

    checkNatspec(sourceCode, natspec, true);
}

BOOST_AUTO_TEST_CASE(user_multiline_comment)
{
    char const* sourceCode = "contract test {\n"
    "  /// Multiplies `a` by 7\n"
    "  /// and then adds `b`\n"
    "  function mul_and_add(uint a, uint256 b) returns(uint256 d)\n"
    "  {\n"
    "      return (a * 7) + b;\n"
    "  }\n"
    "}\n";

    char const* natspec = "{"
    "\"methods\":{"
    "    \"mul_and_add\":{ \"notice\": \" Multiplies `a` by 7\n and then adds `b`\"}"
    "}}";

    checkNatspec(sourceCode, natspec, true);
}

BOOST_AUTO_TEST_CASE(user_multiple_functions)
{
    char const* sourceCode = "contract test {\n"
    "  /// Multiplies `a` by 7\n"
    "  /// and then adds `b`\n"
    "  function mul_and_add(uint a, uint256 b) returns(uint256 d)\n"
    "  {\n"
    "      return (a * 7) + b;\n"
    "  }\n"
    "\n"
    "  /// Divides `input` by `div`\n"
    "  function divide(uint input, uint div) returns(uint d)\n"
    "  {\n"
    "      return input / div;\n"
    "  }\n"
    "  /// Subtracts 3 from `input`\n"
    "  function sub(int input) returns(int d)\n"
    "  {\n"
    "      return input - 3;\n"
    "  }\n"
    "}\n";

    char const* natspec = "{"
    "\"methods\":{"
    "    \"mul_and_add\":{ \"notice\": \" Multiplies `a` by 7\n and then adds `b`\"},"
    "    \"divide\":{ \"notice\": \" Divides `input` by `div`\"},"
    "    \"sub\":{ \"notice\": \" Subtracts 3 from `input`\"}"
    "}}";

    checkNatspec(sourceCode, natspec, true);
}

BOOST_AUTO_TEST_CASE(user_empty_contract)
{
    char const* sourceCode = "contract test {\n"
    "}\n";

    char const* natspec = "{\"methods\":{} }";

    checkNatspec(sourceCode, natspec, true);
}


BOOST_AUTO_TEST_SUITE_END()

}
}
}