forked from LiskArchive/lisk-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrounds.js
1132 lines (989 loc) Β· 34.9 KB
/
rounds.js
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
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright Β© 2018 Lisk Foundation
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation,
* no part of this software, including this file, may be copied, modified,
* propagated, or distributed except according to the terms contained in the
* LICENSE file.
*
* Removal or modification of this copyright notice is prohibited.
*/
'use strict';
const async = require('async');
const elements = require('lisk-js').default;
const Promise = require('bluebird');
const constants = require('../../../helpers/constants');
const slots = require('../../../helpers/slots');
const Bignum = require('../../../helpers/bignum');
const accountsFixtures = require('../../fixtures/accounts');
const randomUtil = require('../../common/utils/random');
const queriesHelper = require('../common/sql/queriesHelper.js');
const localCommon = require('./common');
describe('rounds', () => {
let library;
let Queries;
let generateDelegateListPromise;
let addTransactionsAndForgePromise;
// Set rewards start at 150-th block
constants.rewards.offset = 150;
localCommon.beforeBlock('lisk_functional_rounds', lib => {
library = lib;
Queries = new queriesHelper(lib, lib.db);
generateDelegateListPromise = Promise.promisify(
library.modules.delegates.generateDelegateList
);
addTransactionsAndForgePromise = Promise.promisify(
localCommon.addTransactionsAndForge
);
});
function getMemAccounts() {
return Queries.getAccounts().then(rows => {
const accounts = {};
_.map(rows, acc => {
accounts[acc.address] = acc;
});
return _.cloneDeep(accounts);
});
}
function getDelegates() {
return Queries.getDelegates().then(rows => {
const delegates = {};
_.map(rows, d => {
d.publicKey = d.publicKey.toString('hex');
delegates[d.publicKey] = d;
});
return _.cloneDeep(delegates);
});
}
function expectedMemState(transactions, _accounts) {
const accounts = _.cloneDeep(_accounts);
const lastBlock = library.modules.blocks.lastBlock.get();
// Update last block forger account
const found = _.find(accounts, {
publicKey: Buffer.from(lastBlock.generatorPublicKey, 'hex'),
});
if (found) {
found.producedBlocks += 1;
found.blockId = lastBlock.id;
}
// Mutate states - apply every transaction to expected states
_.each(transactions, transaction => {
// SENDER: Get address from senderId or if not available - get from senderPublicKey
let address =
transaction.senderId ||
library.modules.accounts.generateAddressByPublicKey(
transaction.senderPublicKey
);
// If account with address exists - set expected values
if (accounts[address]) {
// Update sender
accounts[address].balance = new Bignum(accounts[address].balance)
.minus(
new Bignum(transaction.fee).plus(new Bignum(transaction.amount))
)
.toString();
accounts[address].u_balance = new Bignum(accounts[address].u_balance)
.minus(
new Bignum(transaction.fee).plus(new Bignum(transaction.amount))
)
.toString();
accounts[address].blockId = lastBlock.id;
accounts[address].virgin = 0;
// Set public key if not present
if (!accounts[address].publicKey) {
accounts[address].publicKey = Buffer.from(
transaction.senderPublicKey,
'hex'
);
}
// Apply register delegate transaction
if (transaction.type === 2) {
accounts[address].username = transaction.asset.delegate.username;
accounts[address].u_username = accounts[address].username;
accounts[address].isDelegate = 1;
accounts[address].u_isDelegate = 1;
}
}
// RECIPIENT: Get address from recipientId
address = transaction.recipientId;
// Perform only when address exists (exclude non-standard tyransaction types)
if (address) {
// If account with address exists - set expected values
if (accounts[address]) {
// Update recipient
accounts[address].balance = new Bignum(accounts[address].balance)
.plus(new Bignum(transaction.amount))
.toString();
accounts[address].u_balance = new Bignum(accounts[address].u_balance)
.plus(new Bignum(transaction.amount))
.toString();
accounts[address].blockId = lastBlock.id;
} else {
// Funds sent to new account - create account with default values
accounts[address] = accountsFixtures.dbAccount({
address,
balance: new Bignum(transaction.amount).toString(),
blockId: lastBlock.id,
});
}
}
});
return accounts;
}
function applyRoundRewards(_accounts, blocks) {
const accounts = _.cloneDeep(_accounts);
const lastBlock = library.modules.blocks.lastBlock.get();
const expectedRewards = getExpectedRoundRewards(blocks);
_.each(expectedRewards, reward => {
const found = _.find(accounts, {
publicKey: Buffer.from(reward.publicKey, 'hex'),
});
if (found) {
found.blockId = lastBlock.id;
found.fees = new Bignum(found.fees)
.plus(new Bignum(reward.fees))
.toString();
found.rewards = new Bignum(found.rewards)
.plus(new Bignum(reward.rewards))
.toString();
found.balance = new Bignum(found.balance)
.plus(new Bignum(reward.fees))
.plus(new Bignum(reward.rewards))
.toString();
found.u_balance = new Bignum(found.u_balance)
.plus(new Bignum(reward.fees))
.plus(new Bignum(reward.rewards))
.toString();
}
});
return accounts;
}
function recalculateVoteWeights(_accounts, voters) {
const accounts = _.cloneDeep(_accounts);
// Reset vote for all accounts
_.each(accounts, account => {
account.vote = '0';
});
// Recalculate vote
_.each(voters, delegate => {
let votes = '0';
const found = _.find(accounts, {
publicKey: Buffer.from(delegate.dependentId, 'hex'),
});
_.each(delegate.array_agg, voter => {
const found = _.find(accounts, {
address: voter,
});
votes = new Bignum(votes).plus(new Bignum(found.balance)).toString();
});
found.vote = votes;
});
return accounts;
}
function applyOutsiders(_accounts, delegatesList, blocks) {
const accounts = _.cloneDeep(_accounts);
// Get all public keys of delegates that forged blocks in current round
const blockGeneratorsPublicKeys = blocks.map(b =>
b.generatorPublicKey.toString('hex')
);
// Get public keys of delegates who were expected to forge in current round but they didn't
const roundOutsidersList = _.difference(
delegatesList,
blockGeneratorsPublicKeys
);
// Increase missed blocks counter for every outsider
roundOutsidersList.forEach(publicKey => {
const account = _.find(accounts, {
publicKey: Buffer.from(publicKey, 'hex'),
});
account.missedBlocks += 1;
});
return accounts;
}
function getExpectedRoundRewards(blocks) {
const rewards = {};
const feesTotal = _.reduce(
blocks,
(fees, block) => {
return new Bignum(fees).plus(block.totalFee);
},
0
);
const rewardsTotal = _.reduce(
blocks,
(reward, block) => {
return new Bignum(reward).plus(block.reward);
},
0
);
const feesPerDelegate = new Bignum(feesTotal.toPrecision(15))
.dividedBy(slots.delegates)
.floor();
const feesRemaining = new Bignum(feesTotal.toPrecision(15)).minus(
feesPerDelegate.times(slots.delegates)
);
__testContext.debug(
` Total fees: ${feesTotal} Fees per delegates: ${feesPerDelegate} Remaining fees: ${feesRemaining} Total rewards: ${rewardsTotal}`
);
_.each(blocks, (block, index) => {
const publicKey = block.generatorPublicKey.toString('hex');
if (rewards[publicKey]) {
rewards[publicKey].fees = rewards[publicKey].fees.plus(feesPerDelegate);
rewards[publicKey].rewards = rewards[publicKey].rewards.plus(
block.reward
);
} else {
rewards[publicKey] = {
publicKey,
fees: new Bignum(feesPerDelegate),
rewards: new Bignum(block.reward),
};
}
if (index === blocks.length - 1) {
// Apply remaining fees to last delegate
rewards[publicKey].fees = rewards[publicKey].fees.plus(feesRemaining);
}
});
_.each(rewards, delegate => {
delegate.fees = delegate.fees.toString();
delegate.rewards = delegate.rewards.toString();
});
return rewards;
}
function tickAndValidate(transactions) {
const tick = { before: {}, after: {} };
describe('new block', () => {
before(() => {
tick.before.block = library.modules.blocks.lastBlock.get();
tick.before.round = slots.calcRound(tick.before.block.height);
return Promise.join(
getMemAccounts(),
getDelegates(),
generateDelegateListPromise(tick.before.block.height, null),
Queries.getDelegatesOrderedByVote(),
(_accounts, _delegates, _delegatesList, _delegatesOrderedByVote) => {
tick.before.accounts = _.cloneDeep(_accounts);
tick.before.delegates = _.cloneDeep(_delegates);
tick.before.delegatesList = _.cloneDeep(_delegatesList);
tick.before.delegatesOrderedByVote = _.cloneDeep(
_delegatesOrderedByVote
);
}
).then(() => {
return addTransactionsAndForgePromise(library, transactions, 0).then(
() => {
tick.after.block = library.modules.blocks.lastBlock.get();
tick.after.round = slots.calcRound(tick.after.block.height);
// Detect if round changed
tick.isRoundChanged = tick.before.round !== tick.after.round;
// Detect last block of round
tick.isLastBlockOfRound =
tick.after.block.height % slots.delegates === 0;
return Promise.join(
getMemAccounts(),
getDelegates(),
generateDelegateListPromise(tick.after.block.height + 1, null),
Queries.getDelegatesOrderedByVote(),
(
_accounts,
_delegates,
_delegatesList,
_delegatesOrderedByVote
) => {
tick.after.accounts = _.cloneDeep(_accounts);
tick.after.delegates = _.cloneDeep(_delegates);
tick.after.delegatesList = _.cloneDeep(_delegatesList);
tick.after.delegatesOrderedByVote = _.cloneDeep(
_delegatesOrderedByVote
);
if (tick.isLastBlockOfRound) {
return Promise.join(
Queries.getBlocks(tick.after.round),
Queries.getVoters(),
(_blocks, _voters) => {
tick.roundBlocks = _blocks;
tick.voters = _voters;
}
);
}
}
);
}
);
});
});
it('ID should be different than last block ID', () => {
return expect(tick.after.block.id).to.not.equal(tick.before.block.id);
});
it('height should be greather by 1', () => {
return expect(tick.after.block.height).to.equal(
tick.before.block.height + 1
);
});
it('should contain all expected transactions', () => {
return expect(transactions.map(t => t.id).sort()).to.be.deep.equal(
tick.after.block.transactions.map(t => t.id).sort()
);
});
it('unconfirmed account balances should match confirmed account balances', done => {
_.each(tick.after.accounts, account => {
expect(account.u_balance).to.be.equal(account.balance);
});
done();
});
describe('mem_accounts table', () => {
it('if block contains at least one transaction states before and after block should be different', done => {
if (transactions.length > 0) {
expect(tick.before.accounts).to.not.deep.equal(tick.after.accounts);
}
done();
});
it('delegates with highest weight used for generating list should be the same for same round', () => {
if (tick.isLastBlockOfRound) {
return expect(tick.before.delegatesOrderedByVote).to.not.deep.equal(
tick.after.delegatesOrderedByVote
);
}
return expect(tick.before.delegatesOrderedByVote).to.deep.equal(
tick.after.delegatesOrderedByVote
);
});
it('delegates list should be the same for same round', () => {
if (
(tick.isLastBlockOfRound &&
!_.isEqual(
tick.before.delegatesOrderedByVote,
tick.after.delegatesOrderedByVote
)) ||
tick.isRoundChanged
) {
return expect(tick.before.delegatesList).to.not.deep.equal(
tick.after.delegatesList
);
}
return expect(tick.before.delegatesList).to.deep.equal(
tick.after.delegatesList
);
});
it('accounts table states should match expected states', done => {
let expected;
expected = expectedMemState(transactions, tick.before.accounts);
// Last block of round - apply round expectactions
if (tick.isLastBlockOfRound) {
expected = applyRoundRewards(expected, tick.roundBlocks);
expected = recalculateVoteWeights(expected, tick.voters);
expected = applyOutsiders(
expected,
tick.before.delegatesList,
tick.roundBlocks
);
}
// FIXME: Remove that nasty hack after https://github.com/LiskHQ/lisk/issues/716 is closed
try {
expect(tick.after.accounts).to.deep.equal(expected);
} catch (err) {
// When comparison of mem_accounts states fail
_.reduce(
tick.after.accounts,
(result, value, key) => {
// Clone actual and expected accounts states
const actualAccount = Object.assign({}, value);
const expectedAccount = Object.assign({}, expected[key]);
// Compare actual and expected states
if (!_.isEqual(actualAccount, expectedAccount)) {
// When comparison fails - calculate absolute difference of 'vote' values
const absoluteDiff = Math.abs(
new Bignum(actualAccount.vote)
.minus(new Bignum(expectedAccount.vote))
.toNumber()
);
// If absolute value is 1 beddows - pass the test, as reason is related to issue #716
if (absoluteDiff === 1) {
__testContext.debug(
`ERROR: Value of 'vote' for account ${key} doesn't match expectations, actual: ${
actualAccount.vote
}, expected: ${
expectedAccount.vote
}, diff: ${absoluteDiff} beddows`
);
} else {
// In every other case - fail the test
throw err;
}
}
},
[]
);
}
done();
});
it('balances should be valid against blockchain balances', () => {
// Perform validation of accounts balances against blockchain after every block
return expect(Queries.validateAccountsBalances()).to.eventually.be.an(
'array'
).that.is.empty;
});
});
});
}
describe('round 1', () => {
let deleteLastBlockPromise;
const round = {
current: 1,
outsiderPublicKey:
'948b8b509579306694c00833ec1c0f81e964487db2206ddb1517bfeca2b0dc1b',
};
before(() => {
const lastBlock = library.modules.blocks.lastBlock.get();
deleteLastBlockPromise = Promise.promisify(
library.modules.blocks.chain.deleteLastBlock
);
// Copy initial states for later comparison
return Promise.join(
getMemAccounts(),
getDelegates(),
generateDelegateListPromise(lastBlock.height, null),
(_accounts, _delegates, _delegatesList) => {
// Get genesis accounts address - should be senderId from first transaction
const genesisAddress =
library.genesisblock.block.transactions[0].senderId;
// Inject and normalize genesis account to delegates (it's not a delegate, but will get rewards split from first round)
const genesisPublicKey = _accounts[genesisAddress].publicKey.toString(
'hex'
);
_delegates[genesisPublicKey] = _accounts[genesisAddress];
_delegates[genesisPublicKey].publicKey = genesisPublicKey;
round.delegatesList = _delegatesList;
round.accounts = _.cloneDeep(_accounts);
round.delegates = _.cloneDeep(_delegates);
}
);
});
describe('forge block with 1 TRANSFER transaction to random account', () => {
const transactions = [];
before(done => {
const transaction = elements.transaction.transfer({
recipientId: randomUtil.account().address,
amount: randomUtil.number(100000000, 1000000000),
passphrase: accountsFixtures.genesis.password,
});
transactions.push(transaction);
done();
});
tickAndValidate(transactions);
});
describe('forge block with 25 TRANSFER transactions to random accounts', () => {
const transactions = [];
before(done => {
const transactionsPerBlock = 25;
for (let i = transactionsPerBlock - 1; i >= 0; i--) {
const transaction = elements.transaction.transfer({
recipientId: randomUtil.account().address,
amount: randomUtil.number(100000000, 1000000000),
passphrase: accountsFixtures.genesis.password,
});
transactions.push(transaction);
}
done();
});
tickAndValidate(transactions);
});
describe('should forge 97 blocks with 1 TRANSFER transaction each to random account', () => {
const blocksToForge = 97;
let blocksProcessed = 0;
const transactionsPerBlock = 1;
async.doUntil(
untilCb => {
++blocksProcessed;
const transactions = [];
for (let t = transactionsPerBlock - 1; t >= 0; t--) {
const transaction = elements.transaction.transfer({
recipientId: randomUtil.account().address,
amount: randomUtil.number(100000000, 1000000000),
passphrase: accountsFixtures.genesis.password,
});
transactions.push(transaction);
}
__testContext.debug(
` Processing block ${blocksProcessed} of ${blocksToForge} with ${
transactions.length
} transactions`
);
tickAndValidate(transactions);
untilCb();
},
err => {
return err || blocksProcessed >= blocksToForge;
}
);
});
describe('forge block with 1 TRANSFER transaction to random account (last block of round)', () => {
const transactions = [];
before(() => {
const transaction = elements.transaction.transfer({
recipientId: randomUtil.account().address,
amount: randomUtil.number(100000000, 1000000000),
passphrase: accountsFixtures.genesis.password,
});
transactions.push(transaction);
return getMemAccounts().then(_accounts => {
round.accountsBeforeLastBlock = _.cloneDeep(_accounts);
});
});
tickAndValidate(transactions);
});
describe('after round 1 is finished', () => {
it('last block height should equal active delegates count', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return expect(lastBlock.height).to.be.equal(slots.delegates);
});
it('should calculate rewards for round 1 correctly - all should be the same (calculated, rounds_rewards, mem_accounts)', () => {
return Promise.join(
getMemAccounts(),
Queries.getBlocks(round.current),
Queries.getRoundRewards(round.current),
getDelegates(),
(_accounts, _blocks, _rewards, _delegates) => {
const delegates = {};
// Get genesis accounts address - should be senderId from first transaction
const genesisAddress =
library.genesisblock.block.transactions[0].senderId;
// Inject and normalize genesis account to delegates (it's not a delegate, but will get rewards split from first round)
const genesisPublicKey = _accounts[
genesisAddress
].publicKey.toString('hex');
_delegates[genesisPublicKey] = _accounts[genesisAddress];
_delegates[genesisPublicKey].publicKey = genesisPublicKey;
// Get expected rewards for round (calculated)
const expectedRewards = getExpectedRoundRewards(_blocks);
// Rewards from database table rounds_rewards should match calculated rewards
expect(_rewards).to.deep.equal(expectedRewards);
// Because first block of round 1 is genesis block - there will be always 1 outsider in first round
expect(_delegates[round.outsiderPublicKey].missedBlocks).to.equal(
1
);
_.map(_delegates, d => {
if (d.fees > 0 || d.rewards > 0) {
// Normalize database data
delegates[d.publicKey] = {
publicKey: d.publicKey,
fees: d.fees,
rewards: d.rewards,
};
}
});
// Compare mem_accounts delegates with calculated
expect(delegates).to.deep.equal(expectedRewards);
}
);
});
it('should generate a different delegate list than one generated at the beginning of round 1', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return generateDelegateListPromise(lastBlock.height + 1, null).then(
delegatesList => {
expect(delegatesList).to.not.deep.equal(round.delegatesList);
}
);
});
});
describe('delete last block of round 1, block contains 1 transaction type SEND', () => {
let lastBlock;
before(() => {
lastBlock = library.modules.blocks.lastBlock.get();
// Delete last block of round
return deleteLastBlockPromise();
});
it('transactions from deleted block should be added back to transaction pool', done => {
const transactionPool = library.rewiredModules.transactions.__get__(
'__private.transactionPool'
);
_.each(lastBlock.transactions, transaction => {
// Transaction should be present in transaction pool
expect(transactionPool.transactionInPool(transaction.id)).to.equal(
true
);
// Transaction should be present in queued list
expect(transactionPool.queued.index[transaction.id]).to.be.a(
'number'
);
// Remove transaction from pool
transactionPool.removeUnconfirmedTransaction(transaction.id);
});
done();
});
it('round rewards should be empty (rewards for round 1 deleted from rounds_rewards table)', () => {
return expect(
Queries.getRoundRewards(round.current)
).to.eventually.deep.equal({});
});
// FIXME: Unskip that test after https://github.com/LiskHQ/lisk/issues/1781 is closed
// eslint-disable-next-line
it.skip('mem_accounts table should be equal to one generated before last block of round deletion', () => {
return getMemAccounts().then(_accounts => {
expect(_accounts).to.deep.equal(round.accountsBeforeLastBlock);
});
});
it('delegates list should be equal to one generated at the beginning of round 1', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return generateDelegateListPromise(lastBlock.height + 1, null).then(
delegatesList => {
expect(delegatesList).to.deep.equal(round.delegatesList);
}
);
});
});
describe('round rollback when forger of last block of round is unvoted', () => {
let lastBlock;
let lastBlockForger;
const transactions = [];
before(done => {
// Set last block forger
localCommon.getNextForger(library, null, (err, delegatePublicKey) => {
lastBlockForger = delegatePublicKey;
// Create unvote transaction
const transaction = elements.transaction.castVotes({
passphrase: accountsFixtures.genesis.password,
unvotes: [lastBlockForger],
});
transactions.push(transaction);
lastBlock = library.modules.blocks.lastBlock.get();
// Delete one block more
return deleteLastBlockPromise().then(() => {
done();
});
});
});
it('last block height should be at height 99 after deleting one more block', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return expect(lastBlock.height).to.equal(99);
});
// FIXME: Unskip that test after https://github.com/LiskHQ/lisk/issues/1782 is closed
// eslint-disable-next-line
it.skip('transactions from deleted block should be added back to transaction pool', done => {
const transactionPool = library.rewiredModules.transactions.__get__(
'__private.transactionPool'
);
_.each(lastBlock.transactions, transaction => {
// Transaction should be present in transaction pool
expect(transactionPool.transactionInPool(transaction.id)).to.equal(
true
);
// Transaction should be present in queued list
expect(transactionPool.queued.index[transaction.id]).to.be.a(
'number'
);
// Remove transaction from pool
transactionPool.removeUnconfirmedTransaction(transaction.id);
});
done();
});
it('expected forger of last block of round should have proper votes', () => {
return getDelegates().then(delegates => {
const delegate = delegates[lastBlockForger];
expect(delegate.vote).to.equal('10000000000000000');
});
});
tickAndValidate(transactions);
describe('after forging 1 block', () => {
it('should unvote expected forger of last block of round (block data)', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return Queries.getFullBlock(lastBlock.height).then(blocks => {
expect(blocks[0].transactions[0].asset.votes[0]).to.equal(
`-${lastBlockForger}`
);
});
});
it('expected forger of last block of round should still have proper votes', () => {
return getDelegates().then(delegates => {
const delegate = delegates[lastBlockForger];
expect(delegate.vote).to.equal('10000000000000000');
});
});
});
tickAndValidate([]);
describe('after round finish', () => {
it('delegates list should be different than one generated at the beginning of round 1', () => {
const lastBlock = library.modules.blocks.lastBlock.get();
return generateDelegateListPromise(lastBlock.height + 1, null).then(
delegatesList => {
expect(delegatesList).to.not.deep.equal(round.delegatesList);
}
);
});
it('forger of last block of previous round should have vote = 0', () => {
return getDelegates().then(_delegates => {
expect(_delegates[round.outsiderPublicKey].missedBlocks).to.equal(
1
);
return expect(_delegates[lastBlockForger].vote).to.equal('0');
});
});
});
describe('after last block of round is deleted', () => {
it('delegates list should be equal to one generated at the beginning of round 1', () => {
return deleteLastBlockPromise().then(() => {
const lastBlock = library.modules.blocks.lastBlock.get();
return generateDelegateListPromise(lastBlock.height, null).then(
delegatesList => {
expect(delegatesList).to.deep.equal(round.delegatesList);
}
);
});
});
it('expected forger of last block of round should have proper votes again', () => {
return getDelegates().then(_delegates => {
expect(_delegates[round.outsiderPublicKey].missedBlocks).to.equal(
0
);
return expect(_delegates[lastBlockForger].vote).to.equal(
'10000000000000000'
);
});
});
});
});
describe('round rollback when forger of last block of round is replaced in last block of round', () => {
let lastBlock;
let lastBlockForger;
let tmpAccount;
const transactions = {
transfer: [],
delegate: [],
vote: [],
};
before(done => {
// Set last block forger
localCommon.getNextForger(library, null, (err, delegatePublicKey) => {
lastBlock = library.modules.blocks.lastBlock.get();
lastBlockForger = delegatePublicKey;
tmpAccount = randomUtil.account();
// Create transfer transaction (fund new account)
let transaction = elements.transaction.transfer({
recipientId: tmpAccount.address,
amount: 5000000000,
passphrase: accountsFixtures.genesis.password,
});
transactions.transfer.push(transaction);
// Create register delegate transaction
transaction = elements.transaction.registerDelegate({
passphrase: tmpAccount.password,
username: 'my_little_delegate',
});
transactions.delegate.push(transaction);
transaction = elements.transaction.castVotes({
passphrase: accountsFixtures.genesis.password,
unvotes: [lastBlockForger],
votes: [tmpAccount.publicKey],
});
transactions.vote.push(transaction);
// Delete two blocks more
deleteLastBlockPromise().then(() => {
// done();
deleteLastBlockPromise().then(() => {
done();
});
});
});
});
tickAndValidate(transactions.transfer);
tickAndValidate(transactions.delegate);
tickAndValidate(transactions.vote);
describe('after round finish', () => {
let delegatesList;
let delegates;
before(() => {
lastBlock = library.modules.blocks.lastBlock.get();
return Promise.join(
getDelegates(),
generateDelegateListPromise(lastBlock.height + 1, null),
(_delegates, _delegatesList) => {
delegatesList = _delegatesList;
delegates = _delegates;
}
);
});
it('last block height should be at height 101', () => {
return expect(lastBlock.height).to.equal(101);
});
// FIXME: Unskip that tests and fix the order (or not) after issue https://github.com/LiskHQ/lisk-js/issues/625 is closed
// eslint-disable-next-line
it.skip('after finishing round, should unvote expected forger of last block of round and vote new delegate (block data)', () => {
return Queries.getFullBlock(lastBlock.height).then(blocks => {
expect(blocks[0].transactions[0].asset.votes).to.deep.equal([
`-${lastBlockForger}`,
`+${tmpAccount.publicKey}`,
]);
});
});
it('delegates list should be different than one generated at the beginning of round 1', () => {
return expect(delegatesList).to.not.deep.equal(round.delegatesList);
});
it('unvoted delegate should not be on list', () => {
return expect(delegatesList).to.not.contain(lastBlockForger);
});
it('delegate who replaced unvoted one should be on list', () => {
return expect(delegatesList).to.contain(tmpAccount.publicKey);
});
it('forger of last block of previous round should have vote = 0', () => {
expect(delegates[round.outsiderPublicKey].missedBlocks).to.equal(1);
return expect(delegates[lastBlockForger].vote).to.equal('0');
});
it('delegate who replaced last block forger should have proper votes', () => {
return expect(
Number(delegates[tmpAccount.publicKey].vote)
).to.be.above(0);
});
});
describe('after last block of round is deleted', () => {
it('delegates list should be equal to one generated at the beginning of round 1', () => {
return deleteLastBlockPromise().then(() => {
lastBlock = library.modules.blocks.lastBlock.get();
return generateDelegateListPromise(lastBlock.height, null).then(
delegatesList => {
expect(delegatesList).to.deep.equal(round.delegatesList);
}
);
});
});
it('last block height should be at height 100', () => {
return expect(lastBlock.height).to.equal(100);
});
it('expected forger of last block of round should have proper votes again', () => {
return getDelegates().then(_delegates => {
expect(_delegates[round.outsiderPublicKey].missedBlocks).to.equal(
0
);
return expect(_delegates[lastBlockForger].vote).to.equal(
'10000000000000000'
);
});
});
// FIXME: Unskip that test after issue https://github.com/LiskHQ/lisk/issues/1783 is closed
// eslint-disable-next-line
it.skip('delegate who replaced last block forger should have vote, producedBlocks, missedBlocks = 0', () => {
return getDelegates().then(_delegates => {
expect(_delegates[tmpAccount.publicKey].vote).to.equal('0');
expect(_delegates[tmpAccount.publicKey].producedBlocks).to.equal(0);
expect(_delegates[tmpAccount.publicKey].missedBlocks).to.equal(0);
});
});
});