2017-10-23 21:25:06 +00:00
/* eslint-env mocha */
/* eslint-disable no-await-in-loop */
const TestRPC = require ( 'ethereumjs-testrpc' ) ;
const Web3 = require ( 'web3' ) ;
const chai = require ( 'chai' ) ;
const liquidpledging = require ( '../index.js' ) ;
2018-01-22 19:00:30 +00:00
const EternalStorage = require ( '../js/eternalStorage' ) ;
const PledgeAdmins = require ( '../js/pledgeAdmins' ) ;
2017-10-23 21:25:06 +00:00
const LiquidPledging = liquidpledging . LiquidPledgingMock ;
const LiquidPledgingState = liquidpledging . LiquidPledgingState ;
2018-01-25 16:31:13 +00:00
const LPVault = liquidpledging . LPVault ;
2017-10-23 21:25:06 +00:00
const assertFail = require ( './helpers/assertFail' ) ;
const assert = chai . assert ;
const printState = async ( liquidPledgingState ) => {
const st = await liquidPledgingState . getState ( ) ;
console . log ( JSON . stringify ( st , null , 2 ) ) ;
} ;
2017-10-24 16:16:59 +00:00
describe ( 'DelegationChain test' , function ( ) {
2017-10-23 21:25:06 +00:00
this . timeout ( 0 ) ;
let testrpc ;
let web3 ;
let accounts ;
let liquidPledging ;
let liquidPledgingState ;
let vault ;
let giver1 ;
let giver2 ;
let delegate1 ;
let delegate2 ;
let delegate3 ;
let adminProject1 ;
2018-01-22 19:00:30 +00:00
const gasUsage = { } ;
2017-10-23 21:25:06 +00:00
before ( async ( ) => {
testrpc = TestRPC . server ( {
ws : true ,
2018-01-22 19:00:30 +00:00
gasLimit : 6700000 ,
2017-10-23 21:25:06 +00:00
total _accounts : 10 ,
} ) ;
2018-01-22 19:00:30 +00:00
testrpc . listen ( 8545 , '127.0.0.1' ) ;
2017-10-23 21:25:06 +00:00
2018-01-22 19:00:30 +00:00
web3 = new Web3 ( 'ws://localhost:8545' ) ;
2017-10-23 21:25:06 +00:00
accounts = await web3 . eth . getAccounts ( ) ;
giver1 = accounts [ 1 ] ;
delegate1 = accounts [ 2 ] ;
delegate2 = accounts [ 3 ] ;
delegate3 = accounts [ 4 ] ;
adminProject1 = accounts [ 5 ] ;
giver2 = accounts [ 6 ] ;
} ) ;
after ( ( done ) => {
testrpc . close ( ) ;
2018-01-22 19:00:30 +00:00
// console.log(gasUsage);
2017-10-23 21:25:06 +00:00
done ( ) ;
} ) ;
it ( 'Should deploy LiquidPledging contract' , async ( ) => {
2018-01-25 16:31:13 +00:00
vault = await LPVault . new ( web3 , accounts [ 0 ] , accounts [ 1 ] ) ;
const storage = await EternalStorage . new ( web3 , accounts [ 0 ] , accounts [ 1 ] ) ;
2018-01-22 19:00:30 +00:00
2018-01-25 16:31:13 +00:00
liquidPledging = await LiquidPledging . new ( web3 , storage . $address , vault . $address , accounts [ 0 ] , accounts [ 0 ] , { gas : 6700000 } )
2018-01-22 19:00:30 +00:00
await storage . changeOwnership ( liquidPledging . $address ) ;
2017-10-23 21:25:06 +00:00
await vault . setLiquidPledging ( liquidPledging . $address ) ;
2018-01-25 16:31:13 +00:00
2017-10-23 21:25:06 +00:00
liquidPledgingState = new LiquidPledgingState ( liquidPledging ) ;
} ) ;
it ( 'Should add pledgeAdmins' , async ( ) => {
2017-10-24 00:02:47 +00:00
await liquidPledging . addGiver ( 'Giver1' , 'URLGiver1' , 86400 , 0 , { from : giver1 } ) ; // pledgeAdmin 1
await liquidPledging . addDelegate ( 'Delegate1' , 'URLDelegate1' , 259200 , 0 , { from : delegate1 } ) ; // pledgeAdmin 2
2017-10-23 21:25:06 +00:00
await liquidPledging . addDelegate ( 'Delegate2' , 'URLDelegate2' , 0 , 0 , { from : delegate2 } ) ; // pledgeAdmin 3
await liquidPledging . addDelegate ( 'Delegate3' , 'URLDelegate3' , 0 , 0 , { from : delegate3 } ) ; // pledgeAdmin 4
await liquidPledging . addProject ( 'Project1' , 'URLProject1' , adminProject1 , 0 , 0 , 0 , { from : adminProject1 } ) ; // pledgeAdmin 5
await liquidPledging . addGiver ( 'Giver2' , 'URLGiver2' , 0 , 0 , { from : giver2 } ) ; // pledgeAdmin 6
const nAdmins = await liquidPledging . numberOfPledgeAdmins ( ) ;
assert . equal ( nAdmins , 6 ) ;
} ) ;
it ( 'Should allow previous delegate to transfer pledge' , async ( ) => {
2018-01-22 19:00:30 +00:00
await liquidPledging . donate ( 1 , 2 , { from : giver1 , value : 1000 } ) ;
2017-10-23 21:25:06 +00:00
// add delegate2 to chain
2018-01-22 19:00:30 +00:00
await liquidPledging . transfer ( 2 , 2 , 1000 , 3 , { from : delegate1 } ) ;
2017-10-23 21:25:06 +00:00
// delegate 1 transfer pledge back to self, thus undelegating delegate2
2018-01-22 19:00:30 +00:00
await liquidPledging . transfer ( 2 , 3 , 1000 , 2 , { from : delegate1 } ) ;
2017-10-23 21:25:06 +00:00
const st = await liquidPledgingState . getState ( ) ;
assert . equal ( st . pledges [ 2 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 3 ] . amount , 0 ) ;
} ) ;
it ( 'Should allow any delegate in chain to transfer pledge and undelegate all delegates occurring later in chain' , async ( ) => {
// add delegate2 to chain
await liquidPledging . transfer ( 2 , 2 , 1000 , 3 , { from : delegate1 , $extraGas : 100000 } ) ;
// add delegate3 to chain
await liquidPledging . transfer ( 3 , 3 , 1000 , 4 , { from : delegate2 , $extraGas : 100000 } ) ;
// delegate 1 transfer pledge to project1. should also undelegate all delegates occurring later in chain
await liquidPledging . transfer ( 2 , 4 , 1000 , 5 , { from : delegate1 , $extraGas : 200000 } ) ;
const st = await liquidPledgingState . getState ( ) ;
assert . equal ( st . pledges [ 5 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 5 ] . intendedProject , 5 ) ;
assert . equal ( st . pledges [ 5 ] . delegates . length , 1 ) ;
assert . equal ( st . pledges [ 5 ] . delegates [ 0 ] . id , 2 ) ;
assert . equal ( st . pledges [ 3 ] . amount , 0 ) ;
assert . equal ( st . pledges [ 4 ] . amount , 0 ) ;
} ) ;
it ( 'Should throw if delegate2 is not in delegationChain' , async ( ) => {
await assertFail ( async ( ) => await liquidPledging . transfer ( 3 , 5 , 1000 , 1 , { from : delegate2 } ) ) ;
} ) ;
it ( 'Delegate1 should not be able to transfer to another giver' , async ( ) => {
await assertFail ( async ( ) => await liquidPledging . transfer ( 2 , 5 , 1000 , 6 , { from : delegate1 } ) ) ;
} ) ;
it ( 'Delegate1 should be able to transfer pledge back to owner' , async ( ) => {
await liquidPledging . transfer ( 2 , 5 , 1000 , 1 , { from : delegate1 , $extraGas : 100000 } ) ;
const st = await liquidPledgingState . getState ( ) ;
assert . equal ( st . pledges [ 1 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 1 ] . delegates . length , 0 ) ;
assert . equal ( st . pledges [ 5 ] . amount , 0 ) ;
} ) ;
it ( 'Delegate1 should be able to change delegation' , async ( ) => {
// add delegate1 to chain
await liquidPledging . transfer ( 1 , 1 , 1000 , 2 , { from : giver1 , $extraGas : 100000 } ) ;
// delegate1 add delegate2 to chain
await liquidPledging . transfer ( 2 , 2 , 1000 , 3 , { from : delegate1 , $extraGas : 100000 } ) ;
// delegate1 remove delegate2 and add delegate3 to chain
await liquidPledging . transfer ( 2 , 3 , 1000 , 4 , { from : delegate1 , $extraGas : 100000 } ) ;
const st = await liquidPledgingState . getState ( ) ;
assert . equal ( st . pledges [ 1 ] . amount , 0 ) ;
assert . equal ( st . pledges [ 6 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 6 ] . delegates . length , 2 ) ;
assert . equal ( st . pledges [ 6 ] . delegates [ 0 ] . id , 2 ) ;
assert . equal ( st . pledges [ 6 ] . delegates [ 1 ] . id , 4 ) ;
} ) ;
it ( 'delegate in chain should be able to delegate to previous delegate, thus undelegating themselves and any delegate after the previous delegate' , async ( ) => {
// add delegate2 to chain
await liquidPledging . transfer ( 4 , 6 , 1000 , 3 , { from : delegate3 , $extraGas : 100000 } ) ;
// delegate2 transfer back to delegate1, thus undelegating delegate2 & delegate3
await liquidPledging . transfer ( 3 , 7 , 1000 , 2 , { from : delegate2 , $extraGas : 100000 } ) ;
const st = await liquidPledgingState . getState ( ) ;
assert . equal ( st . pledges [ 7 ] . amount , 0 ) ;
assert . equal ( st . pledges [ 2 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 2 ] . delegates . length , 1 ) ;
assert . equal ( st . pledges [ 2 ] . delegates [ 0 ] . id , 2 ) ;
} ) ;
2017-10-23 23:17:39 +00:00
it ( 'Should not append delegate on veto delegation' , async ( ) => {
// propose the delegation
2018-01-22 19:00:30 +00:00
await liquidPledging . transfer ( 2 , 2 , 1000 , 5 , { from : delegate1 } ) ;
2017-10-23 23:17:39 +00:00
const origPledge = await liquidPledging . getPledge ( 2 ) ;
assert . equal ( origPledge . amount , '0' ) ;
// veto the delegation
2018-01-22 19:00:30 +00:00
await liquidPledging . transfer ( 1 , 5 , 1000 , 2 , { from : giver1 } ) ;
2017-10-23 23:17:39 +00:00
const currentPledge = await liquidPledging . getPledge ( 2 ) ;
assert . equal ( currentPledge . amount , '1000' ) ;
assert . equal ( currentPledge . nDelegates , 1 ) ;
} ) ;
2017-10-24 00:02:47 +00:00
it ( 'Pledge should have longest commitTime in delegation chain' , async ( ) => {
// delegate1 add delegate2 to chain
await liquidPledging . transfer ( 2 , 2 , 1000 , 3 , { from : delegate1 , $extraGas : 100000 } ) ;
2017-10-24 17:07:12 +00:00
// set the time
2017-10-24 00:02:47 +00:00
const now = Math . floor ( new Date ( ) . getTime ( ) / 1000 ) ;
2017-10-24 17:07:12 +00:00
await liquidPledging . setMockedTime ( now ) ;
// propose project delegation
2017-10-24 00:02:47 +00:00
await liquidPledging . transfer ( 3 , 3 , 1000 , 5 , { from : delegate2 , $extraGas : 100000 } ) ;
const pledge = await liquidPledging . getPledge ( 8 ) ;
2017-10-24 17:07:12 +00:00
assert . equal ( pledge . commitTime , now + 259200 ) ; // 259200 is longest commitTime in delegationChain
2017-11-10 15:33:12 +00:00
} ) ;
it ( 'delegation chain should remain the same when owner veto\'s delegation' , async ( ) => {
2017-10-23 21:26:38 +00:00
// owner veto delegation to project1
2017-11-10 15:33:12 +00:00
await liquidPledging . transfer ( 1 , 8 , 1000 , 3 , { from : giver1 , $extraGas : 100000 } ) ;
2017-10-23 21:26:38 +00:00
const st = await liquidPledgingState . getState ( ) ;
2017-11-10 15:33:12 +00:00
assert . equal ( st . pledges [ 8 ] . amount , 0 ) ;
assert . equal ( st . pledges [ 3 ] . amount , 1000 ) ;
assert . equal ( st . pledges [ 3 ] . delegates . length , 2 ) ;
assert . equal ( st . pledges [ 3 ] . delegates [ 0 ] . id , 2 ) ;
2017-11-10 16:39:58 +00:00
assert . equal ( st . pledges [ 3 ] . delegates [ 1 ] . id , 3 ) ;
} ) ;
it ( 'delegation chain should remain the same upto delegate of reciever when owner veto\'s delegation' , async ( ) => {
// propose project1 delegation
await liquidPledging . transfer ( 3 , 3 , 1000 , 5 , { from : delegate2 , $extraGas : 100000 } ) ;
// owner veto delegation to project1 and remove delegate2
await liquidPledging . transfer ( 1 , 8 , 1000 , 2 , { from : giver1 , $extraGas : 100000 } ) ;
const pledge = await liquidPledging . getPledge ( 2 ) ;
assert . equal ( pledge . amount , 1000 ) ;
} ) ;
it ( 'owner should be able to transfer pledge to a new delegate at any time' , async ( ) => {
// propose project1 delegation
await liquidPledging . transfer ( 2 , 2 , 1000 , 5 , { from : delegate1 , $extraGas : 100000 } ) ;
// owner veto delegation to project1 and assign new delgate
await liquidPledging . transfer ( 1 , 9 , 1000 , 3 , { from : giver1 , $extraGas : 100000 } ) ;
const pledge = await liquidPledging . getPledge ( 10 ) ;
assert . equal ( pledge . amount , 1000 ) ;
assert . equal ( pledge . nDelegates , 1 ) ;
// owner assign new delegate w/o vetoing intendedProject
await liquidPledging . transfer ( 1 , 10 , 1000 , 2 , { from : giver1 , $extraGas : 100000 } ) ;
const pledge2 = await liquidPledging . getPledge ( 2 ) ;
assert . equal ( pledge2 . amount , 1000 ) ;
2017-11-10 15:33:12 +00:00
} ) ;
2017-10-23 21:25:06 +00:00
} ) ;