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.
47 lines
1.4 KiB
47 lines
1.4 KiB
require('@openzeppelin/test-helpers');
|
|
const { shouldBehaveLikeERC721PausedToken } = require('./ERC721PausedToken.behavior');
|
|
const { shouldBehaveLikeERC721 } = require('./ERC721.behavior');
|
|
const { shouldBehaveLikePublicRole } = require('../../behaviors/access/roles/PublicRole.behavior');
|
|
|
|
const ERC721PausableMock = artifacts.require('ERC721PausableMock.sol');
|
|
|
|
contract('ERC721Pausable', function ([
|
|
_,
|
|
creator,
|
|
otherPauser,
|
|
...accounts
|
|
]) {
|
|
beforeEach(async function () {
|
|
this.token = await ERC721PausableMock.new({ from: creator });
|
|
});
|
|
|
|
describe('pauser role', function () {
|
|
beforeEach(async function () {
|
|
this.contract = this.token;
|
|
await this.contract.addPauser(otherPauser, { from: creator });
|
|
});
|
|
|
|
shouldBehaveLikePublicRole(creator, otherPauser, accounts, 'pauser');
|
|
});
|
|
|
|
context('when token is paused', function () {
|
|
beforeEach(async function () {
|
|
await this.token.pause({ from: creator });
|
|
});
|
|
|
|
shouldBehaveLikeERC721PausedToken(creator, accounts);
|
|
});
|
|
|
|
context('when token is not paused yet', function () {
|
|
shouldBehaveLikeERC721(creator, creator, accounts);
|
|
});
|
|
|
|
context('when token is paused and then unpaused', function () {
|
|
beforeEach(async function () {
|
|
await this.token.pause({ from: creator });
|
|
await this.token.unpause({ from: creator });
|
|
});
|
|
|
|
shouldBehaveLikeERC721(creator, creator, accounts);
|
|
});
|
|
});
|
|
|