2017-10-19 16:49:16 +00:00
|
|
|
/* eslint-env mocha */
|
|
|
|
/* eslint-disable no-await-in-loop */
|
2018-01-25 23:09:58 +00:00
|
|
|
const TestRPC = require("ganache-cli");
|
2017-10-19 16:49:16 +00:00
|
|
|
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-19 16:49:16 +00:00
|
|
|
const assertFail = require('./helpers/assertFail');
|
|
|
|
|
|
|
|
const LiquidPledging = liquidpledging.LiquidPledgingMock;
|
|
|
|
const LiquidPledgingState = liquidpledging.LiquidPledgingState;
|
2018-01-25 16:31:13 +00:00
|
|
|
const LPVault = liquidpledging.LPVault;
|
2017-10-19 16:49:16 +00:00
|
|
|
const assert = chai.assert;
|
|
|
|
|
|
|
|
const printState = async (liquidPledgingState) => {
|
|
|
|
const st = await liquidPledgingState.getState();
|
|
|
|
console.log(JSON.stringify(st, null, 2));
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('LiquidPledging cancelPledge normal scenario', function () {
|
|
|
|
this.timeout(0);
|
|
|
|
|
|
|
|
let testrpc;
|
|
|
|
let web3;
|
|
|
|
let accounts;
|
|
|
|
let liquidPledging;
|
|
|
|
let liquidPledgingState;
|
|
|
|
let vault;
|
|
|
|
let giver1;
|
|
|
|
let adminProject1;
|
|
|
|
let adminProject2;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
testrpc = TestRPC.server({
|
|
|
|
ws: true,
|
2018-01-22 19:00:30 +00:00
|
|
|
gasLimit: 6700000,
|
2017-10-19 16:49:16 +00:00
|
|
|
total_accounts: 10,
|
|
|
|
});
|
|
|
|
|
|
|
|
testrpc.listen(8546, '127.0.0.1');
|
|
|
|
|
|
|
|
web3 = new Web3('ws://localhost:8546');
|
|
|
|
accounts = await web3.eth.getAccounts();
|
|
|
|
giver1 = accounts[ 1 ];
|
|
|
|
adminProject1 = accounts[ 2 ];
|
|
|
|
adminProject2 = accounts[ 3 ];
|
|
|
|
});
|
|
|
|
|
|
|
|
after((done) => {
|
|
|
|
testrpc.close();
|
|
|
|
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-19 16:49:16 +00:00
|
|
|
await vault.setLiquidPledging(liquidPledging.$address);
|
2018-01-25 16:31:13 +00:00
|
|
|
|
2017-10-19 16:49:16 +00:00
|
|
|
liquidPledgingState = new LiquidPledgingState(liquidPledging);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Should add project and donate ', async () => {
|
|
|
|
await liquidPledging.addProject('Project1', 'URLProject1', adminProject1, 0, 0, '0x0', { from: adminProject1 });
|
2018-01-22 19:00:30 +00:00
|
|
|
await liquidPledging.donate(0, 1, { from: giver1, value: '1000' });
|
2017-10-19 16:49:16 +00:00
|
|
|
|
|
|
|
const nAdmins = await liquidPledging.numberOfPledgeAdmins();
|
|
|
|
assert.equal(nAdmins, 2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Should only allow pledge owner to cancel pledge', async () => {
|
2018-01-25 23:09:58 +00:00
|
|
|
await assertFail(
|
|
|
|
liquidPledging.cancelPledge(2, 1000, { from: giver1, gas: 4000000 })
|
|
|
|
);
|
2017-10-19 16:49:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Should cancel pledge and return to oldPledge', async () => {
|
2018-01-22 19:00:30 +00:00
|
|
|
await liquidPledging.cancelPledge(2, 1000, { from: adminProject1 });
|
2017-10-19 16:49:16 +00:00
|
|
|
|
|
|
|
const st = await liquidPledgingState.getState();
|
|
|
|
|
|
|
|
assert.equal(st.pledges[1].amount, 1000);
|
|
|
|
assert.equal(st.pledges[2].amount, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Should not allow to cancel pledge if oldPledge === 0', async () => {
|
2018-01-25 23:09:58 +00:00
|
|
|
await assertFail(
|
|
|
|
liquidPledging.cancelPledge(1, 1000, { from: giver1, gas: 4000000 })
|
|
|
|
);
|
2017-10-19 16:49:16 +00:00
|
|
|
})
|
|
|
|
});
|
|
|
|
|