aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityInterface.cpp
blob: 9a1c104d5b8894d554ac6e3ab19c9f969497267c (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
159
160
161
162
163
164
165
/*
    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 Christian <c@ethdev.com>
 * @date 2015
 * Unit tests for generating source interfaces for Solidity contracts.
 */

#include "../TestHelper.h"
#include <libsolidity/interface/CompilerStack.h>
#include <libsolidity/ast/AST.h>

using namespace std;

namespace dev
{
namespace solidity
{
namespace test
{

class SolidityInterfaceChecker
{
public:
    SolidityInterfaceChecker(): m_compilerStack(false) {}

    /// Compiles the given code, generates the interface and parses that again.
    ContractDefinition const& checkInterface(string const& _code, string const& _contractName = "")
    {
        m_code = _code;
        ETH_TEST_REQUIRE_NO_THROW(m_compilerStack.parse(_code), "Parsing failed");
        m_interface = m_compilerStack.metadata("", DocumentationType::ABISolidityInterface);
        ETH_TEST_REQUIRE_NO_THROW(m_reCompiler.parse(m_interface), "Interface parsing failed");
        return m_reCompiler.contractDefinition(_contractName);
    }

    string sourcePart(ASTNode const& _node) const
    {
        SourceLocation location = _node.location();
        BOOST_REQUIRE(!location.isEmpty());
        return m_interface.substr(location.start, location.end - location.start);
    }

protected:
    string m_code;
    string m_interface;
    CompilerStack m_compilerStack;
    CompilerStack m_reCompiler;
};

BOOST_FIXTURE_TEST_SUITE(SolidityInterface, SolidityInterfaceChecker)

BOOST_AUTO_TEST_CASE(empty_contract)
{
    ContractDefinition const& contract = checkInterface("contract test {}");
    BOOST_CHECK_EQUAL(sourcePart(contract), "contract test{}");
}

BOOST_AUTO_TEST_CASE(single_function)
{
    ContractDefinition const& contract = checkInterface(
        "contract test {\n"
        "  function f(uint a) returns(uint d) { return a * 7; }\n"
        "}\n");
    BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
    BOOST_CHECK_EQUAL(sourcePart(*contract.definedFunctions().front()),
                      "function f(uint256 a)returns(uint256 d);");
}

BOOST_AUTO_TEST_CASE(single_constant_function)
{
    ContractDefinition const& contract = checkInterface(
            "contract test { function f(uint a) constant returns(bytes1 x) { 1==2; } }");
    BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
    BOOST_CHECK_EQUAL(sourcePart(*contract.definedFunctions().front()),
                      "function f(uint256 a)constant returns(bytes1 x);");
}

BOOST_AUTO_TEST_CASE(multiple_functions)
{
    char const* sourceCode = "contract test {\n"
    "  function f(uint a) returns(uint d) { return a * 7; }\n"
    "  function g(uint b) returns(uint e) { return b * 8; }\n"
    "}\n";
    ContractDefinition const& contract = checkInterface(sourceCode);
    set<string> expectation({"function f(uint256 a)returns(uint256 d);",
                             "function g(uint256 b)returns(uint256 e);"});
    BOOST_REQUIRE_EQUAL(2, contract.definedFunctions().size());
    BOOST_CHECK(expectation == set<string>({sourcePart(*contract.definedFunctions().at(0)),
                                            sourcePart(*contract.definedFunctions().at(1))}));
}

BOOST_AUTO_TEST_CASE(exclude_fallback_function)
{
    char const* sourceCode = "contract test { function() {} }";
    ContractDefinition const& contract = checkInterface(sourceCode);
    BOOST_CHECK_EQUAL(sourcePart(contract), "contract test{}");
}

BOOST_AUTO_TEST_CASE(events)
{
    char const* sourceCode = "contract test {\n"
    "  function f(uint a) returns(uint d) { return a * 7; }\n"
    "  event e1(uint b, address indexed c); \n"
    "  event e2(); \n"
    "}\n";
    ContractDefinition const& contract = checkInterface(sourceCode);
    // events should not appear in the Solidity Interface
    BOOST_REQUIRE_EQUAL(0, contract.events().size());
}

BOOST_AUTO_TEST_CASE(inheritance)
{
    char const* sourceCode =
    "   contract Base { \n"
    "       function baseFunction(uint p) returns (uint i) { return p; } \n"
    "       event baseEvent(bytes32 indexed evtArgBase); \n"
    "   } \n"
    "   contract Derived is Base { \n"
    "       function derivedFunction(bytes32 p) returns (bytes32 i) { return p; } \n"
    "       event derivedEvent(uint indexed evtArgDerived); \n"
    "   }";
    ContractDefinition const& contract = checkInterface(sourceCode);
    set<string> expectedFunctions({"function baseFunction(uint256 p)returns(uint256 i);",
                                   "function derivedFunction(bytes32 p)returns(bytes32 i);"});
    BOOST_REQUIRE_EQUAL(2, contract.definedFunctions().size());
    BOOST_CHECK(expectedFunctions == set<string>({sourcePart(*contract.definedFunctions().at(0)),
                                                  sourcePart(*contract.definedFunctions().at(1))}));
}

BOOST_AUTO_TEST_CASE(libraries)
{
    char const* sourceCode = R"(
        library Lib {
            struct Str { uint a; }
            enum E { E1, E2 }
            function f(uint[] x,Str storage y,E z) external;
        }
    )";
    ContractDefinition const& contract = checkInterface(sourceCode);
    BOOST_CHECK(contract.isLibrary());
    set<string> expectedFunctions({"function f(uint256[] x,Lib.Str storage y,Lib.E z);"});
    BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
    BOOST_CHECK(expectedFunctions == set<string>({sourcePart(*contract.definedFunctions().at(0))}));
}

BOOST_AUTO_TEST_SUITE_END()

}
}
}