@daostack/arc-experimental
Version:
A platform for building DAOs
337 lines (298 loc) • 16.3 kB
JavaScript
const helpers = require('./helpers');
var LockingEth4Reputation = artifacts.require("./LockingEth4Reputation.sol");
class LockingEth4ReputationParams {
constructor() {
}
}
var registration;
const setup = async function (accounts,
_repAllocation = 100,
_lockingStartTime = 0,
_lockingEndTime = 3000,
_redeemEnableTime = 3000,
_maxLockingPeriod = 6000,
_agreementHash = helpers.SOME_HASH) {
var testSetup = new helpers.TestSetup();
registration = await helpers.registerImplementation();
testSetup.proxyAdmin = accounts[5];
testSetup.lockingEndTime = (await web3.eth.getBlock("latest")).timestamp + _lockingEndTime;
testSetup.lockingStartTime = (await web3.eth.getBlock("latest")).timestamp + _lockingStartTime;
testSetup.redeemEnableTime = (await web3.eth.getBlock("latest")).timestamp + _redeemEnableTime;
testSetup.lockingEth4Reputation = await LockingEth4Reputation.new();
testSetup.agreementHash = _agreementHash;
testSetup.lockingEth4ReputationParams = new LockingEth4ReputationParams();
testSetup.lockingEth4ReputationParams.initdata = await new web3.eth.Contract(registration.lockingEth4Reputation.abi)
.methods
.initialize(helpers.NULL_ADDRESS,
_repAllocation,
testSetup.lockingStartTime,
testSetup.lockingEndTime,
testSetup.redeemEnableTime,
_maxLockingPeriod,
testSetup.agreementHash)
.encodeABI();
var permissions = "0x00000000";
[testSetup.org,tx] = await helpers.setupOrganizationWithArraysDAOFactory(testSetup.proxyAdmin,
accounts,
registration,
[accounts[0]],
[1000],
[1000],
0,
[web3.utils.fromAscii("LockingEth4Reputation")],
testSetup.lockingEth4ReputationParams.initdata,
[helpers.getBytesLength(testSetup.lockingEth4ReputationParams.initdata)],
[permissions],
"metaData"
);
testSetup.lockingEth4Reputation = await LockingEth4Reputation.at(await helpers.getSchemeAddress(registration.daoFactory.address,tx));
return testSetup;
};
contract('LockingEth4Reputation', accounts => {
it("initialize", async () => {
let testSetup = await setup(accounts);
assert.equal(await testSetup.lockingEth4Reputation.reputationReward(),100);
assert.equal(await testSetup.lockingEth4Reputation.maxLockingPeriod(),6000);
assert.equal(await testSetup.lockingEth4Reputation.redeemEnableTime(),testSetup.redeemEnableTime);
assert.equal(await testSetup.lockingEth4Reputation.lockingEndTime(),testSetup.lockingEndTime);
assert.equal(await testSetup.lockingEth4Reputation.getAgreementHash(),testSetup.agreementHash);
});
it("lock", async () => {
let testSetup = await setup(accounts);
var tx = await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
var lockingId = await helpers.getValueFromLogs(tx, '_lockingId',1);
assert.equal(tx.logs.length,1);
assert.equal(tx.logs[0].event,"Lock");
assert.equal(tx.logs[0].args._lockingId,lockingId);
assert.equal(tx.logs[0].args._amount,web3.utils.toWei('1', "ether"));
assert.equal(tx.logs[0].args._period,100);
assert.equal(tx.logs[0].args._locker,accounts[0]);
assert.equal(await testSetup.lockingEth4Reputation.totalScore(),100*web3.utils.toWei('1', "ether"));
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert.equal(await testSetup.lockingEth4Reputation.totalScore(),2*100*web3.utils.toWei('1', "ether"));
});
it("score too high", async () => {
let testSetup = await setup(accounts);
let BigNumber = require('bignumber.js');
BigNumber.set({ DECIMAL_PLACES: 0, ROUNDING_MODE: 4 });
let maxUint = ((new BigNumber(2)).toPower(256).sub(1)).div(100).add(1);
try {
await testSetup.lockingEth4Reputation.lock(1,testSetup.agreementHash,{value:maxUint.toString(10)});
assert(false, "score too high should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("cannot lock with wrong agreementHash", async () => {
let testSetup = await setup(accounts);
try {
await testSetup.lockingEth4Reputation.lock(100,helpers.NULL_HASH,{value:web3.utils.toWei('1', "ether")});
assert(false, "cannot lock with wrong agreementHash");
} catch(error) {
helpers.assertVMException(error);
}
});
it("lock with value == 0 should revert", async () => {
let testSetup = await setup(accounts);
try {
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('0', "ether")});
assert(false, "lock with value == 0 should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("lock before start should revert", async () => {
let testSetup = await setup(accounts,100,1000);
try {
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert(false, "lock before start should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("lock after _lockingEndTime should revert", async () => {
let testSetup = await setup(accounts);
await helpers.increaseTime(3001);
try {
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert(false, "lock after _lockingEndTime should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("lock with period == 0 should revert", async () => {
let testSetup = await setup(accounts);
try {
await testSetup.lockingEth4Reputation.lock(0,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert(false, "lock with period == 0 should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("lock over _maxLockingPeriod should revert", async () => {
let testSetup = await setup(accounts);
try {
await testSetup.lockingEth4Reputation.lock(6001,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert(false, "lock over _maxLockingPeriod should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("release", async () => {
let testSetup = await setup(accounts);
var tx = await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
var lockingId = await helpers.getValueFromLogs(tx, '_lockingId',1);
await helpers.increaseTime(101);
tx = await testSetup.lockingEth4Reputation.release(accounts[0],lockingId);
assert.equal(tx.logs.length,1);
assert.equal(tx.logs[0].event,"Release");
assert.equal(tx.logs[0].args._lockingId,lockingId);
assert.equal(tx.logs[0].args._amount,web3.utils.toWei('1', "ether"));
assert.equal(tx.logs[0].args._beneficiary,accounts[0]);
});
it("release totallockleft", async () => {
let testSetup = await setup(accounts);
var tx = await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
assert.equal(web3.utils.toWei('1', "ether"),await testSetup.lockingEth4Reputation.totalLocked());
assert.equal(web3.utils.toWei('1', "ether"),await testSetup.lockingEth4Reputation.totalLockedLeft());
var lockingId = await helpers.getValueFromLogs(tx, '_lockingId',1);
await helpers.increaseTime(101);
tx = await testSetup.lockingEth4Reputation.release(accounts[0],lockingId);
assert.equal(web3.utils.toWei('1', "ether"),await testSetup.lockingEth4Reputation.totalLocked());
assert.equal(0,await testSetup.lockingEth4Reputation.totalLockedLeft());
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether"),from:accounts[1]});
assert.equal(web3.utils.toWei('2', "ether"),await testSetup.lockingEth4Reputation.totalLocked());
assert.equal(web3.utils.toWei('1', "ether"),await testSetup.lockingEth4Reputation.totalLockedLeft());
assert.equal(tx.logs.length,1);
assert.equal(tx.logs[0].event,"Release");
assert.equal(tx.logs[0].args._lockingId,lockingId);
assert.equal(tx.logs[0].args._amount,web3.utils.toWei('1', "ether"));
assert.equal(tx.logs[0].args._beneficiary,accounts[0]);
});
it("release before locking period should revert", async () => {
let testSetup = await setup(accounts);
var tx = await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
var lockingId = await helpers.getValueFromLogs(tx, '_lockingId',1);
try {
await testSetup.lockingEth4Reputation.release(accounts[0],lockingId);
assert(false, "release before locking period should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("release cannot release twice", async () => {
let testSetup = await setup(accounts);
var tx = await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
var lockingId = await helpers.getValueFromLogs(tx, '_lockingId',1);
await helpers.increaseTime(101);
await testSetup.lockingEth4Reputation.release(accounts[0],lockingId);
try {
await testSetup.lockingEth4Reputation.release(accounts[0],lockingId);
assert(false, "release cannot release twice");
} catch(error) {
helpers.assertVMException(error);
}
});
it("redeem", async () => {
let testSetup = await setup(accounts);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(3001);
var tx = await testSetup.lockingEth4Reputation.redeem(accounts[0]);
assert.equal(tx.logs.length,1);
assert.equal(tx.logs[0].event,"Redeem");
assert.equal(tx.logs[0].args._amount,100);
assert.equal(tx.logs[0].args._beneficiary,accounts[0]);
assert.equal(await testSetup.org.reputation.balanceOf(accounts[0]),1000+100);
});
it("redeem score ", async () => {
let testSetup = await setup(accounts);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{from:accounts[0],value:web3.utils.toWei('1', "ether")});
await testSetup.lockingEth4Reputation.lock(300,testSetup.agreementHash,{from:accounts[1],value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(3001);
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
await testSetup.lockingEth4Reputation.redeem(accounts[1]);
assert.equal(await testSetup.org.reputation.balanceOf(accounts[0]),1000+25);
assert.equal(await testSetup.org.reputation.balanceOf(accounts[1]),75);
});
it("redeem cannot redeem twice", async () => {
let testSetup = await setup(accounts);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(3001);
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
try {
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
assert(false, "cannot redeem twice");
} catch(error) {
helpers.assertVMException(error);
}
});
it("redeem before lockingEndTime should revert", async () => {
let testSetup = await setup(accounts);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(50);
try {
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
assert(false, "redeem before lockingEndTime should revert");
} catch(error) {
helpers.assertVMException(error);
}
});
it("redeem before redeemEnableTime should revert", async () => {
let testSetup = await setup(accounts,100,0,3000,4000,6000,helpers.agreementHash,true);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(3500);
try {
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
assert(false, "redeem before redeemEnableTime should revert");
} catch(error) {
helpers.assertVMException(error);
}
await helpers.increaseTime(501);
await testSetup.lockingEth4Reputation.redeem(accounts[0]);
});
it("cannot initialize twice", async () => {
let testSetup = await setup(accounts);
try {
await testSetup.lockingEth4Reputation.initialize(testSetup.org.avatar.address,
100,
testSetup.lockingStartTime,
testSetup.lockingEndTime,
testSetup.redeemEnableTime,
6000,
testSetup.agreementHash);
assert(false, "cannot initialize twice");
} catch(error) {
helpers.assertVMException(error);
}
});
it("redeemEnableTime >= lockingEndTime", async () => {
var lockingEth4Reputation = await LockingEth4Reputation.new();
try {
await lockingEth4Reputation.initialize(accounts[1],
100,
0,
100,
100-1,
6000,
helpers.SOME_HASH);
assert(false, "redeemEnableTime >= lockingEndTime");
} catch(error) {
helpers.assertVMException(error);
}
await lockingEth4Reputation.initialize(accounts[1],
100,
0,
100,
100,
6000,
helpers.SOME_HASH);
});
it("get earned reputation", async () => {
let testSetup = await setup(accounts);
await testSetup.lockingEth4Reputation.lock(100,testSetup.agreementHash,{value:web3.utils.toWei('1', "ether")});
await helpers.increaseTime(3001);
const reputation = await testSetup.lockingEth4Reputation.redeem.call(accounts[0]);
assert.equal(reputation,100);
assert.equal(await testSetup.org.reputation.balanceOf(accounts[0]),1000);
});
});