mirror of openzeppelin-contracts
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.
 
 
 
 
 
openzeppelin-contracts/test/token/ERC20/extensions/ERC20Capped.test.js

55 lines
1.8 KiB

const { ethers } = require('hardhat');
const { expect } = require('chai');
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
const name = 'My Token';
const symbol = 'MTKN';
const cap = 1000n;
async function fixture() {
const [user] = await ethers.getSigners();
const token = await ethers.deployContract('$ERC20Capped', [name, symbol, cap]);
return { user, token, cap };
}
describe('ERC20Capped', function () {
beforeEach(async function () {
Object.assign(this, await loadFixture(fixture));
});
it('requires a non-zero cap', async function () {
const ERC20Capped = await ethers.getContractFactory('$ERC20Capped');
await expect(ERC20Capped.deploy(name, symbol, 0))
.to.be.revertedWithCustomError(ERC20Capped, 'ERC20InvalidCap')
.withArgs(0);
});
describe('capped token', function () {
it('starts with the correct cap', async function () {
expect(await this.token.cap()).to.equal(this.cap);
});
it('mints when value is less than cap', async function () {
const value = this.cap - 1n;
await this.token.$_mint(this.user, value);
expect(await this.token.totalSupply()).to.equal(value);
});
it('fails to mint if the value exceeds the cap', async function () {
await this.token.$_mint(this.user, this.cap - 1n);
await expect(this.token.$_mint(this.user, 2))
.to.be.revertedWithCustomError(this.token, 'ERC20ExceededCap')
.withArgs(this.cap + 1n, this.cap);
});
it('fails to mint after cap is reached', async function () {
await this.token.$_mint(this.user, this.cap);
await expect(this.token.$_mint(this.user, 1))
.to.be.revertedWithCustomError(this.token, 'ERC20ExceededCap')
.withArgs(this.cap + 1n, this.cap);
});
});
});