-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforked_tests.cpp
More file actions
782 lines (621 loc) · 31.1 KB
/
forked_tests.cpp
File metadata and controls
782 lines (621 loc) · 31.1 KB
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
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
#include <eosio/chain/abi_serializer.hpp>
#include <eosio/chain/abi_serializer.hpp>
#include <eosio/testing/tester.hpp>
#include <eosio/chain/fork_database.hpp>
#include <Runtime/Runtime.h>
#include <fc/variant_object.hpp>
#include <boost/test/unit_test.hpp>
#include <contracts.hpp>
#include "fork_test_utilities.hpp"
using namespace eosio::chain;
using namespace eosio::testing;
BOOST_AUTO_TEST_SUITE(forked_tests)
BOOST_AUTO_TEST_CASE( irrblock ) try {
tester c;
c.produce_blocks(10);
auto r = c.create_accounts( {"dan"_n,"sam"_n,"pam"_n,"scott"_n} );
auto res = c.set_producers( {"dan"_n,"sam"_n,"pam"_n,"scott"_n} );
wlog("set producer schedule to [dan,sam,pam]");
c.produce_blocks(50);
} FC_LOG_AND_RETHROW()
struct fork_tracker {
vector<signed_block_ptr> blocks;
incremental_merkle block_merkle;
};
BOOST_AUTO_TEST_CASE( fork_with_bad_block ) try {
tester bios;
bios.produce_block();
bios.produce_block();
bios.create_accounts( {"a"_n,"b"_n,"c"_n,"d"_n,"e"_n} );
bios.produce_block();
auto res = bios.set_producers( {"a"_n,"b"_n,"c"_n,"d"_n,"e"_n} );
// run until the producers are installed and its the start of "a's" round
BOOST_REQUIRE( produce_until_transition( bios, "e"_n, "a"_n ) );
// sync remote node
tester remote(setup_policy::none);
push_blocks(bios, remote);
// produce 6 blocks on bios
for (int i = 0; i < 6; i ++) {
bios.produce_block();
BOOST_REQUIRE_EQUAL( bios.control->head_block_state()->header.producer.to_string(), "a" );
}
vector<fork_tracker> forks(7);
// enough to skip A's blocks
auto offset = fc::milliseconds(config::block_interval_ms * 13);
// skip a's blocks on remote
// create 7 forks of 7 blocks so this fork is longer where the ith block is corrupted
for (size_t i = 0; i < 7; i ++) {
auto b = remote.produce_block(offset);
BOOST_REQUIRE_EQUAL( b->producer.to_string(), "b" );
for (size_t j = 0; j < 7; j ++) {
auto& fork = forks.at(j);
if (j <= i) {
auto copy_b = std::make_shared<signed_block>(b->clone());
if (j == i) {
// corrupt this block
fork.block_merkle = remote.control->head_block_state()->blockroot_merkle;
copy_b->action_mroot._hash[0] ^= 0x1ULL;
} else if (j < i) {
// link to a corrupted chain
copy_b->previous = fork.blocks.back()->calculate_id();
}
// re-sign the block
auto header_bmroot = digest_type::hash( std::make_pair( copy_b->digest(), fork.block_merkle.get_root() ) );
auto sig_digest = digest_type::hash( std::make_pair(header_bmroot, remote.control->head_block_state()->pending_schedule.schedule_hash) );
copy_b->producer_signature = remote.get_private_key("b"_n, "active").sign(sig_digest);
// add this new block to our corrupted block merkle
fork.block_merkle.append(copy_b->calculate_id());
fork.blocks.emplace_back(copy_b);
} else {
fork.blocks.emplace_back(b);
}
}
offset = fc::milliseconds(config::block_interval_ms);
}
// go from most corrupted fork to least
for (size_t i = 0; i < forks.size(); i++) {
BOOST_TEST_CONTEXT("Testing Fork: " << i) {
const auto& fork = forks.at(i);
// push the fork to the original node
for (size_t fidx = 0; fidx < fork.blocks.size() - 1; fidx++) {
const auto& b = fork.blocks.at(fidx);
// push the block only if its not known already
if (!bios.control->fetch_block_by_id(b->calculate_id())) {
bios.push_block(b);
}
}
// push the block which should attempt the corrupted fork and fail
BOOST_REQUIRE_EXCEPTION( bios.push_block(fork.blocks.back()), fc::exception,
fc_exception_message_starts_with( "Block ID does not match" )
);
}
}
// make sure we can still produce a blocks until irreversibility moves
auto lib = bios.control->head_block_state()->dpos_irreversible_blocknum;
size_t tries = 0;
while (bios.control->head_block_state()->dpos_irreversible_blocknum == lib && ++tries < 10000) {
bios.produce_block();
}
} FC_LOG_AND_RETHROW();
BOOST_AUTO_TEST_CASE( forking ) try {
tester c;
while (c.control->head_block_num() < 3) {
c.produce_block();
}
auto r = c.create_accounts( {"dan"_n,"sam"_n,"pam"_n} );
wdump((fc::json::to_pretty_string(r)));
c.produce_block();
auto res = c.set_producers( {"dan"_n,"sam"_n,"pam"_n} );
wdump((fc::json::to_pretty_string(res)));
wlog("set producer schedule to [dan,sam,pam]");
c.produce_blocks(30);
auto r2 = c.create_accounts( {"eosio.token"_n} );
wdump((fc::json::to_pretty_string(r2)));
c.set_code( "eosio.token"_n, contracts::eosio_token_wasm() );
c.set_abi( "eosio.token"_n, contracts::eosio_token_abi().data() );
c.produce_blocks(10);
auto cr = c.push_action( "eosio.token"_n, "create"_n, "eosio.token"_n, mutable_variant_object()
("issuer", "eosio" )
("maximum_supply", core_from_string("10000000.0000"))
);
cr = c.push_action( "eosio.token"_n, "issue"_n, config::system_account_name, mutable_variant_object()
("to", "eosio" )
("quantity", core_from_string("100.0000"))
("memo", "")
);
cr = c.push_action( "eosio.token"_n, "transfer"_n, config::system_account_name, mutable_variant_object()
("from", "eosio")
("to", "dan" )
("quantity", core_from_string("100.0000"))
("memo", "")
);
tester c2(setup_policy::none);
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
wlog( "end push c1 blocks to c2" );
wlog( "c1 blocks:" );
c.produce_blocks(3);
signed_block_ptr b;
b = c.produce_block();
account_name expected_producer = "dan"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
b = c.produce_block();
expected_producer = "sam"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
c.produce_blocks(10);
c.create_accounts( {"cam"_n} );
c.set_producers( {"dan"_n,"sam"_n,"pam"_n,"cam"_n} );
wlog("set producer schedule to [dan,sam,pam,cam]");
c.produce_block();
// The next block should be produced by pam.
// Sync second chain with first chain.
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
wlog( "end push c1 blocks to c2" );
// Now sam and pam go on their own fork while dan is producing blocks by himself.
wlog( "sam and pam go off on their own fork on c2 while dan produces blocks by himself in c1" );
auto fork_block_num = c.control->head_block_num();
wlog( "c2 blocks:" );
c2.produce_blocks(12); // pam produces 12 blocks
b = c2.produce_block( fc::milliseconds(config::block_interval_ms * 13) ); // sam skips over dan's blocks
expected_producer = "sam"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
c2.produce_blocks(11 + 12);
wlog( "c1 blocks:" );
b = c.produce_block( fc::milliseconds(config::block_interval_ms * 13) ); // dan skips over pam's blocks
expected_producer = "dan"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
c.produce_blocks(11);
// dan on chain 1 now gets all of the blocks from chain 2 which should cause fork switch
wlog( "push c2 blocks to c1" );
for( uint32_t start = fork_block_num + 1, end = c2.control->head_block_num(); start <= end; ++start ) {
wdump((start));
auto fb = c2.control->fetch_block_by_number( start );
c.push_block( fb );
}
wlog( "end push c2 blocks to c1" );
wlog( "c1 blocks:" );
c.produce_blocks(24);
b = c.produce_block(); // Switching active schedule to version 2 happens in this block.
expected_producer = "pam"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
b = c.produce_block();
expected_producer = "cam"_n;
// BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
c.produce_blocks(10);
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
wlog( "end push c1 blocks to c2" );
// Now with four block producers active and two identical chains (for now),
// we can test out the case that would trigger the bug in the old fork db code:
fork_block_num = c.control->head_block_num();
wlog( "cam and dan go off on their own fork on c1 while sam and pam go off on their own fork on c2" );
wlog( "c1 blocks:" );
c.produce_blocks(12); // dan produces 12 blocks
c.produce_block( fc::milliseconds(config::block_interval_ms * 25) ); // cam skips over sam and pam's blocks
c.produce_blocks(23); // cam finishes the remaining 11 blocks then dan produces his 12 blocks
wlog( "c2 blocks:" );
c2.produce_block( fc::milliseconds(config::block_interval_ms * 25) ); // pam skips over dan and sam's blocks
c2.produce_blocks(11); // pam finishes the remaining 11 blocks
c2.produce_block( fc::milliseconds(config::block_interval_ms * 25) ); // sam skips over cam and dan's blocks
c2.produce_blocks(11); // sam finishes the remaining 11 blocks
wlog( "now cam and dan rejoin sam and pam on c2" );
c2.produce_block( fc::milliseconds(config::block_interval_ms * 13) ); // cam skips over pam's blocks (this block triggers a block on this branch to become irreversible)
c2.produce_blocks(11); // cam produces the remaining 11 blocks
b = c2.produce_block(); // dan produces a block
// a node on chain 1 now gets all but the last block from chain 2 which should cause a fork switch
wlog( "push c2 blocks (except for the last block by dan) to c1" );
for( uint32_t start = fork_block_num + 1, end = c2.control->head_block_num() - 1; start <= end; ++start ) {
auto fb = c2.control->fetch_block_by_number( start );
c.push_block( fb );
}
wlog( "end push c2 blocks to c1" );
wlog( "now push dan's block to c1 but first corrupt it so it is a bad block" );
signed_block bad_block = std::move(*b);
bad_block.action_mroot = bad_block.previous;
auto bad_id = bad_block.calculate_id();
auto bad_block_bs = c.control->create_block_state_future( bad_id, std::make_shared<signed_block>(std::move(bad_block)) );
c.control->abort_block();
BOOST_REQUIRE_EXCEPTION(c.control->push_block( bad_block_bs, forked_branch_callback{}, trx_meta_cache_lookup{} ), fc::exception,
[] (const fc::exception &ex)->bool {
return ex.to_detail_string().find("block signed by unexpected key") != std::string::npos;
});
} FC_LOG_AND_RETHROW()
/**
* This test verifies that the fork-choice rule favors the branch with
* the highest last irreversible block over one that is longer.
*/
BOOST_AUTO_TEST_CASE( prune_remove_branch ) try {
tester c;
while (c.control->head_block_num() < 11) {
c.produce_block();
}
auto r = c.create_accounts( {"dan"_n,"sam"_n,"pam"_n,"scott"_n} );
auto res = c.set_producers( {"dan"_n,"sam"_n,"pam"_n,"scott"_n} );
wlog("set producer schedule to [dan,sam,pam,scott]");
c.produce_blocks(50);
tester c2(setup_policy::none);
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
// fork happen after block 61
BOOST_REQUIRE_EQUAL(61u, c.control->head_block_num());
BOOST_REQUIRE_EQUAL(61u, c2.control->head_block_num());
uint32_t fork_num = c.control->head_block_num();
auto nextproducer = [](tester &c, int skip_interval) ->account_name {
auto head_time = c.control->head_block_time();
auto next_time = head_time + fc::milliseconds(config::block_interval_ms * skip_interval);
return c.control->head_block_state()->get_scheduled_producer(next_time).producer_name;
};
// fork c: 2 producers: dan, sam
// fork c2: 1 producer: scott
int skip1 = 1, skip2 = 1;
for (int i = 0; i < 50; ++i) {
account_name next1 = nextproducer(c, skip1);
if (next1 == "dan"_n || next1 == "sam"_n) {
c.produce_block(fc::milliseconds(config::block_interval_ms * skip1)); skip1 = 1;
}
else ++skip1;
account_name next2 = nextproducer(c2, skip2);
if (next2 == "scott"_n) {
c2.produce_block(fc::milliseconds(config::block_interval_ms * skip2)); skip2 = 1;
}
else ++skip2;
}
BOOST_REQUIRE_EQUAL(87u, c.control->head_block_num());
BOOST_REQUIRE_EQUAL(73u, c2.control->head_block_num());
// push fork from c2 => c
size_t p = fork_num;
while ( p < c2.control->head_block_num()) {
auto fb = c2.control->fetch_block_by_number(++p);
c.push_block(fb);
}
BOOST_REQUIRE_EQUAL(73u, c.control->head_block_num());
} FC_LOG_AND_RETHROW()
/**
* Tests that a validating node does not accept a block which is considered invalid by another node.
*/
BOOST_AUTO_TEST_CASE( validator_accepts_valid_blocks ) try {
tester n1(setup_policy::none);
tester n2(setup_policy::none);
tester n3(setup_policy::none);
n1.produce_block();
auto id = n1.control->head_block_id();
block_state_ptr first_block;
auto c = n2.control->accepted_block.connect( [&]( const block_state_ptr& bsp) {
first_block = bsp;
} );
push_blocks( n1, n2 );
BOOST_CHECK_EQUAL( n2.control->head_block_id(), id );
BOOST_REQUIRE( first_block );
first_block->verify_signee();
BOOST_CHECK_EQUAL( first_block->header.calculate_id(), first_block->block->calculate_id() );
BOOST_CHECK( first_block->header.producer_signature == first_block->block->producer_signature );
c.disconnect();
n3.push_block( first_block->block );
BOOST_CHECK_EQUAL( n3.control->head_block_id(), id );
} FC_LOG_AND_RETHROW()
BOOST_AUTO_TEST_CASE( read_modes ) try {
tester c;
c.produce_block();
c.produce_block();
auto r = c.create_accounts( {"dan"_n,"sam"_n,"pam"_n} );
c.produce_block();
auto res = c.set_producers( {"dan"_n,"sam"_n,"pam"_n} );
c.produce_blocks(200);
auto head_block_num = c.control->head_block_num();
auto last_irreversible_block_num = c.control->last_irreversible_block_num();
tester head(setup_policy::none, db_read_mode::HEAD);
push_blocks(c, head);
BOOST_CHECK_EQUAL(head_block_num, head.control->fork_db_head_block_num());
BOOST_CHECK_EQUAL(head_block_num, head.control->head_block_num());
tester read_only(setup_policy::none, db_read_mode::READ_ONLY);
push_blocks(c, read_only);
BOOST_CHECK_EQUAL(head_block_num, read_only.control->fork_db_head_block_num());
BOOST_CHECK_EQUAL(head_block_num, read_only.control->head_block_num());
tester irreversible(setup_policy::none, db_read_mode::IRREVERSIBLE);
push_blocks(c, irreversible);
BOOST_CHECK_EQUAL(head_block_num, irreversible.control->fork_db_pending_head_block_num());
BOOST_CHECK_EQUAL(last_irreversible_block_num, irreversible.control->fork_db_head_block_num());
BOOST_CHECK_EQUAL(last_irreversible_block_num, irreversible.control->head_block_num());
} FC_LOG_AND_RETHROW()
BOOST_AUTO_TEST_CASE( irreversible_mode ) try {
auto does_account_exist = []( const tester& t, account_name n ) {
const auto& db = t.control->db();
return (db.find<account_object, by_name>( n ) != nullptr);
};
tester main;
main.create_accounts( {"producer1"_n, "producer2"_n} );
main.produce_block();
main.set_producers( {"producer1"_n, "producer2"_n} );
main.produce_block();
BOOST_REQUIRE( produce_until_transition( main, "producer1"_n, "producer2"_n, 26) );
main.create_accounts( {"alice"_n} );
main.produce_block();
auto hbn1 = main.control->head_block_num();
auto lib1 = main.control->last_irreversible_block_num();
BOOST_REQUIRE( produce_until_transition( main, "producer2"_n, "producer1"_n, 11) );
auto hbn2 = main.control->head_block_num();
auto lib2 = main.control->last_irreversible_block_num();
BOOST_REQUIRE( lib2 < hbn1 );
tester other(setup_policy::none);
push_blocks( main, other );
BOOST_CHECK_EQUAL( other.control->head_block_num(), hbn2 );
BOOST_REQUIRE( produce_until_transition( main, "producer1"_n, "producer2"_n, 12) );
BOOST_REQUIRE( produce_until_transition( main, "producer2"_n, "producer1"_n, 12) );
auto hbn3 = main.control->head_block_num();
auto lib3 = main.control->last_irreversible_block_num();
BOOST_REQUIRE( lib3 >= hbn1 );
BOOST_CHECK_EQUAL( does_account_exist( main, "alice"_n ), true );
// other forks away from main after hbn2
BOOST_REQUIRE_EQUAL( other.control->head_block_producer().to_string(), "producer2" );
other.produce_block( fc::milliseconds( 13 * config::block_interval_ms ) ); // skip over producer1's round
BOOST_REQUIRE_EQUAL( other.control->head_block_producer().to_string(), "producer2" );
auto fork_first_block_id = other.control->head_block_id();
wlog( "{w}", ("w", fork_first_block_id));
BOOST_REQUIRE( produce_until_transition( other, "producer2"_n, "producer1"_n, 11) ); // finish producer2's round
BOOST_REQUIRE_EQUAL( other.control->pending_block_producer().to_string(), "producer1" );
// Repeat two more times to ensure other has a longer chain than main
other.produce_block( fc::milliseconds( 13 * config::block_interval_ms ) ); // skip over producer1's round
BOOST_REQUIRE( produce_until_transition( other, "producer2"_n, "producer1"_n, 11) ); // finish producer2's round
other.produce_block( fc::milliseconds( 13 * config::block_interval_ms ) ); // skip over producer1's round
BOOST_REQUIRE( produce_until_transition( other, "producer2"_n, "producer1"_n, 11) ); // finish producer2's round
auto hbn4 = other.control->head_block_num();
auto lib4 = other.control->last_irreversible_block_num();
BOOST_REQUIRE( hbn4 > hbn3 );
BOOST_REQUIRE( lib4 < hbn1 );
tester irreversible(setup_policy::none, db_read_mode::IRREVERSIBLE);
push_blocks( main, irreversible, hbn1 );
BOOST_CHECK_EQUAL( irreversible.control->fork_db_pending_head_block_num(), hbn1 );
BOOST_CHECK_EQUAL( irreversible.control->head_block_num(), lib1 );
BOOST_CHECK_EQUAL( does_account_exist( irreversible, "alice"_n ), false );
push_blocks( other, irreversible, hbn4 );
BOOST_CHECK_EQUAL( irreversible.control->fork_db_pending_head_block_num(), hbn4 );
BOOST_CHECK_EQUAL( irreversible.control->head_block_num(), lib4 );
BOOST_CHECK_EQUAL( does_account_exist( irreversible, "alice"_n ), false );
// force push blocks from main to irreversible creating a new branch in irreversible's fork database
for( uint32_t n = hbn2 + 1; n <= hbn3; ++n ) {
auto fb = main.control->fetch_block_by_number( n );
irreversible.push_block( fb );
}
BOOST_CHECK_EQUAL( irreversible.control->fork_db_pending_head_block_num(), hbn3 );
BOOST_CHECK_EQUAL( irreversible.control->head_block_num(), lib3 );
BOOST_CHECK_EQUAL( does_account_exist( irreversible, "alice"_n ), true );
{
auto bs = irreversible.control->fetch_block_state_by_id( fork_first_block_id );
BOOST_REQUIRE( bs && bs->id == fork_first_block_id );
}
main.produce_block();
auto hbn5 = main.control->head_block_num();
auto lib5 = main.control->last_irreversible_block_num();
BOOST_REQUIRE( lib5 > lib3 );
push_blocks( main, irreversible, hbn5 );
{
auto bs = irreversible.control->fetch_block_state_by_id( fork_first_block_id );
BOOST_REQUIRE( !bs );
}
} FC_LOG_AND_RETHROW()
BOOST_AUTO_TEST_CASE( reopen_forkdb ) try {
tester c1;
c1.create_accounts( {"alice"_n,"bob"_n,"carol"_n} );
c1.produce_block();
auto res = c1.set_producers( {"alice"_n,"bob"_n,"carol"_n} );
c1.produce_blocks(2);
BOOST_REQUIRE_EQUAL( c1.control->active_producers().version, 1u );
produce_until_transition( c1, "carol"_n, "alice"_n );
c1.produce_block();
produce_until_transition( c1, "carol"_n, "alice"_n );
tester c2(setup_policy::none);
push_blocks( c1, c2 );
auto fork1_lib_before = c1.control->last_irreversible_block_num();
// alice produces a block on fork 1 causing LIB to advance
c1.produce_block();
auto fork1_head_block_id = c1.control->head_block_id();
auto fork1_lib_after = c1.control->last_irreversible_block_num();
BOOST_REQUIRE( fork1_lib_after > fork1_lib_before );
auto fork2_lib_before = c2.control->last_irreversible_block_num();
BOOST_REQUIRE_EQUAL( fork1_lib_before, fork2_lib_before );
// carol produces a block on fork 2 skipping over the slots of alice and bob
c2.produce_block( fc::milliseconds(config::block_interval_ms * 25) );
auto fork2_start_block = c2.control->head_block_num();
c2.produce_block();
auto fork2_lib_after = c2.control->last_irreversible_block_num();
BOOST_REQUIRE_EQUAL( fork2_lib_before, fork2_lib_after );
for( uint32_t block_num = fork2_start_block; block_num < c2.control->head_block_num(); ++block_num ) {
auto fb = c2.control->fetch_block_by_number( block_num );
c1.push_block( fb );
}
BOOST_REQUIRE( fork1_head_block_id == c1.control->head_block_id() ); // new blocks should not cause fork switch
c1.close();
c1.open();
} FC_LOG_AND_RETHROW()
BOOST_AUTO_TEST_CASE( push_block_returns_forked_transactions ) try {
tester c;
while (c.control->head_block_num() < 3) {
c.produce_block();
}
auto r = c.create_accounts( {"dan"_n,"sam"_n,"pam"_n} );
c.produce_block();
auto res = c.set_producers( {"dan"_n,"sam"_n,"pam"_n} );
wlog("set producer schedule to [dan,sam,pam]");
c.produce_blocks(40);
tester c2(setup_policy::none);
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
wlog( "c1 blocks:" );
signed_block_ptr cb;
c.produce_blocks(3);
signed_block_ptr b;
cb = b = c.produce_block();
account_name expected_producer = "dan"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
b = c.produce_block();
expected_producer = "sam"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
c.produce_blocks(10);
c.create_accounts( {"cam"_n} );
c.set_producers( {"dan"_n,"sam"_n,"pam"_n,"cam"_n} );
wlog("set producer schedule to [dan,sam,pam,cam]");
c.produce_block();
// The next block should be produced by pam.
// Sync second chain with first chain.
wlog( "push c1 blocks to c2" );
push_blocks(c, c2);
wlog( "end push c1 blocks to c2" );
// Now sam and pam go on their own fork while dan is producing blocks by himself.
wlog( "sam and pam go off on their own fork on c2 while dan produces blocks by himself in c1" );
auto fork_block_num = c.control->head_block_num();
signed_block_ptr c2b;
wlog( "c2 blocks:" );
c2.produce_blocks(12); // pam produces 12 blocks
b = c2b = c2.produce_block( fc::milliseconds(config::block_interval_ms * 13) ); // sam skips over dan's blocks
expected_producer = "sam"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
// save blocks for verification of forking later
std::vector<signed_block_ptr> c2blocks;
for( size_t i = 0; i < 11 + 12; ++i ) {
c2blocks.emplace_back( c2.produce_block() );
}
wlog( "c1 blocks:" );
b = c.produce_block( fc::milliseconds(config::block_interval_ms * 13) ); // dan skips over pam's blocks
expected_producer = "dan"_n;
BOOST_REQUIRE_EQUAL( b->producer.to_string(), expected_producer.to_string() );
// create accounts on c1 which will be forked out
c.produce_block();
transaction_trace_ptr trace1, trace2, trace3, trace4;
{ // create account the hard way so we can set reference block and expiration
signed_transaction trx;
authority active_auth( get_public_key( "test1"_n, "active" ) );
authority owner_auth( get_public_key( "test1"_n, "owner" ) );
trx.actions.emplace_back( vector<permission_level>{{config::system_account_name,config::active_name}},
newaccount{
.creator = config::system_account_name,
.name = "test1"_n,
.owner = owner_auth,
.active = active_auth,
});
trx.expiration = c.control->head_block_time() + fc::seconds( 60 );
trx.set_reference_block( cb->calculate_id() );
trx.sign( get_private_key( config::system_account_name, "active" ), c.control->get_chain_id() );
trace1 = c.push_transaction( trx );
}
c.produce_block();
{
signed_transaction trx;
authority active_auth( get_public_key( "test2"_n, "active" ) );
authority owner_auth( get_public_key( "test2"_n, "owner" ) );
trx.actions.emplace_back( vector<permission_level>{{config::system_account_name,config::active_name}},
newaccount{
.creator = config::system_account_name,
.name = "test2"_n,
.owner = owner_auth,
.active = active_auth,
});
trx.expiration = c.control->head_block_time() + fc::seconds( 60 );
trx.set_reference_block( cb->calculate_id() );
trx.sign( get_private_key( config::system_account_name, "active" ), c.control->get_chain_id() );
trace2 = c.push_transaction( trx );
}
{
signed_transaction trx;
authority active_auth( get_public_key( "test3"_n, "active" ) );
authority owner_auth( get_public_key( "test3"_n, "owner" ) );
trx.actions.emplace_back( vector<permission_level>{{config::system_account_name,config::active_name}},
newaccount{
.creator = config::system_account_name,
.name = "test3"_n,
.owner = owner_auth,
.active = active_auth,
});
trx.expiration = c.control->head_block_time() + fc::seconds( 60 );
trx.set_reference_block( cb->calculate_id() );
trx.sign( get_private_key( config::system_account_name, "active" ), c.control->get_chain_id() );
trace3 = c.push_transaction( trx );
}
{
signed_transaction trx;
authority active_auth( get_public_key( "test4"_n, "active" ) );
authority owner_auth( get_public_key( "test4"_n, "owner" ) );
trx.actions.emplace_back( vector<permission_level>{{config::system_account_name,config::active_name}},
newaccount{
.creator = config::system_account_name,
.name = "test4"_n,
.owner = owner_auth,
.active = active_auth,
});
trx.expiration = c.control->head_block_time() + fc::seconds( 60 );
trx.set_reference_block( b->calculate_id() ); // tapos to dan's block should be rejected on fork switch
trx.sign( get_private_key( config::system_account_name, "active" ), c.control->get_chain_id() );
trace4 = c.push_transaction( trx );
BOOST_CHECK( trace4->receipt->status == transaction_receipt_header::executed );
}
c.produce_block();
c.produce_blocks(9);
// test forked blocks signal accepted_block in order, required by trace_api_plugin
std::vector<signed_block_ptr> accepted_blocks;
auto conn = c.control->accepted_block.connect( [&]( const block_state_ptr& bsp) {
accepted_blocks.emplace_back( bsp->block );
} );
// dan on chain 1 now gets all of the blocks from chain 2 which should cause fork switch
wlog( "push c2 blocks to c1" );
for( uint32_t start = fork_block_num + 1, end = c2.control->head_block_num(); start <= end; ++start ) {
auto fb = c2.control->fetch_block_by_number( start );
c.push_block( fb );
}
{ // verify forked blocks where signaled in order
auto itr = std::find( accepted_blocks.begin(), accepted_blocks.end(), c2b );
BOOST_CHECK( itr != accepted_blocks.end() );
++itr;
BOOST_CHECK( itr != accepted_blocks.end() );
size_t i = 0;
for( i = 0; itr != accepted_blocks.end(); ++i, ++itr ) {
BOOST_CHECK( c2blocks.at(i) == *itr );
}
BOOST_CHECK( i == 11 + 12 );
}
// verify transaction on fork is reported by push_block in order
BOOST_REQUIRE_EQUAL( 4, c.get_unapplied_transaction_queue().size() );
BOOST_REQUIRE_EQUAL( trace1->id, c.get_unapplied_transaction_queue().begin()->id() );
BOOST_REQUIRE_EQUAL( trace2->id, (++c.get_unapplied_transaction_queue().begin())->id() );
BOOST_REQUIRE_EQUAL( trace3->id, (++(++c.get_unapplied_transaction_queue().begin()))->id() );
BOOST_REQUIRE_EQUAL( trace4->id, (++(++(++c.get_unapplied_transaction_queue().begin())))->id() );
BOOST_REQUIRE_EXCEPTION(c.control->get_account( "test1"_n ), fc::exception,
[a="test1"_n] (const fc::exception& e)->bool {
return std::string( e.what() ).find( a.to_string() ) != std::string::npos;
}) ;
BOOST_REQUIRE_EXCEPTION(c.control->get_account( "test2"_n ), fc::exception,
[a="test2"_n] (const fc::exception& e)->bool {
return std::string( e.what() ).find( a.to_string() ) != std::string::npos;
}) ;
BOOST_REQUIRE_EXCEPTION(c.control->get_account( "test3"_n ), fc::exception,
[a="test3"_n] (const fc::exception& e)->bool {
return std::string( e.what() ).find( a.to_string() ) != std::string::npos;
}) ;
BOOST_REQUIRE_EXCEPTION(c.control->get_account( "test4"_n ), fc::exception,
[a="test4"_n] (const fc::exception& e)->bool {
return std::string( e.what() ).find( a.to_string() ) != std::string::npos;
}) ;
// produce block which will apply the unapplied transactions
std::vector<transaction_trace_ptr> traces;
c.produce_block( traces );
BOOST_REQUIRE_EQUAL( 4, traces.size() );
BOOST_CHECK_EQUAL( trace1->id, traces.at(0)->id );
BOOST_CHECK_EQUAL( transaction_receipt_header::executed, traces.at(0)->receipt->status );
BOOST_CHECK_EQUAL( trace2->id, traces.at(1)->id );
BOOST_CHECK_EQUAL( transaction_receipt_header::executed, traces.at(1)->receipt->status );
BOOST_CHECK_EQUAL( trace3->id, traces.at(2)->id );
BOOST_CHECK_EQUAL( transaction_receipt_header::executed, traces.at(2)->receipt->status );
// test4 failed because it was tapos to a forked out block
BOOST_CHECK_EQUAL( trace4->id, traces.at(3)->id );
BOOST_CHECK( !traces.at(3)->receipt );
BOOST_CHECK( traces.at(3)->except );
// verify unapplied transactions ran
BOOST_REQUIRE_EQUAL( c.control->get_account( "test1"_n ).name, "test1"_n );
BOOST_REQUIRE_EQUAL( c.control->get_account( "test2"_n ).name, "test2"_n );
BOOST_REQUIRE_EQUAL( c.control->get_account( "test3"_n ).name, "test3"_n );
// failed because of tapos to forked out block
BOOST_REQUIRE_EXCEPTION(c.control->get_account( "test4"_n ), fc::exception,
[a="test4"_n] (const fc::exception& e)->bool {
return std::string( e.what() ).find( a.to_string() ) != std::string::npos;
}) ;
} FC_LOG_AND_RETHROW()
BOOST_AUTO_TEST_SUITE_END()