liquid-funding/test/AdminPlugins.js

130 lines
4.5 KiB
JavaScript
Raw Normal View History

2017-11-16 23:15:32 +00:00
/* eslint-env mocha */
/* eslint-disable no-await-in-loop */
const TestRPC = require("ganache-cli");
2017-11-16 23:15:32 +00:00
const Web3 = require('web3');
const chai = require('chai');
const assertFail = require('./helpers/assertFail');
2018-02-12 22:55:11 +00:00
const contracts = require("../build/contracts.js");
const LiquidPledgingState = require('../index').LiquidPledgingState;
2017-11-16 23:15:32 +00:00
const simpleProjectPluginFactoryAbi = require('../build/TestSimpleProjectPluginFactory.sol').TestSimpleProjectPluginFactoryAbi;
const simpleProjectPluginFactoryByteCode = require('../build/TestSimpleProjectPluginFactory.sol').TestSimpleProjectPluginFactoryByteCode;
const simpleProjectPluginRuntimeByteCode = require('../build/TestSimpleProjectPluginFactory.sol').TestSimpleProjectPluginRuntimeByteCode;
const assert = chai.assert;
const printState = async (liquidPledgingState) => {
const st = await liquidPledgingState.getState();
console.log(JSON.stringify(st, null, 2));
};
describe('LiquidPledging plugins test', function () {
this.timeout(0);
let testrpc;
let web3;
let accounts;
let liquidPledging;
let liquidPledgingState;
let vault;
let giver1;
let adminProject1;
let adminDelegate1;
let token;
2017-11-16 23:15:32 +00:00
before(async () => {
testrpc = TestRPC.server({
2018-01-22 19:00:30 +00:00
gasLimit: 6700000,
2017-11-16 23:15:32 +00:00
total_accounts: 10,
});
2018-02-12 23:24:26 +00:00
testrpc.listen(8545, '127.0.0.1');
2017-11-16 23:15:32 +00:00
2018-02-12 23:24:26 +00:00
web3 = new Web3('http://localhost:8545');
2017-11-16 23:15:32 +00:00
accounts = await web3.eth.getAccounts();
2018-02-12 22:55:11 +00:00
giver1 = accounts[1];
adminProject1 = accounts[2];
adminDelegate1 = accounts[3];
2017-11-16 23:15:32 +00:00
});
after((done) => {
testrpc.close();
done();
});
2018-02-12 22:55:11 +00:00
it('Should deploy LiquidPledging contract', async function () {
2018-03-27 17:55:37 +00:00
const baseVault = await contracts.LPVault.new(web3, accounts[0]);
const baseLP = await contracts.LiquidPledgingMock.new(web3, accounts[0]);
2018-02-12 22:55:11 +00:00
lpFactory = await contracts.LPFactory.new(web3, baseVault.$address, baseLP.$address);
2018-01-22 19:00:30 +00:00
2018-02-12 22:55:11 +00:00
const r = await lpFactory.newLP(accounts[0], accounts[0]);
2018-01-22 19:00:30 +00:00
2018-02-12 22:55:11 +00:00
const vaultAddress = r.events.DeployVault.returnValues.vault;
vault = new contracts.LPVault(web3, vaultAddress);
const lpAddress = r.events.DeployLiquidPledging.returnValues.liquidPledging;
liquidPledging = new contracts.LiquidPledgingMock(web3, lpAddress);
2017-11-16 23:15:32 +00:00
liquidPledgingState = new LiquidPledgingState(liquidPledging);
token = await contracts.StandardToken.new(web3);
await token.mint(giver1, web3.utils.toWei('1000'));
await token.approve(liquidPledging.$address, "0xFFFFFFFFFFFFFFFF", { from: giver1 });
2017-11-16 23:15:32 +00:00
});
2018-02-12 22:55:11 +00:00
it('Should create create giver with no plugin', async function () {
2017-11-16 23:15:32 +00:00
await liquidPledging.addGiver('Giver1', '', 0, '0x0', { from: adminProject1 });
const nAdmins = await liquidPledging.numberOfPledgeAdmins();
assert.equal(nAdmins, 1);
});
2018-02-12 22:55:11 +00:00
it('Should fail to create giver with invalid plugin', async function () {
await assertFail(
liquidPledging.addGiver('Giver2', '', 0, vault.$address, { from: giver1, gas: 4000000 })
);
2017-11-16 23:15:32 +00:00
});
2018-02-12 22:55:11 +00:00
it('Should fail to create delegate with invalid plugin', async function () {
await assertFail(
2018-02-12 22:55:11 +00:00
liquidPledging.addDelegate('delegate1', '', 0, liquidPledging.$address, { from: adminDelegate1, gas: 4000000 })
);
2017-11-16 23:15:32 +00:00
});
2018-02-12 22:55:11 +00:00
it('Should fail to create project with invalid plugin', async function () {
await assertFail(
2018-02-12 22:55:11 +00:00
liquidPledging.addProject('Project1', '', giver1, 0, 0, vault.$address, { from: adminProject1, gas: 4000000 })
);
2017-11-16 23:15:32 +00:00
});
2018-02-12 22:55:11 +00:00
it('Should deploy TestSimpleProjectPlugin and add project', async function () {
2017-11-16 23:15:32 +00:00
// add plugin as valid plugin
const codeHash = web3.utils.soliditySha3(simpleProjectPluginRuntimeByteCode);
await liquidPledging.addValidPluginContract(codeHash, { $extraGas: 200000 });
2017-11-16 23:15:32 +00:00
// deploy new plugin
const factoryContract = await new web3.eth.Contract(simpleProjectPluginFactoryAbi)
.deploy({
data: simpleProjectPluginFactoryByteCode,
arguments: []
}).send({ from: adminProject1, gas: 5000000 });
2018-01-22 19:00:30 +00:00
factoryContract.setProvider(web3.currentProvider);
2017-11-16 23:15:32 +00:00
await factoryContract.methods
.deploy(liquidPledging.$address, "SimplePlugin1", "", 0)
2018-01-22 19:00:30 +00:00
.send({ from: adminProject1, gas: 5000000 })
2017-11-16 23:15:32 +00:00
const nAdmins = await liquidPledging.numberOfPledgeAdmins();
assert.equal(nAdmins, 2);
});
2018-02-12 22:55:11 +00:00
it('Should allow all plugins', async function () {
await liquidPledging.useWhitelist(false, { $extraGas: 200000 });
2017-11-16 23:15:32 +00:00
await liquidPledging.addGiver('Giver2', '', 0, vault.$address, { from: giver1 });
2017-11-16 23:15:32 +00:00
const nAdmins = await liquidPledging.numberOfPledgeAdmins();
assert.equal(nAdmins, 3);
});
});