-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// SPDX-License-Identifier: MIT | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import "./ERC1155Mock.sol"; | ||
import "../token/ERC1155/extensions/ERC1155Supply.sol"; | ||
|
||
contract ERC1155SupplyMock is ERC1155Mock, ERC1155Supply { | ||
constructor(string memory uri) ERC1155Mock(uri) { } | ||
|
||
function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual override(ERC1155, ERC1155Supply) { | ||
super._mint(account, id, amount, data); | ||
} | ||
|
||
function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual override(ERC1155, ERC1155Supply) { | ||
super._mintBatch(to, ids, amounts, data); | ||
} | ||
|
||
function _burn(address account, uint256 id, uint256 amount) internal virtual override(ERC1155, ERC1155Supply) { | ||
super._burn(account, id, amount); | ||
} | ||
|
||
function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual override(ERC1155, ERC1155Supply) { | ||
super._burnBatch(account, ids, amounts); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
const { BN, expectRevert } = require('@openzeppelin/test-helpers'); | ||
|
||
const { expect } = require('chai'); | ||
|
||
const ERC1155SupplyMock = artifacts.require('ERC1155SupplyMock'); | ||
|
||
contract('ERC1155Supply', function (accounts) { | ||
const [ holder, operator, receiver, other ] = accounts; | ||
|
||
const uri = 'https://token.com'; | ||
|
||
const firstTokenId = new BN('37'); | ||
const firstTokenAmount = new BN('42'); | ||
|
||
const secondTokenId = new BN('19842'); | ||
const secondTokenAmount = new BN('23'); | ||
|
||
beforeEach(async function () { | ||
this.token = await ERC1155SupplyMock.new(uri); | ||
}); | ||
|
||
context('before mint', function () { | ||
it('exist', async function () { | ||
expect(await this.token.exists(firstTokenId)).to.be.equal(false); | ||
}); | ||
|
||
it('totalSupply', async function () { | ||
expect(await this.token.totalSupply(firstTokenId)).to.be.bignumber.equal('0'); | ||
}); | ||
}); | ||
|
||
context('after mint', function () { | ||
context('single', function () { | ||
beforeEach(async function () { | ||
await this.token.mint(holder, firstTokenId, firstTokenAmount, '0x'); | ||
}); | ||
|
||
it('exist', async function () { | ||
expect(await this.token.exists(firstTokenId)).to.be.equal(true); | ||
}); | ||
|
||
it('totalSupply', async function () { | ||
expect(await this.token.totalSupply(firstTokenId)).to.be.bignumber.equal(firstTokenAmount); | ||
}); | ||
}); | ||
|
||
context('batch', function () { | ||
beforeEach(async function () { | ||
await this.token.mintBatch( | ||
holder, | ||
[ firstTokenId, secondTokenId ], | ||
[ firstTokenAmount, secondTokenAmount ], | ||
'0x', | ||
); | ||
}); | ||
|
||
it('exist', async function () { | ||
expect(await this.token.exists(firstTokenId)).to.be.equal(true); | ||
expect(await this.token.exists(secondTokenId)).to.be.equal(true); | ||
}); | ||
|
||
it('totalSupply', async function () { | ||
expect(await this.token.totalSupply(firstTokenId)).to.be.bignumber.equal(firstTokenAmount); | ||
expect(await this.token.totalSupply(secondTokenId)).to.be.bignumber.equal(secondTokenAmount); | ||
}); | ||
}); | ||
}); | ||
|
||
context('after burn', function () { | ||
context('single', function () { | ||
beforeEach(async function () { | ||
await this.token.mint(holder, firstTokenId, firstTokenAmount, '0x'); | ||
await this.token.burn(holder, firstTokenId, firstTokenAmount); | ||
}); | ||
|
||
it('exist', async function () { | ||
expect(await this.token.exists(firstTokenId)).to.be.equal(false); | ||
}); | ||
|
||
it('totalSupply', async function () { | ||
expect(await this.token.totalSupply(firstTokenId)).to.be.bignumber.equal('0'); | ||
}); | ||
}); | ||
|
||
context('batch', function () { | ||
beforeEach(async function () { | ||
await this.token.mintBatch( | ||
holder, | ||
[ firstTokenId, secondTokenId ], | ||
[ firstTokenAmount, secondTokenAmount ], | ||
'0x', | ||
); | ||
await this.token.burnBatch( | ||
holder, | ||
[ firstTokenId, secondTokenId ], | ||
[ firstTokenAmount, secondTokenAmount ], | ||
); | ||
}); | ||
|
||
it('exist', async function () { | ||
expect(await this.token.exists(firstTokenId)).to.be.equal(false); | ||
expect(await this.token.exists(secondTokenId)).to.be.equal(false); | ||
}); | ||
|
||
it('totalSupply', async function () { | ||
expect(await this.token.totalSupply(firstTokenId)).to.be.bignumber.equal('0'); | ||
expect(await this.token.totalSupply(secondTokenId)).to.be.bignumber.equal('0'); | ||
}); | ||
}); | ||
}); | ||
}); |