aboutsummaryrefslogtreecommitdiffstats
path: root/transaction.cpp
blob: 70c4454f0c6e73abc58332820de2071e185f3d6f (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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
    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/>.
*/
/** @file transaction.cpp
 * @author Dmitrii Khokhlov <winsvega@mail.ru>
 * @date 2015
 * Transaaction test functions.
 */

#include "TestHelper.h"

using namespace std;
using namespace json_spirit;
using namespace dev;
using namespace dev::eth;
using namespace dev::eth;

namespace dev {  namespace test {

Transaction createTransactionFromFields(mObject& _tObj)
{
    BOOST_REQUIRE(_tObj.count("data") > 0);
    BOOST_REQUIRE(_tObj.count("value") > 0);
    BOOST_REQUIRE(_tObj.count("gasPrice") > 0);
    BOOST_REQUIRE(_tObj.count("gasLimit") > 0);
    BOOST_REQUIRE(_tObj.count("nonce")> 0);
    BOOST_REQUIRE(_tObj.count("to") > 0);

    BOOST_REQUIRE(_tObj.count("v") > 0);
    BOOST_REQUIRE(_tObj.count("r") > 0);
    BOOST_REQUIRE(_tObj.count("s") > 0);

    //Construct Rlp of the given transaction
    RLPStream rlpStream;
    rlpStream.appendList(9);
    rlpStream <<  bigint(_tObj["nonce"].get_str()) << bigint(_tObj["gasPrice"].get_str()) << bigint(_tObj["gasLimit"].get_str());
    if (_tObj["to"].get_str().empty())
        rlpStream << "";
    else
        rlpStream << Address(_tObj["to"].get_str());
    rlpStream << bigint(_tObj["value"].get_str()) << importData(_tObj);
    rlpStream << bigint(_tObj["v"].get_str()) << bigint(_tObj["r"].get_str()) << bigint(_tObj["s"].get_str());

    return Transaction(rlpStream.out(), CheckSignature::Sender);
}

void doTransactionTests(json_spirit::mValue& _v, bool _fillin)
{
    for (auto& i: _v.get_obj())
    {
        cerr << i.first << endl;
        mObject& o = i.second.get_obj();

        if (_fillin == false)
        {
            BOOST_REQUIRE(o.count("rlp") > 0);
            bytes rlpReaded = importByteArray(o["rlp"].get_str());
            Transaction txFromRlp;

            try
            {
                txFromRlp = Transaction(rlpReaded, CheckSignature::Sender);
                if (!txFromRlp.signature().isValid())
                    BOOST_THROW_EXCEPTION(Exception() << errinfo_comment("transaction from RLP signature is invalid") );
            }
            catch(...)
            {
                BOOST_CHECK_MESSAGE(o.count("transaction") == 0, "A transction object should not be defined because the RLP is invalid!");
                return;
            }

            BOOST_REQUIRE(o.count("transaction") > 0);

            mObject tObj = o["transaction"].get_obj();
            Transaction txFromFields = createTransactionFromFields(tObj);

            //Check the fields restored from RLP to original fields
            BOOST_CHECK_MESSAGE(txFromFields.data() == txFromRlp.data(), "Data in given RLP not matching the Transaction data!");
            BOOST_CHECK_MESSAGE(txFromFields.value() == txFromRlp.value(), "Value in given RLP not matching the Transaction value!");
            BOOST_CHECK_MESSAGE(txFromFields.gasPrice() == txFromRlp.gasPrice(), "GasPrice in given RLP not matching the Transaction gasPrice!");
            BOOST_CHECK_MESSAGE(txFromFields.gas() == txFromRlp.gas(),"Gas in given RLP not matching the Transaction gas!");
            BOOST_CHECK_MESSAGE(txFromFields.nonce() == txFromRlp.nonce(),"Nonce in given RLP not matching the Transaction nonce!");
            BOOST_CHECK_MESSAGE(txFromFields.receiveAddress() == txFromRlp.receiveAddress(), "Receive address in given RLP not matching the Transaction 'to' address!");
            BOOST_CHECK_MESSAGE(txFromFields.sender() == txFromRlp.sender(), "Transaction sender address in given RLP not matching the Transaction 'vrs' signature!");
            BOOST_CHECK_MESSAGE(txFromFields == txFromRlp, "However, txFromFields != txFromRlp!");
            BOOST_REQUIRE (o.count("sender") > 0);

            Address addressReaded = Address(o["sender"].get_str());
            BOOST_CHECK_MESSAGE(txFromFields.sender() == addressReaded || txFromRlp.sender() == addressReaded, "Signature address of sender does not match given sender address!");
        }
        else
        {
            BOOST_REQUIRE(o.count("transaction") > 0);
            mObject tObj = o["transaction"].get_obj();

            //Construct Rlp of the given transaction
            RLPStream rlpStream;
            rlpStream.appendList(tObj.size());

            if (tObj.count("nonce") > 0)
                rlpStream << bigint(tObj["nonce"].get_str());

            if (tObj.count("gasPrice") > 0)
                rlpStream << bigint(tObj["gasPrice"].get_str());

            if (tObj.count("gasLimit") > 0)
                rlpStream << bigint(tObj["gasLimit"].get_str());

            if (tObj.count("to") > 0)
            {
                if (tObj["to"].get_str().empty())
                    rlpStream << "";
                else
                    rlpStream << Address(tObj["to"].get_str());
            }

            if (tObj.count("value") > 0)
                rlpStream << bigint(tObj["value"].get_str());

            if (tObj.count("data") > 0)
                rlpStream << importData(tObj);

            if (tObj.count("v") > 0)
                rlpStream << bigint(tObj["v"].get_str());

            if (tObj.count("r") > 0)
                rlpStream << bigint(tObj["r"].get_str());

            if (tObj.count("s") > 0)
                rlpStream <<  bigint(tObj["s"].get_str());

            if (tObj.count("extrafield") > 0)
                rlpStream << bigint(tObj["extrafield"].get_str());

            o["rlp"] = "0x" + toHex(rlpStream.out());

            try
            {
                Transaction txFromFields(rlpStream.out(), CheckSignature::Sender);
                if (!txFromFields.signature().isValid())
                    BOOST_THROW_EXCEPTION(Exception() << errinfo_comment("transaction from RLP signature is invalid") );

                o["sender"] = toString(txFromFields.sender());
            }
            catch(...)
            {
                o.erase(o.find("transaction"));
            }
        }
    }//for
}//doTransactionTests

} }// Namespace Close


BOOST_AUTO_TEST_SUITE(TransactionTests)

BOOST_AUTO_TEST_CASE(TransactionTest)
{
    dev::test::executeTests("ttTransactionTest", "/TransactionTests", dev::test::doTransactionTests);
}

BOOST_AUTO_TEST_CASE(tt10mbDataField)
{
    dev::test::executeTests("tt10mbDataField", "/TransactionTests", dev::test::doTransactionTests);
}

BOOST_AUTO_TEST_CASE(ttCreateTest)
{
    for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i)
    {
        string arg = boost::unit_test::framework::master_test_suite().argv[i];
        if (arg == "--createtest")
        {
            if (boost::unit_test::framework::master_test_suite().argc <= i + 2)
            {
                cnote << "usage: ./testeth --createtest <PathToConstructor> <PathToDestiny>\n";
                return;
            }
            try
            {
                cnote << "Populating tests...";
                json_spirit::mValue v;
                string s = asString(dev::contents(boost::unit_test::framework::master_test_suite().argv[i + 1]));
                BOOST_REQUIRE_MESSAGE(s.length() > 0, "Content of " + (string)boost::unit_test::framework::master_test_suite().argv[i + 1] + " is empty.");
                json_spirit::read_string(s, v);
                dev::test::doTransactionTests(v, true);
                writeFile(boost::unit_test::framework::master_test_suite().argv[i + 2], asBytes(json_spirit::write_string(v, true)));
            }
            catch (Exception const& _e)
            {
                BOOST_ERROR("Failed transaction test with Exception: " << diagnostic_information(_e));
            }
            catch (std::exception const& _e)
            {
                BOOST_ERROR("Failed transaction test with Exception: " << _e.what());
            }
        }
    }
}

BOOST_AUTO_TEST_CASE(userDefinedFileTT)
{
    dev::test::userDefinedTest("--ttTest", dev::test::doTransactionTests);
}

BOOST_AUTO_TEST_SUITE_END()