You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
4.2 KiB
102 lines
4.2 KiB
const { ethers } = require('hardhat');
|
|
const { expect } = require('chai');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
|
|
const { sum } = require('../../helpers/math');
|
|
const { zip } = require('../../helpers/iterate');
|
|
const { bigint: time } = require('../../helpers/time');
|
|
|
|
const { shouldBehaveLikeVotes } = require('./Votes.behavior');
|
|
|
|
const MODES = {
|
|
blocknumber: '$VotesMock',
|
|
timestamp: '$VotesTimestampMock',
|
|
};
|
|
|
|
const AMOUNTS = [ethers.parseEther('10000000'), 10n, 20n];
|
|
|
|
describe('Votes', function () {
|
|
for (const [mode, artifact] of Object.entries(MODES)) {
|
|
const fixture = async () => {
|
|
const accounts = await ethers.getSigners();
|
|
|
|
const amounts = Object.fromEntries(
|
|
zip(
|
|
accounts.slice(0, AMOUNTS.length).map(({ address }) => address),
|
|
AMOUNTS,
|
|
),
|
|
);
|
|
|
|
const name = 'My Vote';
|
|
const version = '1';
|
|
const votes = await ethers.deployContract(artifact, [name, version]);
|
|
|
|
return { accounts, amounts, votes, name, version };
|
|
};
|
|
|
|
describe(`vote with ${mode}`, function () {
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
shouldBehaveLikeVotes(AMOUNTS, { mode, fungible: true });
|
|
|
|
it('starts with zero votes', async function () {
|
|
expect(await this.votes.getTotalSupply()).to.equal(0n);
|
|
});
|
|
|
|
describe('performs voting operations', function () {
|
|
beforeEach(async function () {
|
|
this.txs = [];
|
|
for (const [account, amount] of Object.entries(this.amounts)) {
|
|
this.txs.push(await this.votes.$_mint(account, amount));
|
|
}
|
|
});
|
|
|
|
it('reverts if block number >= current block', async function () {
|
|
const lastTxTimepoint = await time.clockFromReceipt[mode](this.txs.at(-1));
|
|
const clock = await this.votes.clock();
|
|
await expect(this.votes.getPastTotalSupply(lastTxTimepoint))
|
|
.to.be.revertedWithCustomError(this.votes, 'ERC5805FutureLookup')
|
|
.withArgs(lastTxTimepoint, clock);
|
|
});
|
|
|
|
it('delegates', async function () {
|
|
expect(await this.votes.getVotes(this.accounts[0])).to.equal(0n);
|
|
expect(await this.votes.getVotes(this.accounts[1])).to.equal(0n);
|
|
expect(await this.votes.delegates(this.accounts[0])).to.equal(ethers.ZeroAddress);
|
|
expect(await this.votes.delegates(this.accounts[1])).to.equal(ethers.ZeroAddress);
|
|
|
|
await this.votes.delegate(this.accounts[0], ethers.Typed.address(this.accounts[0]));
|
|
|
|
expect(await this.votes.getVotes(this.accounts[0])).to.equal(this.amounts[this.accounts[0].address]);
|
|
expect(await this.votes.getVotes(this.accounts[1])).to.equal(0n);
|
|
expect(await this.votes.delegates(this.accounts[0])).to.equal(this.accounts[0].address);
|
|
expect(await this.votes.delegates(this.accounts[1])).to.equal(ethers.ZeroAddress);
|
|
|
|
await this.votes.delegate(this.accounts[1], ethers.Typed.address(this.accounts[0]));
|
|
|
|
expect(await this.votes.getVotes(this.accounts[0])).to.equal(
|
|
this.amounts[this.accounts[0].address] + this.amounts[this.accounts[1].address],
|
|
);
|
|
expect(await this.votes.getVotes(this.accounts[1])).to.equal(0n);
|
|
expect(await this.votes.delegates(this.accounts[0])).to.equal(this.accounts[0].address);
|
|
expect(await this.votes.delegates(this.accounts[1])).to.equal(this.accounts[0].address);
|
|
});
|
|
|
|
it('cross delegates', async function () {
|
|
await this.votes.delegate(this.accounts[0], ethers.Typed.address(this.accounts[1].address));
|
|
await this.votes.delegate(this.accounts[1], ethers.Typed.address(this.accounts[0].address));
|
|
|
|
expect(await this.votes.getVotes(this.accounts[0])).to.equal(this.amounts[this.accounts[1].address]);
|
|
expect(await this.votes.getVotes(this.accounts[1])).to.equal(this.amounts[this.accounts[0].address]);
|
|
});
|
|
|
|
it('returns total amount of votes', async function () {
|
|
const totalSupply = sum(...Object.values(this.amounts));
|
|
expect(await this.votes.getTotalSupply()).to.equal(totalSupply);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|