123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- const { ethers } = require('hardhat');
- const { expect } = require('chai');
- function shouldBehaveLikeERC20(initialSupply, opts = {}) {
- const { forcedApproval } = opts;
- beforeEach(async function () {
- [this.holder, this.recipient, this.other] = this.accounts;
- });
- it('total supply: returns the total token value', async function () {
- expect(await this.token.totalSupply()).to.equal(initialSupply);
- });
- describe('balanceOf', function () {
- it('returns zero when the requested account has no tokens', async function () {
- expect(await this.token.balanceOf(this.other)).to.equal(0n);
- });
- it('returns the total token value when the requested account has some tokens', async function () {
- expect(await this.token.balanceOf(this.holder)).to.equal(initialSupply);
- });
- });
- describe('transfer', function () {
- beforeEach(function () {
- this.transfer = (from, to, value) => this.token.connect(from).transfer(to, value);
- });
- shouldBehaveLikeERC20Transfer(initialSupply);
- });
- describe('transfer from', function () {
- describe('when the token owner is not the zero address', function () {
- describe('when the recipient is not the zero address', function () {
- describe('when the spender has enough allowance', function () {
- beforeEach(async function () {
- await this.token.connect(this.holder).approve(this.recipient, initialSupply);
- });
- describe('when the token owner has enough balance', function () {
- const value = initialSupply;
- beforeEach(async function () {
- this.tx = await this.token.connect(this.recipient).transferFrom(this.holder, this.other, value);
- });
- it('transfers the requested value', async function () {
- await expect(this.tx).to.changeTokenBalances(this.token, [this.holder, this.other], [-value, value]);
- });
- it('decreases the spender allowance', async function () {
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(0n);
- });
- it('emits a transfer event', async function () {
- await expect(this.tx).to.emit(this.token, 'Transfer').withArgs(this.holder, this.other, value);
- });
- if (forcedApproval) {
- it('emits an approval event', async function () {
- await expect(this.tx)
- .to.emit(this.token, 'Approval')
- .withArgs(
- this.holder.address,
- this.recipient.address,
- await this.token.allowance(this.holder, this.recipient),
- );
- });
- } else {
- it('does not emit an approval event', async function () {
- await expect(this.tx).to.not.emit(this.token, 'Approval');
- });
- }
- });
- it('reverts when the token owner does not have enough balance', async function () {
- const value = initialSupply;
- await this.token.connect(this.holder).transfer(this.other, 1n);
- await expect(this.token.connect(this.recipient).transferFrom(this.holder, this.other, value))
- .to.revertedWithCustomError(this.token, 'ERC20InsufficientBalance')
- .withArgs(this.holder, value - 1n, value);
- });
- });
- describe('when the spender does not have enough allowance', function () {
- const allowance = initialSupply - 1n;
- beforeEach(async function () {
- await this.token.connect(this.holder).approve(this.recipient, allowance);
- });
- it('reverts when the token owner has enough balance', async function () {
- const value = initialSupply;
- await expect(this.token.connect(this.recipient).transferFrom(this.holder, this.other, value))
- .to.be.revertedWithCustomError(this.token, 'ERC20InsufficientAllowance')
- .withArgs(this.recipient, allowance, value);
- });
- it('reverts when the token owner does not have enough balance', async function () {
- const value = allowance;
- await this.token.connect(this.holder).transfer(this.other, 2);
- await expect(this.token.connect(this.recipient).transferFrom(this.holder, this.other, value))
- .to.be.revertedWithCustomError(this.token, 'ERC20InsufficientBalance')
- .withArgs(this.holder, value - 1n, value);
- });
- });
- describe('when the spender has unlimited allowance', function () {
- beforeEach(async function () {
- await this.token.connect(this.holder).approve(this.recipient, ethers.MaxUint256);
- this.tx = await this.token.connect(this.recipient).transferFrom(this.holder, this.other, 1n);
- });
- it('does not decrease the spender allowance', async function () {
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(ethers.MaxUint256);
- });
- it('does not emit an approval event', async function () {
- await expect(this.tx).to.not.emit(this.token, 'Approval');
- });
- });
- });
- it('reverts when the recipient is the zero address', async function () {
- const value = initialSupply;
- await this.token.connect(this.holder).approve(this.recipient, value);
- await expect(this.token.connect(this.recipient).transferFrom(this.holder, ethers.ZeroAddress, value))
- .to.be.revertedWithCustomError(this.token, 'ERC20InvalidReceiver')
- .withArgs(ethers.ZeroAddress);
- });
- });
- it('reverts when the token owner is the zero address', async function () {
- const value = 0n;
- await expect(this.token.connect(this.recipient).transferFrom(ethers.ZeroAddress, this.recipient, value))
- .to.be.revertedWithCustomError(this.token, 'ERC20InvalidApprover')
- .withArgs(ethers.ZeroAddress);
- });
- });
- describe('approve', function () {
- beforeEach(function () {
- this.approve = (owner, spender, value) => this.token.connect(owner).approve(spender, value);
- });
- shouldBehaveLikeERC20Approve(initialSupply);
- });
- }
- function shouldBehaveLikeERC20Transfer(balance) {
- describe('when the recipient is not the zero address', function () {
- it('reverts when the sender does not have enough balance', async function () {
- const value = balance + 1n;
- await expect(this.transfer(this.holder, this.recipient, value))
- .to.be.revertedWithCustomError(this.token, 'ERC20InsufficientBalance')
- .withArgs(this.holder, balance, value);
- });
- describe('when the sender transfers all balance', function () {
- const value = balance;
- beforeEach(async function () {
- this.tx = await this.transfer(this.holder, this.recipient, value);
- });
- it('transfers the requested value', async function () {
- await expect(this.tx).to.changeTokenBalances(this.token, [this.holder, this.recipient], [-value, value]);
- });
- it('emits a transfer event', async function () {
- await expect(this.tx).to.emit(this.token, 'Transfer').withArgs(this.holder, this.recipient, value);
- });
- });
- describe('when the sender transfers zero tokens', function () {
- const value = 0n;
- beforeEach(async function () {
- this.tx = await this.transfer(this.holder, this.recipient, value);
- });
- it('transfers the requested value', async function () {
- await expect(this.tx).to.changeTokenBalances(this.token, [this.holder, this.recipient], [0n, 0n]);
- });
- it('emits a transfer event', async function () {
- await expect(this.tx).to.emit(this.token, 'Transfer').withArgs(this.holder, this.recipient, value);
- });
- });
- });
- it('reverts when the recipient is the zero address', async function () {
- await expect(this.transfer(this.holder, ethers.ZeroAddress, balance))
- .to.be.revertedWithCustomError(this.token, 'ERC20InvalidReceiver')
- .withArgs(ethers.ZeroAddress);
- });
- }
- function shouldBehaveLikeERC20Approve(supply) {
- describe('when the spender is not the zero address', function () {
- describe('when the sender has enough balance', function () {
- const value = supply;
- it('emits an approval event', async function () {
- await expect(this.approve(this.holder, this.recipient, value))
- .to.emit(this.token, 'Approval')
- .withArgs(this.holder, this.recipient, value);
- });
- it('approves the requested value when there was no approved value before', async function () {
- await this.approve(this.holder, this.recipient, value);
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(value);
- });
- it('approves the requested value and replaces the previous one when the spender had an approved value', async function () {
- await this.approve(this.holder, this.recipient, 1n);
- await this.approve(this.holder, this.recipient, value);
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(value);
- });
- });
- describe('when the sender does not have enough balance', function () {
- const value = supply + 1n;
- it('emits an approval event', async function () {
- await expect(this.approve(this.holder, this.recipient, value))
- .to.emit(this.token, 'Approval')
- .withArgs(this.holder, this.recipient, value);
- });
- it('approves the requested value when there was no approved value before', async function () {
- await this.approve(this.holder, this.recipient, value);
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(value);
- });
- it('approves the requested value and replaces the previous one when the spender had an approved value', async function () {
- await this.approve(this.holder, this.recipient, 1n);
- await this.approve(this.holder, this.recipient, value);
- expect(await this.token.allowance(this.holder, this.recipient)).to.equal(value);
- });
- });
- });
- it('reverts when the spender is the zero address', async function () {
- await expect(this.approve(this.holder, ethers.ZeroAddress, supply))
- .to.be.revertedWithCustomError(this.token, `ERC20InvalidSpender`)
- .withArgs(ethers.ZeroAddress);
- });
- }
- module.exports = {
- shouldBehaveLikeERC20,
- shouldBehaveLikeERC20Transfer,
- shouldBehaveLikeERC20Approve,
- };
|