123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- const { constants, expectEvent, expectRevert, time } = require('@openzeppelin/test-helpers');
- const { web3 } = require('@openzeppelin/test-helpers/src/setup');
- const { expect } = require('chai');
- const { BNmin } = require('../helpers/math');
- const ERC20Mock = artifacts.require('ERC20Mock');
- const VestingWallet = artifacts.require('VestingWallet');
- 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 expectRevert(
- VestingWallet.new(constants.ZERO_ADDRESS, this.start, duration),
- 'VestingWallet: beneficiary is 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);
- });
- 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 ERC20Mock.new('Name', 'Symbol', this.mock.address, amount);
- 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 },
- );
- });
- shouldBehaveLikeVesting(beneficiary);
- });
- });
- });
|