123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- const { constants, expectEvent, time } = require('@openzeppelin/test-helpers');
- const { web3 } = require('@openzeppelin/test-helpers/src/setup');
- const { expect } = require('chai');
- const { BNmin } = require('../helpers/math');
- const { expectRevertCustomError } = require('../helpers/customError');
- const VestingWallet = artifacts.require('VestingWallet');
- const ERC20 = artifacts.require('$ERC20');
- const { shouldBehaveLikeVesting } = require('./VestingWallet.behavior');
- contract('VestingWallet', function (accounts) {
- const [sender, beneficiary] = accounts;
- const amount = web3.utils.toBN(web3.utils.toWei('100'));
- const duration = web3.utils.toBN(4 * 365 * 86400); // 4 years
- beforeEach(async function () {
- this.start = (await time.latest()).addn(3600); // in 1 hour
- this.mock = await VestingWallet.new(beneficiary, this.start, duration);
- });
- it('rejects zero address for beneficiary', async function () {
- await expectRevertCustomError(
- VestingWallet.new(constants.ZERO_ADDRESS, this.start, duration),
- 'VestingWalletInvalidBeneficiary',
- [constants.ZERO_ADDRESS],
- );
- });
- it('check vesting contract', async function () {
- expect(await this.mock.beneficiary()).to.be.equal(beneficiary);
- expect(await this.mock.start()).to.be.bignumber.equal(this.start);
- expect(await this.mock.duration()).to.be.bignumber.equal(duration);
- expect(await this.mock.end()).to.be.bignumber.equal(this.start.add(duration));
- });
- describe('vesting schedule', function () {
- beforeEach(async function () {
- this.schedule = Array(64)
- .fill()
- .map((_, i) => web3.utils.toBN(i).mul(duration).divn(60).add(this.start));
- this.vestingFn = timestamp => BNmin(amount, amount.mul(timestamp.sub(this.start)).div(duration));
- });
- describe('Eth vesting', function () {
- beforeEach(async function () {
- await web3.eth.sendTransaction({ from: sender, to: this.mock.address, value: amount });
- this.getBalance = account => web3.eth.getBalance(account).then(web3.utils.toBN);
- this.checkRelease = () => {};
- });
- shouldBehaveLikeVesting(beneficiary);
- });
- describe('ERC20 vesting', function () {
- beforeEach(async function () {
- this.token = await ERC20.new('Name', 'Symbol');
- this.getBalance = account => this.token.balanceOf(account);
- this.checkRelease = (receipt, to, value) =>
- expectEvent.inTransaction(receipt.tx, this.token, 'Transfer', { from: this.mock.address, to, value });
- await this.token.$_mint(this.mock.address, amount);
- });
- shouldBehaveLikeVesting(beneficiary);
- });
- });
- });
|