1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- const { time } = require('@nomicfoundation/hardhat-network-helpers');
- const { expectEvent } = require('@openzeppelin/test-helpers');
- const { expect } = require('chai');
- function releasedEvent (token, amount) {
- return token
- ? [ 'ERC20Released', { token: token.address, amount } ]
- : [ 'EtherReleased', { amount } ];
- }
- function shouldBehaveLikeVesting (beneficiary) {
- it('check vesting schedule', async function () {
- const [ fnVestedAmount, fnReleasable, ...args ] = this.token
- ? [ 'vestedAmount(address,uint64)', 'releasable(address)', this.token.address ]
- : [ 'vestedAmount(uint64)', 'releasable()' ];
- for (const timestamp of this.schedule) {
- await time.increaseTo(timestamp);
- const vesting = this.vestingFn(timestamp);
- expect(await this.mock.methods[fnVestedAmount](...args, timestamp))
- .to.be.bignumber.equal(vesting);
- expect(await this.mock.methods[fnReleasable](...args))
- .to.be.bignumber.equal(vesting);
- }
- });
- it('execute vesting schedule', async function () {
- const [ fnRelease, ...args ] = this.token
- ? [ 'release(address)', this.token.address ]
- : [ 'release()' ];
- let released = web3.utils.toBN(0);
- const before = await this.getBalance(beneficiary);
- {
- const receipt = await this.mock.methods[fnRelease](...args);
- await expectEvent.inTransaction(
- receipt.tx,
- this.mock,
- ...releasedEvent(this.token, '0'),
- );
- await this.checkRelease(receipt, beneficiary, '0');
- expect(await this.getBalance(beneficiary)).to.be.bignumber.equal(before);
- }
- for (const timestamp of this.schedule) {
- await time.setNextBlockTimestamp(timestamp);
- const vested = this.vestingFn(timestamp);
- const receipt = await this.mock.methods[fnRelease](...args);
- await expectEvent.inTransaction(
- receipt.tx,
- this.mock,
- ...releasedEvent(this.token, vested.sub(released)),
- );
- await this.checkRelease(receipt, beneficiary, vested.sub(released));
- expect(await this.getBalance(beneficiary))
- .to.be.bignumber.equal(before.add(vested));
- released = vested;
- }
- });
- }
- module.exports = {
- shouldBehaveLikeVesting,
- };
|