aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityNameAndTypeResolution.cpp
blob: e330d772c42f2e654bde87036ca410d489236e2e (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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
/*
    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 2014
 * Unit tests for the name and type resolution of the solidity parser.
 */

#include <string>

#include <libdevcore/Log.h>
#include <libdevcrypto/SHA3.h>
#include <libsolidity/Scanner.h>
#include <libsolidity/Parser.h>
#include <libsolidity/NameAndTypeResolver.h>
#include <libsolidity/Exceptions.h>
#include <boost/test/unit_test.hpp>

using namespace std;

namespace dev
{
namespace solidity
{
namespace test
{

namespace
{

ASTPointer<SourceUnit> parseTextAndResolveNames(std::string const& _source)
{
    Parser parser;
    ASTPointer<SourceUnit> sourceUnit = parser.parse(std::make_shared<Scanner>(CharStream(_source)));
    NameAndTypeResolver resolver({});
    resolver.registerDeclarations(*sourceUnit);
    for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
        if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
            resolver.resolveNamesAndTypes(*contract);
    for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
        if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
            resolver.checkTypeRequirements(*contract);

    return sourceUnit;
}

ASTPointer<SourceUnit> parseTextAndResolveNamesWithChecks(std::string const& _source)
{
    Parser parser;
    ASTPointer<SourceUnit> sourceUnit;
    try
    {
        sourceUnit = parser.parse(std::make_shared<Scanner>(CharStream(_source)));
        NameAndTypeResolver resolver({});
        resolver.registerDeclarations(*sourceUnit);
        for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
            if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
                resolver.resolveNamesAndTypes(*contract);
        for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
            if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
                resolver.checkTypeRequirements(*contract);
    }
    catch(boost::exception const& _e)
    {
        auto msg = std::string("Parsing text and resolving names failed with: \n") + boost::diagnostic_information(_e);
        BOOST_FAIL(msg);
    }
    return sourceUnit;
}

static ContractDefinition const* retrieveContract(ASTPointer<SourceUnit> _source, unsigned index)
{
    ContractDefinition* contract;
    unsigned counter = 0;
    for (ASTPointer<ASTNode> const& node: _source->getNodes())
        if ((contract = dynamic_cast<ContractDefinition*>(node.get())) && counter == index)
            return contract;

    return NULL;
}

static FunctionTypePointer const& retrieveFunctionBySignature(ContractDefinition const* _contract,
                                                              std::string const& _signature)
{
    FixedHash<4> hash(dev::sha3(_signature));
    return _contract->getInterfaceFunctions()[hash];
}
}

BOOST_AUTO_TEST_SUITE(SolidityNameAndTypeResolution)

BOOST_AUTO_TEST_CASE(smoke_test)
{
    char const* text = "contract test {\n"
                       "  uint256 stateVariable1;\n"
                       "  function fun(uint256 arg1) { var x; uint256 y; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNamesWithChecks(text));
}

BOOST_AUTO_TEST_CASE(double_stateVariable_declaration)
{
    char const* text = "contract test {\n"
                       "  uint256 variable;\n"
                       "  uint128 variable;\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
}

BOOST_AUTO_TEST_CASE(double_function_declaration)
{
    char const* text = "contract test {\n"
                       "  function fun() { var x; }\n"
                       "  function fun() { var x; }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
}

BOOST_AUTO_TEST_CASE(double_variable_declaration)
{
    char const* text = "contract test {\n"
                       "  function f() { uint256 x; if (true)  { uint256 x; } }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
}

BOOST_AUTO_TEST_CASE(name_shadowing)
{
    char const* text = "contract test {\n"
                       "  uint256 variable;\n"
                       "  function f() { uint32 variable ; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(name_references)
{
    char const* text = "contract test {\n"
                       "  uint256 variable;\n"
                       "  function f(uint256 arg) returns (uint out) { f(variable); test; out; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(undeclared_name)
{
    char const* text = "contract test {\n"
                       "  uint256 variable;\n"
                       "  function f(uint256 arg) { f(notfound); }"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
}

BOOST_AUTO_TEST_CASE(reference_to_later_declaration)
{
    char const* text = "contract test {\n"
                       "  function g() { f(); }"
                       "  function f() {  }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(struct_definition_directly_recursive)
{
    char const* text = "contract test {\n"
                       "  struct MyStructName {\n"
                       "    address addr;\n"
                       "    MyStructName x;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), ParserError);
}

BOOST_AUTO_TEST_CASE(struct_definition_indirectly_recursive)
{
    char const* text = "contract test {\n"
                       "  struct MyStructName1 {\n"
                       "    address addr;\n"
                       "    uint256 count;\n"
                       "    MyStructName2 x;\n"
                       "  }\n"
                       "  struct MyStructName2 {\n"
                       "    MyStructName1 x;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), ParserError);
}

BOOST_AUTO_TEST_CASE(struct_definition_recursion_via_mapping)
{
    char const* text = "contract test {\n"
                       "  struct MyStructName1 {\n"
                       "    address addr;\n"
                       "    uint256 count;\n"
                       "    mapping(uint => MyStructName1) x;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(type_inference_smoke_test)
{
    char const* text = "contract test {\n"
                       "  function f(uint256 arg1, uint32 arg2) returns (bool ret) { var x = arg1 + arg2 == 8; ret = x; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(type_checking_return)
{
    char const* text = "contract test {\n"
                       "  function f() returns (bool r) { return 1 >= 2; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(type_checking_return_wrong_number)
{
    char const* text = "contract test {\n"
                       "  function f() returns (bool r1, bool r2) { return 1 >= 2; }"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(type_checking_return_wrong_type)
{
    char const* text = "contract test {\n"
                       "  function f() returns (uint256 r) { return 1 >= 2; }"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(type_checking_function_call)
{
    char const* text = "contract test {\n"
                       "  function f() returns (bool r) { return g(12, true) == 3; }\n"
                       "  function g(uint256 a, bool b) returns (uint256 r) { }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(type_conversion_for_comparison)
{
    char const* text = "contract test {\n"
                       "  function f() { uint32(2) == int64(2); }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(type_conversion_for_comparison_invalid)
{
    char const* text = "contract test {\n"
                       "  function f() { int32(2) == uint64(2); }"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(type_inference_explicit_conversion)
{
    char const* text = "contract test {\n"
                       "  function f() returns (int256 r) { var x = int256(uint32(2)); return x; }"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(large_string_literal)
{
    char const* text = "contract test {\n"
                       "  function f() { var x = \"123456789012345678901234567890123\"; }"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(balance)
{
    char const* text = "contract test {\n"
                       "  function fun() {\n"
                       "    uint256 x = address(0).balance;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(balance_invalid)
{
    char const* text = "contract test {\n"
                       "  function fun() {\n"
                       "    address(0).balance = 7;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(assignment_to_mapping)
{
    char const* text = "contract test {\n"
                       "  struct str {\n"
                       "    mapping(uint=>uint) map;\n"
                       "  }\n"
                       "  str data;"
                       "  function fun() {\n"
                       "    var a = data.map;\n"
                       "    data.map = a;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(assignment_to_struct)
{
    char const* text = "contract test {\n"
                       "  struct str {\n"
                       "    mapping(uint=>uint) map;\n"
                       "  }\n"
                       "  str data;"
                       "  function fun() {\n"
                       "    var a = data;\n"
                       "    data = a;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(returns_in_constructor)
{
    char const* text = "contract test {\n"
                       "  function test() returns (uint a) {\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(forward_function_reference)
{
    char const* text = "contract First {\n"
                       "  function fun() returns (bool ret) {\n"
                       "    return Second(1).fun(1, true, 3) > 0;\n"
                       "  }\n"
                       "}\n"
                       "contract Second {\n"
                       "  function fun(uint a, bool b, uint c) returns (uint ret) {\n"
                       "    if (First(2).fun() == true) return 1;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(comparison_bitop_precedence)
{
    char const* text = "contract First {\n"
                       "  function fun() returns (bool ret) {\n"
                       "    return 1 & 2 == 8 & 9 && 1 ^ 2 < 4 | 6;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(function_canonical_signature)
{
    ASTPointer<SourceUnit> sourceUnit;
    char const* text = "contract Test {\n"
                       "  function foo(uint256 arg1, uint64 arg2, bool arg3) returns (uint256 ret) {\n"
                       "    ret = arg1 + arg2;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(sourceUnit = parseTextAndResolveNames(text));
    for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
        if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
        {
            auto functions = contract->getDefinedFunctions();
            BOOST_CHECK_EQUAL("foo(uint256,uint64,bool)", functions[0]->getCanonicalSignature());
        }
}

BOOST_AUTO_TEST_CASE(function_canonical_signature_type_aliases)
{
    ASTPointer<SourceUnit> sourceUnit;
    char const* text = "contract Test {\n"
                       "  function boo(uint arg1, hash arg2, address arg3) returns (uint ret) {\n"
                       "    ret = 5;\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_NO_THROW(sourceUnit = parseTextAndResolveNames(text));
    for (ASTPointer<ASTNode> const& node: sourceUnit->getNodes())
        if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
        {
            auto functions = contract->getDefinedFunctions();
            BOOST_CHECK_EQUAL("boo(uint256,hash256,address)", functions[0]->getCanonicalSignature());
        }
}

BOOST_AUTO_TEST_CASE(hash_collision_in_interface)
{
    char const* text = "contract test {\n"
                       "  function gsf() {\n"
                       "  }\n"
                       "  function tgeo() {\n"
                       "  }\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(inheritance_basic)
{
    char const* text = R"(
        contract base { uint baseMember; struct BaseType { uint element; } }
        contract derived is base {
            BaseType data;
            function f() { baseMember = 7; }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(inheritance_diamond_basic)
{
    char const* text = R"(
        contract root { function rootFunction() {} }
        contract inter1 is root { function f() {} }
        contract inter2 is root { function f() {} }
        contract derived is root, inter2, inter1 {
            function g() { f(); rootFunction(); }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(cyclic_inheritance)
{
    char const* text = R"(
        contract A is B { }
        contract B is A { }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(illegal_override_direct)
{
    char const* text = R"(
        contract B { function f() {} }
        contract C is B { function f(uint i) {} }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(illegal_override_indirect)
{
    char const* text = R"(
        contract A { function f(uint a) {} }
        contract B { function f() {} }
        contract C is A, B { }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(complex_inheritance)
{
    char const* text = R"(
        contract A { function f() { uint8 x = C(0).g(); } }
        contract B { function f() {} function g() returns (uint8 r) {} }
        contract C is A, B { }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(constructor_visibility)
{
    // The constructor of a base class should not be visible in the derived class
    char const* text = R"(
        contract A { function A() { } }
        contract B is A { function f() { A x = A(0); } }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(overriding_constructor)
{
    // It is fine to "override" constructor of a base class since it is invisible
    char const* text = R"(
        contract A { function A() { } }
        contract B is A { function A() returns (uint8 r) {} }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(missing_base_constructor_arguments)
{
    char const* text = R"(
        contract A { function A(uint a) { } }
        contract B is A { }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(base_constructor_arguments_override)
{
    char const* text = R"(
        contract A { function A(uint a) { } }
        contract B is A { }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(implicit_derived_to_base_conversion)
{
    char const* text = R"(
        contract A { }
        contract B is A {
            function f() { A a = B(1); }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(implicit_base_to_derived_conversion)
{
    char const* text = R"(
        contract A { }
        contract B is A {
            function f() { B b = A(1); }
        }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(function_modifier_invocation)
{
    char const* text = R"(
        contract B {
            function f() mod1(2, true) mod2("0123456") { }
            modifier mod1(uint a, bool b) { if (b) _ }
            modifier mod2(string7 a) { while (a == "1234567") _ }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(invalid_function_modifier_type)
{
    char const* text = R"(
        contract B {
            function f() mod1(true) { }
            modifier mod1(uint a) { if (a > 0) _ }
        }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(function_modifier_invocation_parameters)
{
    char const* text = R"(
        contract B {
            function f(uint8 a) mod1(a, true) mod2(r) returns (string7 r) { }
            modifier mod1(uint a, bool b) { if (b) _ }
            modifier mod2(string7 a) { while (a == "1234567") _ }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(function_modifier_invocation_local_variables)
{
    char const* text = R"(
        contract B {
            function f() mod(x) { uint x = 7; }
            modifier mod(uint a) { if (a > 0) _ }
        }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(legal_modifier_override)
{
    char const* text = R"(
        contract A { modifier mod(uint a) {} }
        contract B is A { modifier mod(uint a) {} }
    )";
    BOOST_CHECK_NO_THROW(parseTextAndResolveNames(text));
}

BOOST_AUTO_TEST_CASE(illegal_modifier_override)
{
    char const* text = R"(
        contract A { modifier mod(uint a) {} }
        contract B is A { modifier mod(uint8 a) {} }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(modifier_overrides_function)
{
    char const* text = R"(
        contract A { modifier mod(uint a) {} }
        contract B is A { function mod(uint a) {} }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(function_overrides_modifier)
{
    char const* text = R"(
        contract A { function mod(uint a) {} }
        contract B is A { modifier mod(uint a) {} }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(modifier_returns_value)
{
    char const* text = R"(
        contract A {
            function f(uint a) mod(2) returns (uint r) {}
            modifier mod(uint a) { return 7; }
        }
    )";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
}

BOOST_AUTO_TEST_CASE(state_variable_accessors)
{
    char const* text = "contract test {\n"
                       "  function fun() {\n"
                       "    uint64(2);\n"
                       "  }\n"
                       "uint256 foo;\n"
                       "}\n";

    ASTPointer<SourceUnit> source;
    ContractDefinition const* contract;
    BOOST_CHECK_NO_THROW(source = parseTextAndResolveNamesWithChecks(text));
    BOOST_REQUIRE((contract = retrieveContract(source, 0)) != nullptr);
    FunctionTypePointer function = retrieveFunctionBySignature(contract, "foo()");
    BOOST_CHECK_MESSAGE(function->getDeclaration() != nullptr, "Could not find the accessor function");
    auto returnParams = function->getReturnParameterTypeNames();
    BOOST_CHECK_EQUAL(returnParams.at(0), "uint256");
    BOOST_CHECK(function->isConstant());
}

BOOST_AUTO_TEST_CASE(function_clash_with_state_variable_accessor)
{
    char const* text = "contract test {\n"
                       "  function fun() {\n"
                       "    uint64(2);\n"
                       "  }\n"
                       "uint256 foo;\n"
                       "   function foo() {}\n"
                       "}\n";
    BOOST_CHECK_THROW(parseTextAndResolveNames(text), DeclarationError);
}

BOOST_AUTO_TEST_CASE(private_state_variable)
{
    char const* text = "contract test {\n"
                       "  function fun() {\n"
                       "    uint64(2);\n"
                       "  }\n"
                       "private:\n"
                       "uint256 foo;\n"
                       "}\n";

    ASTPointer<SourceUnit> source;
    ContractDefinition const* contract;
    BOOST_CHECK_NO_THROW(source = parseTextAndResolveNamesWithChecks(text));
    BOOST_CHECK((contract = retrieveContract(source, 0)) != nullptr);
    FunctionTypePointer function = retrieveFunctionBySignature(contract, "foo()");
    BOOST_CHECK_MESSAGE(function == nullptr, "Accessor function of a private variable should not exist");
}

BOOST_AUTO_TEST_SUITE_END()

}
}
} // end namespaces