partial port to embark
This commit is contained in:
parent
b4e83ec6f1
commit
c278b11a4e
|
@ -1,14 +1,50 @@
|
|||
const DelegationProxy = artifacts.require("DelegationProxy.sol")
|
||||
const MiniMeTokenFactory = artifacts.require("MiniMeTokenFactory.sol")
|
||||
const MiniMeToken = artifacts.require("MiniMeToken.sol")
|
||||
const TestUtils = require("./TestUtils.js")
|
||||
const utils = require("../utils/testUtils.js")
|
||||
|
||||
// TODO: This a very minimal set of tests purely for understanding the contract. I think they can be used though.
|
||||
contract("DelegationProxy", accounts => {
|
||||
|
||||
describe("DelegationProxy", async function() {
|
||||
this.timeout(0);
|
||||
//Initialize global/common contracts for all tests
|
||||
let accounts = [];
|
||||
|
||||
let delegationProxy = []
|
||||
const delegateTo = [
|
||||
let delegateTo = [[],[]]
|
||||
let delegationOf = [[],[]]
|
||||
let delegatedInfluence = [[],[]]
|
||||
let influence = [[],[]]
|
||||
|
||||
let tokensBalance;
|
||||
|
||||
before(function(done) {
|
||||
var contractsConfig = {
|
||||
"MiniMeTokenFactory": {
|
||||
},
|
||||
"MiniMeToken": {
|
||||
"args": [
|
||||
"$MiniMeTokenFactory",
|
||||
utils.zeroAddress,
|
||||
0,
|
||||
"TestMiniMeToken",
|
||||
18,
|
||||
"TST",
|
||||
true
|
||||
]
|
||||
},
|
||||
"DelegationProxy": {
|
||||
"args": [ 0 ]
|
||||
},
|
||||
"ChildDelegationProxy": {
|
||||
"instanceOf": "DelegationProxy",
|
||||
"args": [
|
||||
"$DelegationProxy"
|
||||
]
|
||||
}
|
||||
|
||||
};
|
||||
EmbarkSpec.deployAll(contractsConfig, async function(accountsArr) {
|
||||
accounts = accountsArr
|
||||
delegationProxy[0] = DelegationProxy
|
||||
delegationProxy[1] = ChildDelegationProxy
|
||||
delegateTo = [
|
||||
[
|
||||
accounts[1],
|
||||
accounts[2],
|
||||
|
@ -20,7 +56,7 @@ contract("DelegationProxy", accounts => {
|
|||
0x0
|
||||
]
|
||||
]
|
||||
const delegationOf = [
|
||||
delegationOf = [
|
||||
[
|
||||
accounts[2],
|
||||
accounts[2],
|
||||
|
@ -33,43 +69,45 @@ contract("DelegationProxy", accounts => {
|
|||
]
|
||||
]
|
||||
|
||||
const delegatedInfluence = [
|
||||
delegatedInfluence = [
|
||||
[0, 1, 2],
|
||||
[0, 0, 1]
|
||||
]
|
||||
|
||||
const influence = [
|
||||
influence = [
|
||||
[0, 0, 3],
|
||||
[1, 0, 2]
|
||||
]
|
||||
|
||||
beforeEach(async () => {
|
||||
delegationProxy[0] = await DelegationProxy.new(0)
|
||||
delegationProxy[1] = await DelegationProxy.new(delegationProxy[0].address)
|
||||
tokensBalance = 1000
|
||||
|
||||
for(i=0;i<accounts.length;i++){
|
||||
await MiniMeToken.methods.generateTokens(accounts[i], tokensBalance).send({from: accounts[0]})
|
||||
}
|
||||
done()
|
||||
});
|
||||
})
|
||||
|
||||
describe("delegate(address _to)", () => {
|
||||
|
||||
it("creates Delegate Log event", async () => {
|
||||
it("creates Delegate Log event", async function () {
|
||||
const i = 0
|
||||
const j = 0
|
||||
delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]})
|
||||
const delegateArgs = await TestUtils.listenForEvent(delegationProxy[i].Delegate())
|
||||
assert.equal(delegateArgs.who, accounts[j], "["+i+","+j+"] Delegate Log shows delegating from isn't sender")
|
||||
let result = await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]})
|
||||
const delegateArgs = result.events.Delegate.returnValues;
|
||||
assert.equal(delegateArgs.who, accounts[j], "["+i+","+j+"] Delegate Log shows delegating from isn't sender. " + delegateArgs.who + " != " + accounts[j])
|
||||
assert.equal(delegateArgs.to, delegateTo[i][j], "["+i+","+j+"]Delegate Log shows delegating to isn't passed address")
|
||||
|
||||
})
|
||||
|
||||
it("updates delegations mapping with new delegate", async () => {
|
||||
it("updates delegations mapping with new delegate", async function () {
|
||||
const i = 0
|
||||
const j = 0
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]})
|
||||
const delegations = await delegationProxy[i].delegations.call(accounts[j], 0)
|
||||
assert.equal(delegations[0].c, web3.eth.blockNumber, "["+i+","+j+"] Delegations block number is incorrect")
|
||||
let result = await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]})
|
||||
let delegations = await delegationProxy[i].methods.delegations(accounts[j], 1).call()
|
||||
assert.equal(delegations[0], result.blockNumber, "["+i+","+j+"] Delegations block number is incorrect. " + delegations[0] + ' != ' + result.blockNumber)
|
||||
assert.equal(delegations[1], delegateTo[i][j], "["+i+","+j+"] Delegations to account is incorrect")
|
||||
})
|
||||
|
||||
it("stores delegation checkpoints correctly", async () => {
|
||||
it("stores delegation checkpoints correctly", async function () {
|
||||
const delegateTo2 = [
|
||||
[
|
||||
0x0,
|
||||
|
@ -124,50 +162,50 @@ contract("DelegationProxy", accounts => {
|
|||
|
||||
for (var i = 0; i < delegateTo.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
}
|
||||
const blockn1 = web3.eth.blockNumber
|
||||
const blockn1 = await web3.eth.getBlockNumber()
|
||||
|
||||
for (var i = 0; i < delegateTo2.length; i++) {
|
||||
for (var j = 0; j < delegateTo2[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo2[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo2[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
}
|
||||
const blockn2 = web3.eth.blockNumber
|
||||
const blockn2 = await web3.eth.getBlockNumber()
|
||||
|
||||
for (var i = 0; i < delegateTo3.length; i++) {
|
||||
for (var j = 0; j < delegateTo3[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo3[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo3[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
}
|
||||
const blockn3 = web3.eth.blockNumber
|
||||
const blockn3 = await web3.eth.getBlockNumber()
|
||||
|
||||
for (var i = 0; i < delegateTo.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegatedToAt(accounts[j], blockn1),
|
||||
await delegationProxy[i].methods.delegatedToAt(accounts[j], blockn1).call(),
|
||||
delegateTo[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedToAt("+accounts[j]+", +"+blockn1+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegatedToAt(accounts[j], blockn2),
|
||||
await delegationProxy[i].methods.delegatedToAt(accounts[j], blockn2).call(),
|
||||
delegateTo2[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedToAt("+accounts[j]+", +"+blockn2+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegatedToAt(accounts[j], blockn3),
|
||||
await delegationProxy[i].methods.delegatedToAt(accounts[j], blockn3).call(),
|
||||
delegateTo3[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedToAt("+accounts[j]+", +"+blockn3+") is incorrect")
|
||||
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegationOfAt(accounts[j], blockn1),
|
||||
await delegationProxy[i].methods.delegationOfAt(accounts[j], blockn1).call(),
|
||||
delegationOf[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegationOfAt("+accounts[j]+", +"+blockn1+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegationOfAt(accounts[j], blockn2),
|
||||
await delegationProxy[i].methods.delegationOfAt(accounts[j], blockn2).call(),
|
||||
delegationOf2[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegationOfAt("+accounts[j]+", +"+blockn2+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegationOfAt(accounts[j], blockn3),
|
||||
await delegationProxy[i].methods.delegationOfAt(accounts[j], blockn3).call(),
|
||||
delegationOf3[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegationOfAt("+accounts[j]+", +"+blockn3+") is incorrect")
|
||||
}
|
||||
|
@ -175,138 +213,108 @@ contract("DelegationProxy", accounts => {
|
|||
|
||||
})
|
||||
|
||||
it("delegates back to parentProxy", async () => {
|
||||
it("delegates back to parentProxy", async function () {
|
||||
for (var i = 0; i < delegateTo.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
}
|
||||
const blockn1 = web3.eth.blockNumber
|
||||
const blockn1 = await web3.eth.getBlockNumber()
|
||||
|
||||
for (var j = 0; j < delegateTo[1].length; j++) {
|
||||
await delegationProxy[1].delegate(delegationProxy[0].address, {from: accounts[j]});
|
||||
await delegationProxy[1].delegate(delegationProxy[0].address).send({from: accounts[j]});
|
||||
}
|
||||
|
||||
const blockn2 = web3.eth.blockNumber
|
||||
const blockn2 = await web3.eth.getBlockNumber()
|
||||
|
||||
for (var j = 0; j < delegateTo[1].length; j++) {
|
||||
assert.equal(
|
||||
await delegationProxy[1].delegatedToAt(accounts[j], blockn1),
|
||||
await delegationProxy[1].delegatedToAt(accounts[j], blockn1).call(),
|
||||
delegateTo[1][j],
|
||||
"["+j+"] +"+delegationProxy[1].address+".delegatedToAt("+accounts[j]+", +"+blockn1+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[1].delegatedToAt(accounts[j], blockn2),
|
||||
await delegationProxy[1].delegatedToAt(accounts[j], blockn2).call(),
|
||||
delegateTo[0][j],
|
||||
"["+j+"] +"+delegationProxy[1].address+".delegatedToAt("+accounts[j]+", +"+blockn2+") is incorrect")
|
||||
|
||||
assert.equal(
|
||||
await delegationProxy[1].delegationOfAt(accounts[j], blockn1),
|
||||
await delegationProxy[1].delegationOfAt(accounts[j], blockn1).call(),
|
||||
delegationOf[1][j],
|
||||
"["+j+"] +"+delegationProxy[1].address+".delegationOfAt("+accounts[j]+", +"+blockn1+") is incorrect")
|
||||
assert.equal(
|
||||
await delegationProxy[1].delegationOfAt(accounts[j], blockn2),
|
||||
await delegationProxy[1].delegationOfAt(accounts[j], blockn2).call(),
|
||||
delegationOf[0][j],
|
||||
"["+j+"] +"+delegationProxy[1].address+".delegationOfAt("+accounts[j]+", +"+blockn2+") is incorrect")
|
||||
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe("delegatedToAt(address _who, uint _block)", () => {
|
||||
|
||||
it("returns correctly delegated to address", async () => {
|
||||
it("returns correctly delegated to address", async function () {
|
||||
let delegatedTo
|
||||
for (var i = 0; i < delegateTo.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
delegatedTo = await delegationProxy[i].delegatedToAt(accounts[j], web3.eth.blockNumber)
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
let bn = await web3.eth.getBlockNumber();
|
||||
delegatedTo = await delegationProxy[i].methods.delegatedToAt(accounts[j], bn)
|
||||
assert.equal(
|
||||
delegatedTo,
|
||||
delegateTo[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedToAt("+accounts[j]+", +"+web3.eth.blockNumber+") is incorrect")
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedToAt("+accounts[j]+", +"+bn+") is incorrect")
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe("delegationOfAt(address _who, uint _block)", () => {
|
||||
|
||||
it("returns correctly delegation endpoints of address", async () => {
|
||||
it("returns correctly delegation endpoints of address", async function () {
|
||||
let result = [[],[]]
|
||||
for (var i = 0; i < delegateTo.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
let bn = await web3.eth.getBlockNumber();
|
||||
for (j = 0; j < delegateTo[i].length; j++) {
|
||||
assert.equal(
|
||||
await delegationProxy[i].delegationOfAt(accounts[j], web3.eth.blockNumber),
|
||||
await delegationProxy[i].methods.delegationOfAt(accounts[j], bn).call(),
|
||||
delegationOf[i][j],
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegationOfAt("+accounts[j]+", +"+web3.eth.blockNumber+") is incorrect"
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegationOfAt("+accounts[j]+", +"+bn+") is incorrect"
|
||||
)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe("delegatedInfluenceFromAt(address _who, address _token, uint _block)", () => {
|
||||
|
||||
let miniMeTokenFactory
|
||||
let miniMeToken
|
||||
const tokensBalance = 1000
|
||||
|
||||
beforeEach(async () => {
|
||||
miniMeTokenFactory = await MiniMeTokenFactory.new();
|
||||
miniMeToken = await MiniMeToken.new(miniMeTokenFactory.address, 0, 0, "TestToken", 18, "TTN", true)
|
||||
for (var i = 0; i < 6; i++) {
|
||||
miniMeToken.generateTokens(accounts[i], tokensBalance)
|
||||
}
|
||||
})
|
||||
|
||||
it("returns expected amount of influence delegated from", async () => {
|
||||
it("returns expected amount of influence delegated from", async function () {
|
||||
|
||||
for (var i = 0; i < delegationProxy.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
await delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
let bn = await web3.eth.getBlockNumber();
|
||||
for (var j = 0; j < delegatedInfluence[i].length; j++) {
|
||||
assert.equal(
|
||||
delegatedInfluence[i][j] * tokensBalance,
|
||||
(await delegationProxy[i].delegatedInfluenceFromAt(accounts[j], miniMeToken.address, web3.eth.blockNumber)).toNumber(),
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedInfluenceFrom("+accounts[j]+", +"+web3.eth.blockNumber+") is not as expected"
|
||||
await delegationProxy[i].methods.delegatedInfluenceFromAt(accounts[j], MiniMeToken.address, bn).call(),
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".delegatedInfluenceFrom("+accounts[j]+", +"+bn+") is not as expected"
|
||||
)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe("influenceOfAt(address _who, address _token, uint _block)", () => {
|
||||
let miniMeTokenFactory
|
||||
let miniMeToken
|
||||
const tokensBalance = 1000
|
||||
|
||||
beforeEach(async () => {
|
||||
miniMeTokenFactory = await MiniMeTokenFactory.new();
|
||||
miniMeToken = await MiniMeToken.new(miniMeTokenFactory.address, 0, 0, "TestToken", 18, "TTN", true)
|
||||
for (var i = 0; i < 6; i++) {
|
||||
miniMeToken.generateTokens(accounts[i], tokensBalance)
|
||||
}
|
||||
})
|
||||
|
||||
it("returns expected influence", async () => {
|
||||
it("returns expected influence", async function () {
|
||||
|
||||
for (var i = 0; i < influence.length; i++) {
|
||||
for (var j = 0; j < delegateTo[i].length; j++) {
|
||||
delegationProxy[i].delegate(delegateTo[i][j], {from: accounts[j]});
|
||||
await delegationProxy[i].methods.delegate(delegateTo[i][j]).send({from: accounts[j]});
|
||||
}
|
||||
let bn = await web3.eth.getBlockNumber();
|
||||
for (var j = 0; j < influence[i].length; j++) {
|
||||
let result = await delegationProxy[i].methods.influenceOfAt(accounts[j], MiniMeToken.address, bn).call();
|
||||
assert.equal(
|
||||
influence[i][j] * tokensBalance,
|
||||
(await delegationProxy[i].influenceOfAt(accounts[j], miniMeToken.address, web3.eth.blockNumber)).toNumber(),
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".influenceOfAt("+accounts[j]+", +"+web3.eth.blockNumber+") is not as expected")
|
||||
result,
|
||||
"["+i+","+j+"] +"+delegationProxy[i].address+".influenceOfAt("+accounts[j]+", +"+bn+") is not as expected. "+influence[i][j] * tokensBalance+" != "+ result)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
})
|
Loading…
Reference in New Issue