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.
105 lines
3.9 KiB
105 lines
3.9 KiB
const { ethers } = require('hardhat');
|
|
const { expect } = require('chai');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
|
|
async function fixture() {
|
|
const [holder, operator, receiver, other] = await ethers.getSigners();
|
|
const token = await ethers.deployContract('$ERC1155Pausable', ['https://token-cdn-domain/{id}.json']);
|
|
return { token, holder, operator, receiver, other };
|
|
}
|
|
|
|
describe('ERC1155Pausable', function () {
|
|
const firstTokenId = 37n;
|
|
const firstTokenValue = 42n;
|
|
const secondTokenId = 19842n;
|
|
const secondTokenValue = 23n;
|
|
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
describe('when token is paused', function () {
|
|
beforeEach(async function () {
|
|
await this.token.connect(this.holder).setApprovalForAll(this.operator, true);
|
|
await this.token.$_mint(this.holder, firstTokenId, firstTokenValue, '0x');
|
|
await this.token.$_pause();
|
|
});
|
|
|
|
it('reverts when trying to safeTransferFrom from holder', async function () {
|
|
await expect(
|
|
this.token
|
|
.connect(this.holder)
|
|
.safeTransferFrom(this.holder, this.receiver, firstTokenId, firstTokenValue, '0x'),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
it('reverts when trying to safeTransferFrom from operator', async function () {
|
|
await expect(
|
|
this.token
|
|
.connect(this.operator)
|
|
.safeTransferFrom(this.holder, this.receiver, firstTokenId, firstTokenValue, '0x'),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
it('reverts when trying to safeBatchTransferFrom from holder', async function () {
|
|
await expect(
|
|
this.token
|
|
.connect(this.holder)
|
|
.safeBatchTransferFrom(this.holder, this.receiver, [firstTokenId], [firstTokenValue], '0x'),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
it('reverts when trying to safeBatchTransferFrom from operator', async function () {
|
|
await expect(
|
|
this.token
|
|
.connect(this.operator)
|
|
.safeBatchTransferFrom(this.holder, this.receiver, [firstTokenId], [firstTokenValue], '0x'),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
it('reverts when trying to mint', async function () {
|
|
await expect(this.token.$_mint(this.holder, secondTokenId, secondTokenValue, '0x')).to.be.revertedWithCustomError(
|
|
this.token,
|
|
'EnforcedPause',
|
|
);
|
|
});
|
|
|
|
it('reverts when trying to mintBatch', async function () {
|
|
await expect(
|
|
this.token.$_mintBatch(this.holder, [secondTokenId], [secondTokenValue], '0x'),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
it('reverts when trying to burn', async function () {
|
|
await expect(this.token.$_burn(this.holder, firstTokenId, firstTokenValue)).to.be.revertedWithCustomError(
|
|
this.token,
|
|
'EnforcedPause',
|
|
);
|
|
});
|
|
|
|
it('reverts when trying to burnBatch', async function () {
|
|
await expect(
|
|
this.token.$_burnBatch(this.holder, [firstTokenId], [firstTokenValue]),
|
|
).to.be.revertedWithCustomError(this.token, 'EnforcedPause');
|
|
});
|
|
|
|
describe('setApprovalForAll', function () {
|
|
it('approves an operator', async function () {
|
|
await this.token.connect(this.holder).setApprovalForAll(this.other, true);
|
|
expect(await this.token.isApprovedForAll(this.holder, this.other)).to.be.true;
|
|
});
|
|
});
|
|
|
|
describe('balanceOf', function () {
|
|
it('returns the token value owned by the given address', async function () {
|
|
expect(await this.token.balanceOf(this.holder, firstTokenId)).to.equal(firstTokenValue);
|
|
});
|
|
});
|
|
|
|
describe('isApprovedForAll', function () {
|
|
it('returns the approval of the operator', async function () {
|
|
expect(await this.token.isApprovedForAll(this.holder, this.operator)).to.be.true;
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|