@@ -59,13 +59,25 @@ contract('PolyDistribution', function(accounts) {
59
59
let account_presale = accounts [ 1 ] ;
60
60
let account_founder1 = accounts [ 2 ] ;
61
61
let account_founder2 = accounts [ 3 ] ;
62
- let account_airdrop1 = accounts [ 4 ] ;
63
- let account_airdrop2 = accounts [ 5 ] ;
64
62
let account_bonus1 = accounts [ 6 ] ;
65
63
let account_advisor1 = accounts [ 7 ] ;
66
64
let account_advisor2 = accounts [ 8 ] ;
67
65
let account_reserve = accounts [ 9 ] ;
68
66
67
+ let account_admin1 = accounts [ 4 ] ;
68
+
69
+ let airdrop_massive = new Array ( ) ;
70
+ for ( var i = 0 ; i < 50 ; i ++ ) {
71
+ var acc = web3 . eth . accounts . create ( ) ;
72
+ airdrop_massive [ i ] = acc . address ;
73
+ }
74
+
75
+ let airdrop_massive2 = new Array ( ) ;
76
+ for ( var i = 0 ; i < 50 ; i ++ ) {
77
+ var acc = web3 . eth . accounts . create ( ) ;
78
+ airdrop_massive2 [ i ] = acc . address ;
79
+ }
80
+
69
81
let allocationStruct = {
70
82
AllocationSupply : 0 , // Type of allocation
71
83
endCliff : 0 , // Tokens are locked until
@@ -122,10 +134,6 @@ contract('PolyDistribution', function(accounts) {
122
134
oldPresaleSupply = await polyDistribution . AVAILABLE_FOUNDER_SUPPLY ( { from :account_owner } ) ;
123
135
allocationTypeNum = 1 ;
124
136
break ;
125
- case "AIRDROP" :
126
- oldPresaleSupply = await polyDistribution . AVAILABLE_AIRDROP_SUPPLY ( { from :account_owner } ) ;
127
- allocationTypeNum = 2 ;
128
- break ;
129
137
case "ADVISOR" :
130
138
oldPresaleSupply = await polyDistribution . AVAILABLE_ADVISOR_SUPPLY ( { from :account_owner } ) ;
131
139
allocationTypeNum = 3 ;
@@ -169,9 +177,6 @@ contract('PolyDistribution', function(accounts) {
169
177
case "FOUNDER" :
170
178
newPresaleSupply = await polyDistribution . AVAILABLE_FOUNDER_SUPPLY ( { from :account_owner } ) ;
171
179
break ;
172
- case "AIRDROP" :
173
- newPresaleSupply = await polyDistribution . AVAILABLE_AIRDROP_SUPPLY ( { from :account_owner } ) ;
174
- break ;
175
180
case "ADVISOR" :
176
181
newPresaleSupply = await polyDistribution . AVAILABLE_ADVISOR_SUPPLY ( { from :account_owner } ) ;
177
182
break ;
@@ -265,30 +270,6 @@ contract('PolyDistribution', function(accounts) {
265
270
266
271
} ) ;
267
272
268
- describe ( "AIRDROP 1 Allocation" , async function ( ) {
269
-
270
- let tokensToAllocate = 50 ;
271
- doAllocationTests ( "AIRDROP" , tokensToAllocate , account_airdrop1 ) ;
272
-
273
- after ( async ( ) => {
274
- oldTotalSupply = new BigNumber ( oldTotalSupply . minus ( tokensToAllocate ) ) ;
275
- grantTotalAllocationSum = new BigNumber ( grantTotalAllocationSum . plus ( tokensToAllocate ) ) ;
276
- } ) ;
277
-
278
- } ) ;
279
-
280
- describe ( "AIRDROP 2 Allocation" , async function ( ) {
281
-
282
- let tokensToAllocate = 75 ;
283
- doAllocationTests ( "AIRDROP" , tokensToAllocate , account_airdrop2 ) ;
284
-
285
- after ( async ( ) => {
286
- oldTotalSupply = new BigNumber ( oldTotalSupply . minus ( tokensToAllocate ) ) ;
287
- grantTotalAllocationSum = new BigNumber ( grantTotalAllocationSum . plus ( tokensToAllocate ) ) ;
288
- } ) ;
289
-
290
- } ) ;
291
-
292
273
describe ( "ADVISOR 1 Allocation" , async function ( ) {
293
274
294
275
let tokensToAllocate = 3333 ;
@@ -485,100 +466,76 @@ contract('PolyDistribution', function(accounts) {
485
466
486
467
} ) ;
487
468
488
- } ) ;
489
-
490
- describe ( "Withdraw 6 months after allocations" , async function ( ) {
469
+ it ( "should perform the AIRDROP for 50 accounts" , async function ( ) {
470
+ await polyDistribution . airdropTokens ( airdrop_massive , { from :accounts [ 0 ] } ) ;
491
471
492
- before ( async ( ) => {
493
- //Time travel to startTime + 6 months;
494
- await timeTravel ( ( 3600 * 24 * 180 ) ) // Move forward in time so the crowdsale has started
495
- await mineBlock ( ) // workaround for https://github.com/ethereumjs/testrpc/issues/336
496
472
} ) ;
497
473
498
- it ( "should withdraw AIRDROP tokens" , async function ( ) {
499
- let currentBlock = await web3 . eth . getBlock ( "latest" ) ;
500
-
501
- // Check token balance for account before calling transferTokens, then check afterwards.
502
- let tokenBalance = await polyToken . balanceOf ( account_airdrop1 , { from :accounts [ 0 ] } ) ;
503
- await polyDistribution . transferTokens ( account_airdrop1 , { from :accounts [ 0 ] } ) ;
504
- let new_tokenBalance = await polyToken . balanceOf ( account_airdrop1 , { from :accounts [ 0 ] } ) ;
474
+ it ( "airdrop accounts should have 250 POLY each" , async function ( ) {
475
+ for ( var i = 0 ; i < airdrop_massive . length ; i ++ ) {
476
+ let tokenBalance = await polyToken . balanceOf ( airdrop_massive [ i ] , { from :accounts [ 0 ] } ) ;
477
+ assert . equal ( tokenBalance . toString ( 10 ) , "250000000000000000000" ) ;
505
478
506
- //PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
507
- let allocation = await polyDistribution . allocations ( account_airdrop1 , { from : account_owner } ) ;
479
+ }
480
+ } ) ;
508
481
509
- logWithdrawalData ( "AIRDROP" , currentBlock . timestamp , account_airdrop1 , contractStartTime , allocation , new_tokenBalance ) ;
482
+ it ( "should set another admin for airdrop" , async function ( ) {
483
+ await polyDistribution . setAirdropAdmin ( account_admin1 , true , { from :accounts [ 0 ] } ) ;
510
484
511
- let expectedTokenBalance = calculateExpectedTokens ( allocation , currentBlock . timestamp , contractStartTime ) ;
512
- assert . equal ( expectedTokenBalance . toString ( 10 ) , new_tokenBalance . toString ( 10 ) ) ;
513
485
} ) ;
514
486
515
- } ) ;
487
+ it ( "should perform the AIRDROP for 50 accounts with an admin" , async function ( ) {
488
+ await polyDistribution . airdropTokens ( airdrop_massive2 , { from :account_admin1 } ) ;
489
+
490
+ } ) ;
516
491
517
- describe ( "Withdraw 9 months after allocations" , async function ( ) {
492
+ it ( "airdrop accounts should have 250 POLY each" , async function ( ) {
493
+ for ( var i = 0 ; i < airdrop_massive2 . length ; i ++ ) {
494
+ let tokenBalance = await polyToken . balanceOf ( airdrop_massive2 [ i ] , { from :accounts [ 0 ] } ) ;
495
+ assert . equal ( tokenBalance . toString ( 10 ) , "250000000000000000000" ) ;
518
496
519
- before ( async ( ) => {
520
- //Time travel to startTime + 9 months;
521
- await timeTravel ( ( 3600 * 24 * 90 ) ) // Move forward in time so the crowdsale has started
522
- await mineBlock ( ) // workaround for https://github.com/ethereumjs/testrpc/issues/336
497
+ }
523
498
} ) ;
524
499
525
- it ( "should fail to withdraw AIRDROP 1 tokens as they have already been fully distributed" , async function ( ) {
526
500
527
- try {
528
- await polyDistribution . transferTokens ( account_airdrop1 , { from :accounts [ 0 ] } ) ;
529
- } catch ( error ) {
530
- let currentBlock = await web3 . eth . getBlock ( "latest" ) ;
531
501
532
- let new_tokenBalance = await polyToken . balanceOf ( account_airdrop1 , { from :accounts [ 0 ] } ) ;
533
- let allocation = await polyDistribution . allocations ( account_airdrop1 , { from :account_owner } ) ;
534
- logWithdrawalData ( "AIRDROP" , currentBlock . timestamp , account_airdrop1 , contractStartTime , allocation , new_tokenBalance ) ;
502
+ } ) ;
535
503
536
- logError ( "✅ Failed to withdraw" ) ;
537
- return true ;
538
- }
539
- throw new Error ( "I should never see this!" )
504
+ describe ( "Withdraw 8 months after allocations" , async function ( ) {
540
505
506
+ before ( async ( ) => {
507
+ //Time travel to startTime + 8 months;
508
+ await timeTravel ( ( 3600 * 24 * 240 ) ) // Move forward in time so the crowdsale has started
509
+ await mineBlock ( ) // workaround for https://github.com/ethereumjs/testrpc/issues/336
541
510
} ) ;
542
511
543
- // it("should withdraw AIRDROP tokens", async function () {
544
- // let currentBlock = await web3.eth.getBlock("latest");
545
- //
546
- // // Check token balance for account before calling transferTokens, then check afterwards.
547
- // let tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
548
- // await polyDistribution.transferTokens(account_airdrop1,{from:accounts[0]});
549
- // let new_tokenBalance = await polyToken.balanceOf(account_airdrop1,{from:accounts[0]});
550
- //
551
- // //PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
552
- // let allocation = await polyDistribution.allocations(account_airdrop1,{from:account_owner});
553
- //
554
- // logWithdrawalData("AIRDROP",currentBlock.timestamp,account_airdrop1,contractStartTime,allocation,new_tokenBalance);
555
- //
556
- // });
557
-
558
- it ( "should withdraw AIRDROP tokens" , async function ( ) {
512
+ it ( "should withdraw RESERVE tokens" , async function ( ) {
559
513
let currentBlock = await web3 . eth . getBlock ( "latest" ) ;
560
514
561
515
// Check token balance for account before calling transferTokens, then check afterwards.
562
- let tokenBalance = await polyToken . balanceOf ( account_airdrop2 , { from :accounts [ 0 ] } ) ;
563
- await polyDistribution . transferTokens ( account_airdrop2 , { from :accounts [ 0 ] } ) ;
564
- let new_tokenBalance = await polyToken . balanceOf ( account_airdrop2 , { from :accounts [ 0 ] } ) ;
516
+ let tokenBalance = await polyToken . balanceOf ( account_reserve , { from :accounts [ 0 ] } ) ;
517
+ await polyDistribution . transferTokens ( account_reserve , { from :accounts [ 0 ] } ) ;
518
+ let new_tokenBalance = await polyToken . balanceOf ( account_reserve , { from :accounts [ 0 ] } ) ;
565
519
566
520
//PRESALE tokens are completely distributed once allocated as they have no vesting period nor cliff
567
- let allocation = await polyDistribution . allocations ( account_airdrop2 , { from :account_owner } ) ;
521
+ let allocation = await polyDistribution . allocations ( account_reserve , { from :account_owner } ) ;
568
522
569
- logWithdrawalData ( "AIRDROP " , currentBlock . timestamp , account_airdrop2 , contractStartTime , allocation , new_tokenBalance ) ;
523
+ logWithdrawalData ( "RESERVE " , currentBlock . timestamp , account_reserve , contractStartTime , allocation , new_tokenBalance ) ;
570
524
571
525
let expectedTokenBalance = calculateExpectedTokens ( allocation , currentBlock . timestamp , contractStartTime ) ;
572
526
assert . equal ( expectedTokenBalance . toString ( 10 ) , new_tokenBalance . toString ( 10 ) ) ;
573
527
} ) ;
574
528
529
+
575
530
} ) ;
576
531
532
+
533
+
577
534
describe ( "Withdraw 15 months after allocations" , async function ( ) {
578
535
579
536
before ( async ( ) => {
580
- //Time travel to startTime + 9 months;
581
- await timeTravel ( ( 3600 * 24 * 180 ) ) // Move forward in time so the crowdsale has started
537
+ //Time travel to startTime + 15 months;
538
+ await timeTravel ( ( 3600 * 24 * 210 ) ) // Move forward in time so the crowdsale has started
582
539
await mineBlock ( ) // workaround for https://github.com/ethereumjs/testrpc/issues/336
583
540
} ) ;
584
541
0 commit comments