Commit 6c2b7c26 by Nicolás Venturo

Add ERC20 compatibility to ERC777. (#1735)

* Add ERC20 compatibility.

* Reusing ERC20 tests for ERC777.

* Improve documentation.

* Add changelog entry.

* Improved ERC20 behavior tests.

* Add revert reasons to ERC777.

* ERC20 methods allow sending tokens to contracts with no interface.

* Register ERC20 interface.

* Add comment about avoidLockingTokens.

* Improve revert reason string.

* Make ERC777 implement IERC20.

* Fix test revert string.

* Remove unnecesary require.

* Add private _transfer.

* Update contracts/drafts/ERC777/ERC777.sol

Co-Authored-By: nventuro <nicolas.venturo@gmail.com>

* Update private helper names.

(cherry picked from commit aa4c9fea)
parent 835c23d6
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
### New features: ### New features:
* `ERC1820`: added support for interacting with the [ERC1820](https://eips.ethereum.org/EIPS/eip-1820) registry contract (`IERC1820Registry`), as well as base contracts that can be registered as implementers there. ([#1677](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1677)) * `ERC1820`: added support for interacting with the [ERC1820](https://eips.ethereum.org/EIPS/eip-1820) registry contract (`IERC1820Registry`), as well as base contracts that can be registered as implementers there. ([#1677](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1677))
* `ERC777`: initial support for the [ERC777 token](https://eips.ethereum.org/EIPS/eip-777), which has multiple improvements over `ERC20` such as built-in burning, a more straightforward permission system, and optional sender and receiver hooks on transfer (mandatory for contracts!). ([#1684](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1684)) * `ERC777`: support for the [ERC777 token](https://eips.ethereum.org/EIPS/eip-777), which has multiple improvements over `ERC20` (but is backwards compatible with it) such as built-in burning, a more straightforward permission system, and optional sender and receiver hooks on transfer (mandatory for contracts!). ([#1684](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1684))
* All contracts now have revert reason strings, which give insight into error conditions, and help debug failing transactions. ([#1704](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1704)) * All contracts now have revert reason strings, which give insight into error conditions, and help debug failing transactions. ([#1704](https://github.com/OpenZeppelin/openzeppelin-solidity/pull/1704))
### Improvements: ### Improvements:
......
...@@ -20,7 +20,7 @@ contract ERC20 is IERC20 { ...@@ -20,7 +20,7 @@ contract ERC20 is IERC20 {
mapping (address => uint256) private _balances; mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowed; mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply; uint256 private _totalSupply;
...@@ -47,7 +47,7 @@ contract ERC20 is IERC20 { ...@@ -47,7 +47,7 @@ contract ERC20 is IERC20 {
* @return A uint256 specifying the amount of tokens still available for the spender. * @return A uint256 specifying the amount of tokens still available for the spender.
*/ */
function allowance(address owner, address spender) public view returns (uint256) { function allowance(address owner, address spender) public view returns (uint256) {
return _allowed[owner][spender]; return _allowances[owner][spender];
} }
/** /**
...@@ -84,13 +84,13 @@ contract ERC20 is IERC20 { ...@@ -84,13 +84,13 @@ contract ERC20 is IERC20 {
*/ */
function transferFrom(address from, address to, uint256 value) public returns (bool) { function transferFrom(address from, address to, uint256 value) public returns (bool) {
_transfer(from, to, value); _transfer(from, to, value);
_approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); _approve(from, msg.sender, _allowances[from][msg.sender].sub(value));
return true; return true;
} }
/** /**
* @dev Increase the amount of tokens that an owner allowed to a spender. * @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To increment * approve should be called when _allowances[msg.sender][spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until * allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined) * the first transaction is mined)
* From MonolithDAO Token.sol * From MonolithDAO Token.sol
...@@ -99,13 +99,13 @@ contract ERC20 is IERC20 { ...@@ -99,13 +99,13 @@ contract ERC20 is IERC20 {
* @param addedValue The amount of tokens to increase the allowance by. * @param addedValue The amount of tokens to increase the allowance by.
*/ */
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true; return true;
} }
/** /**
* @dev Decrease the amount of tokens that an owner allowed to a spender. * @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when _allowed[msg.sender][spender] == 0. To decrement * approve should be called when _allowances[msg.sender][spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until * allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined) * the first transaction is mined)
* From MonolithDAO Token.sol * From MonolithDAO Token.sol
...@@ -114,7 +114,7 @@ contract ERC20 is IERC20 { ...@@ -114,7 +114,7 @@ contract ERC20 is IERC20 {
* @param subtractedValue The amount of tokens to decrease the allowance by. * @param subtractedValue The amount of tokens to decrease the allowance by.
*/ */
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true; return true;
} }
...@@ -171,7 +171,7 @@ contract ERC20 is IERC20 { ...@@ -171,7 +171,7 @@ contract ERC20 is IERC20 {
require(owner != address(0), "ERC20: approve from the zero address"); require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address"); require(spender != address(0), "ERC20: approve to the zero address");
_allowed[owner][spender] = value; _allowances[owner][spender] = value;
emit Approval(owner, spender, value); emit Approval(owner, spender, value);
} }
...@@ -185,6 +185,6 @@ contract ERC20 is IERC20 { ...@@ -185,6 +185,6 @@ contract ERC20 is IERC20 {
*/ */
function _burnFrom(address account, uint256 value) internal { function _burnFrom(address account, uint256 value) internal {
_burn(account, value); _burn(account, value);
_approve(account, msg.sender, _allowed[account][msg.sender].sub(value)); _approve(account, msg.sender, _allowances[account][msg.sender].sub(value));
} }
} }
...@@ -184,8 +184,9 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) { ...@@ -184,8 +184,9 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) {
const initialFromBalance = await this.token.balanceOf(from); const initialFromBalance = await this.token.balanceOf(from);
const initialToBalance = await this.token.balanceOf(to); const initialToBalance = await this.token.balanceOf(to);
let logs;
if (!operatorCall) { if (!operatorCall) {
const { logs } = await this.token.send(to, amount, data, { from }); ({ logs } = await this.token.send(to, amount, data, { from }));
expectEvent.inLogs(logs, 'Sent', { expectEvent.inLogs(logs, 'Sent', {
operator: from, operator: from,
from, from,
...@@ -195,7 +196,7 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) { ...@@ -195,7 +196,7 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) {
operatorData: null, operatorData: null,
}); });
} else { } else {
const { logs } = await this.token.operatorSend(from, to, amount, data, operatorData, { from: operator }); ({ logs } = await this.token.operatorSend(from, to, amount, data, operatorData, { from: operator }));
expectEvent.inLogs(logs, 'Sent', { expectEvent.inLogs(logs, 'Sent', {
operator, operator,
from, from,
...@@ -206,6 +207,12 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) { ...@@ -206,6 +207,12 @@ function shouldSendTokens (from, operator, to, amount, data, operatorData) {
}); });
} }
expectEvent.inLogs(logs, 'Transfer', {
from,
to,
value: amount,
});
const finalTotalSupply = await this.token.totalSupply(); const finalTotalSupply = await this.token.totalSupply();
const finalFromBalance = await this.token.balanceOf(from); const finalFromBalance = await this.token.balanceOf(from);
const finalToBalance = await this.token.balanceOf(to); const finalToBalance = await this.token.balanceOf(to);
...@@ -231,8 +238,9 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) { ...@@ -231,8 +238,9 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) {
const initialTotalSupply = await this.token.totalSupply(); const initialTotalSupply = await this.token.totalSupply();
const initialFromBalance = await this.token.balanceOf(from); const initialFromBalance = await this.token.balanceOf(from);
let logs;
if (!operatorCall) { if (!operatorCall) {
const { logs } = await this.token.burn(amount, data, { from }); ({ logs } = await this.token.burn(amount, data, { from }));
expectEvent.inLogs(logs, 'Burned', { expectEvent.inLogs(logs, 'Burned', {
operator: from, operator: from,
from, from,
...@@ -241,7 +249,7 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) { ...@@ -241,7 +249,7 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) {
operatorData: null, operatorData: null,
}); });
} else { } else {
const { logs } = await this.token.operatorBurn(from, amount, data, operatorData, { from: operator }); ({ logs } = await this.token.operatorBurn(from, amount, data, operatorData, { from: operator }));
expectEvent.inLogs(logs, 'Burned', { expectEvent.inLogs(logs, 'Burned', {
operator, operator,
from, from,
...@@ -251,6 +259,12 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) { ...@@ -251,6 +259,12 @@ function shouldBurnTokens (from, operator, amount, data, operatorData) {
}); });
} }
expectEvent.inLogs(logs, 'Transfer', {
from,
to: ZERO_ADDRESS,
value: amount,
});
const finalTotalSupply = await this.token.totalSupply(); const finalTotalSupply = await this.token.totalSupply();
const finalFromBalance = await this.token.balanceOf(from); const finalFromBalance = await this.token.balanceOf(from);
...@@ -274,6 +288,7 @@ function shouldInternalMintTokens (operator, to, amount, data, operatorData) { ...@@ -274,6 +288,7 @@ function shouldInternalMintTokens (operator, to, amount, data, operatorData) {
const initialToBalance = await this.token.balanceOf(to); const initialToBalance = await this.token.balanceOf(to);
const { logs } = await this.token.mintInternal(operator, to, amount, data, operatorData); const { logs } = await this.token.mintInternal(operator, to, amount, data, operatorData);
expectEvent.inLogs(logs, 'Minted', { expectEvent.inLogs(logs, 'Minted', {
operator, operator,
to, to,
...@@ -282,6 +297,12 @@ function shouldInternalMintTokens (operator, to, amount, data, operatorData) { ...@@ -282,6 +297,12 @@ function shouldInternalMintTokens (operator, to, amount, data, operatorData) {
operatorData, operatorData,
}); });
expectEvent.inLogs(logs, 'Transfer', {
from: ZERO_ADDRESS,
to,
value: amount,
});
const finalTotalSupply = await this.token.totalSupply(); const finalTotalSupply = await this.token.totalSupply();
const finalToBalance = await this.token.balanceOf(to); const finalToBalance = await this.token.balanceOf(to);
......
...@@ -9,6 +9,10 @@ const { ...@@ -9,6 +9,10 @@ const {
shouldBehaveLikeERC777SendBurnWithSendHook, shouldBehaveLikeERC777SendBurnWithSendHook,
} = require('./ERC777.behavior'); } = require('./ERC777.behavior');
const {
shouldBehaveLikeERC20,
} = require('../../token/ERC20/ERC20.behavior');
const ERC777 = artifacts.require('ERC777Mock'); const ERC777 = artifacts.require('ERC777Mock');
const ERC777SenderRecipientMock = artifacts.require('ERC777SenderRecipientMock'); const ERC777SenderRecipientMock = artifacts.require('ERC777SenderRecipientMock');
...@@ -32,6 +36,8 @@ contract('ERC777', function ([ ...@@ -32,6 +36,8 @@ contract('ERC777', function ([
this.token = await ERC777.new(holder, initialSupply, name, symbol, defaultOperators); this.token = await ERC777.new(holder, initialSupply, name, symbol, defaultOperators);
}); });
shouldBehaveLikeERC20('ERC777', initialSupply, holder, anyone, defaultOperatorA);
it.skip('does not emit AuthorizedOperator events for default operators', async function () { it.skip('does not emit AuthorizedOperator events for default operators', async function () {
expectEvent.not.inConstructor(this.token, 'AuthorizedOperator'); // This helper needs to be implemented expectEvent.not.inConstructor(this.token, 'AuthorizedOperator'); // This helper needs to be implemented
}); });
...@@ -45,7 +51,7 @@ contract('ERC777', function ([ ...@@ -45,7 +51,7 @@ contract('ERC777', function ([
(await this.token.symbol()).should.equal(symbol); (await this.token.symbol()).should.equal(symbol);
}); });
it('has a granularity of 1', async function () { it('returns a granularity of 1', async function () {
(await this.token.granularity()).should.be.bignumber.equal('1'); (await this.token.granularity()).should.be.bignumber.equal('1');
}); });
...@@ -59,14 +65,23 @@ contract('ERC777', function ([ ...@@ -59,14 +65,23 @@ contract('ERC777', function ([
} }
}); });
it('returns thte total supply', async function () { it('returns the total supply', async function () {
(await this.token.totalSupply()).should.be.bignumber.equal(initialSupply); (await this.token.totalSupply()).should.be.bignumber.equal(initialSupply);
}); });
it('is registered in the registry', async function () { it('returns 18 when decimals is called', async function () {
(await this.token.decimals()).should.be.bignumber.equal('18');
});
it('the ERC777Token interface is registered in the registry', async function () {
(await this.erc1820.getInterfaceImplementer(this.token.address, web3.utils.soliditySha3('ERC777Token'))) (await this.erc1820.getInterfaceImplementer(this.token.address, web3.utils.soliditySha3('ERC777Token')))
.should.equal(this.token.address); .should.equal(this.token.address);
}); });
it('the ERC20Token interface is registered in the registry', async function () {
(await this.erc1820.getInterfaceImplementer(this.token.address, web3.utils.soliditySha3('ERC20Token')))
.should.equal(this.token.address);
});
}); });
describe('balanceOf', function () { describe('balanceOf', function () {
...@@ -144,11 +159,15 @@ contract('ERC777', function ([ ...@@ -144,11 +159,15 @@ contract('ERC777', function ([
}); });
it('reverts when self-authorizing', async function () { it('reverts when self-authorizing', async function () {
await shouldFail.reverting(this.token.authorizeOperator(holder, { from: holder })); await shouldFail.reverting.withMessage(
this.token.authorizeOperator(holder, { from: holder }), 'ERC777: authorizing self as operator'
);
}); });
it('reverts when self-revoking', async function () { it('reverts when self-revoking', async function () {
await shouldFail.reverting(this.token.revokeOperator(holder, { from: holder })); await shouldFail.reverting.withMessage(
this.token.revokeOperator(holder, { from: holder }), 'ERC777: revoking self as operator'
);
}); });
it('non-operators can be revoked', async function () { it('non-operators can be revoked', async function () {
...@@ -209,7 +228,10 @@ contract('ERC777', function ([ ...@@ -209,7 +228,10 @@ contract('ERC777', function ([
}); });
it('cannot be revoked for themselves', async function () { it('cannot be revoked for themselves', async function () {
await shouldFail.reverting(this.token.revokeOperator(defaultOperatorA, { from: defaultOperatorA })); await shouldFail.reverting.withMessage(
this.token.revokeOperator(defaultOperatorA, { from: defaultOperatorA }),
'ERC777: revoking self as operator'
);
}); });
context('with revoked default operator', function () { context('with revoked default operator', function () {
...@@ -259,20 +281,35 @@ contract('ERC777', function ([ ...@@ -259,20 +281,35 @@ contract('ERC777', function ([
}); });
it('send reverts', async function () { it('send reverts', async function () {
await shouldFail.reverting(this.token.send(this.recipient, amount, data)); await shouldFail.reverting.withMessage(
this.token.send(this.recipient, amount, data, { from: holder }),
'ERC777: token recipient contract has no implementer for ERC777TokensRecipient',
);
}); });
it('operatorSend reverts', async function () { it('operatorSend reverts', async function () {
await shouldFail.reverting( await shouldFail.reverting.withMessage(
this.token.operatorSend(this.sender, this.recipient, amount, data, operatorData, { from: operator }) this.token.operatorSend(this.sender, this.recipient, amount, data, operatorData, { from: operator }),
'ERC777: token recipient contract has no implementer for ERC777TokensRecipient',
); );
}); });
it('mint (internal) reverts', async function () { it('mint (internal) reverts', async function () {
await shouldFail.reverting( await shouldFail.reverting.withMessage(
this.token.mintInternal(operator, this.recipient, amount, data, operatorData) this.token.mintInternal(operator, this.recipient, amount, data, operatorData),
'ERC777: token recipient contract has no implementer for ERC777TokensRecipient',
); );
}); });
it('(ERC20) transfer succeeds', async function () {
await this.token.transfer(this.recipient, amount, { from: holder });
});
it('(ERC20) transferFrom succeeds', async function () {
const approved = anyone;
await this.token.approve(approved, amount, { from: this.sender });
await this.token.transferFrom(this.sender, this.recipient, amount, { from: approved });
});
}); });
}); });
......
const { BN, constants, expectEvent, shouldFail } = require('openzeppelin-test-helpers');
const { ZERO_ADDRESS } = constants;
function shouldBehaveLikeERC20 (errorPrefix, initialSupply, initialHolder, recipient, anotherAccount) {
describe('total supply', function () {
it('returns the total amount of tokens', async function () {
(await this.token.totalSupply()).should.be.bignumber.equal(initialSupply);
});
});
describe('balanceOf', function () {
describe('when the requested account has no tokens', function () {
it('returns zero', async function () {
(await this.token.balanceOf(anotherAccount)).should.be.bignumber.equal('0');
});
});
describe('when the requested account has some tokens', function () {
it('returns the total amount of tokens', async function () {
(await this.token.balanceOf(initialHolder)).should.be.bignumber.equal(initialSupply);
});
});
});
describe('transfer', function () {
describe('when the recipient is not the zero address', function () {
const to = recipient;
describe('when the sender does not have enough balance', function () {
const amount = initialSupply.addn(1);
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transfer(to, amount, { from: initialHolder }),
'SafeMath: subtraction overflow'
);
});
});
describe('when the sender has enough balance', function () {
const amount = initialSupply;
it('transfers the requested amount', async function () {
await this.token.transfer(to, amount, { from: initialHolder });
(await this.token.balanceOf(initialHolder)).should.be.bignumber.equal('0');
(await this.token.balanceOf(to)).should.be.bignumber.equal(amount);
});
it('emits a transfer event', async function () {
const { logs } = await this.token.transfer(to, amount, { from: initialHolder });
expectEvent.inLogs(logs, 'Transfer', {
from: initialHolder,
to: to,
value: amount,
});
});
});
});
describe('when the recipient is the zero address', function () {
const to = ZERO_ADDRESS;
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transfer(to, initialSupply, { from: initialHolder }),
`${errorPrefix}: transfer to the zero address`
);
});
});
});
describe('transfer from', function () {
const spender = recipient;
describe('when the recipient is not the zero address', function () {
const to = anotherAccount;
describe('when the spender has enough approved balance', function () {
beforeEach(async function () {
await this.token.approve(spender, initialSupply, { from: initialHolder });
});
describe('when the initial holder has enough balance', function () {
const amount = initialSupply;
it('transfers the requested amount', async function () {
await this.token.transferFrom(initialHolder, to, amount, { from: spender });
(await this.token.balanceOf(initialHolder)).should.be.bignumber.equal('0');
(await this.token.balanceOf(to)).should.be.bignumber.equal(amount);
});
it('decreases the spender allowance', async function () {
await this.token.transferFrom(initialHolder, to, amount, { from: spender });
(await this.token.allowance(initialHolder, spender)).should.be.bignumber.equal('0');
});
it('emits a transfer event', async function () {
const { logs } = await this.token.transferFrom(initialHolder, to, amount, { from: spender });
expectEvent.inLogs(logs, 'Transfer', {
from: initialHolder,
to: to,
value: amount,
});
});
it('emits an approval event', async function () {
const { logs } = await this.token.transferFrom(initialHolder, to, amount, { from: spender });
expectEvent.inLogs(logs, 'Approval', {
owner: initialHolder,
spender: spender,
value: await this.token.allowance(initialHolder, spender),
});
});
});
describe('when the initial holder does not have enough balance', function () {
const amount = initialSupply.addn(1);
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transferFrom(
initialHolder, to, amount, { from: spender }), 'SafeMath: subtraction overflow'
);
});
});
});
describe('when the spender does not have enough approved balance', function () {
beforeEach(async function () {
await this.token.approve(spender, initialSupply.subn(1), { from: initialHolder });
});
describe('when the initial holder has enough balance', function () {
const amount = initialSupply;
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transferFrom(
initialHolder, to, amount, { from: spender }), 'SafeMath: subtraction overflow'
);
});
});
describe('when the initial holder does not have enough balance', function () {
const amount = initialSupply.addn(1);
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transferFrom(
initialHolder, to, amount, { from: spender }), 'SafeMath: subtraction overflow'
);
});
});
});
});
describe('when the recipient is the zero address', function () {
const amount = initialSupply;
const to = ZERO_ADDRESS;
beforeEach(async function () {
await this.token.approve(spender, amount, { from: initialHolder });
});
it('reverts', async function () {
await shouldFail.reverting.withMessage(this.token.transferFrom(
initialHolder, to, amount, { from: spender }), `${errorPrefix}: transfer to the zero address`
);
});
});
});
describe('approve', function () {
shouldBehaveLikeERC20Approve(errorPrefix, initialHolder, recipient, initialSupply,
function (owner, spender, amount) {
return this.token.approve(spender, amount, { from: owner });
}
);
});
}
function shouldBehaveLikeERC20Approve (errorPrefix, owner, spender, supply, approve) {
describe('when the spender is not the zero address', function () {
describe('when the sender has enough balance', function () {
const amount = supply;
it('emits an approval event', async function () {
const { logs } = await approve.call(this, owner, spender, amount);
expectEvent.inLogs(logs, 'Approval', {
owner: owner,
spender: spender,
value: amount,
});
});
describe('when there was no approved amount before', function () {
it('approves the requested amount', async function () {
await approve.call(this, owner, spender, amount);
(await this.token.allowance(owner, spender)).should.be.bignumber.equal(amount);
});
});
describe('when the spender had an approved amount', function () {
beforeEach(async function () {
await approve.call(this, owner, spender, new BN(1));
});
it('approves the requested amount and replaces the previous one', async function () {
await approve.call(this, owner, spender, amount);
(await this.token.allowance(owner, spender)).should.be.bignumber.equal(amount);
});
});
});
describe('when the sender does not have enough balance', function () {
const amount = supply.addn(1);
it('emits an approval event', async function () {
const { logs } = await approve.call(this, owner, spender, amount);
expectEvent.inLogs(logs, 'Approval', {
owner: owner,
spender: spender,
value: amount,
});
});
describe('when there was no approved amount before', function () {
it('approves the requested amount', async function () {
await approve.call(this, owner, spender, amount);
(await this.token.allowance(owner, spender)).should.be.bignumber.equal(amount);
});
});
describe('when the spender had an approved amount', function () {
beforeEach(async function () {
await approve.call(this, owner, spender, new BN(1));
});
it('approves the requested amount and replaces the previous one', async function () {
await approve.call(this, owner, spender, amount);
(await this.token.allowance(owner, spender)).should.be.bignumber.equal(amount);
});
});
});
});
describe('when the spender is the zero address', function () {
it('reverts', async function () {
await shouldFail.reverting.withMessage(approve.call(this, owner, ZERO_ADDRESS, supply),
`${errorPrefix}: approve to the zero address`
);
});
});
}
module.exports = {
shouldBehaveLikeERC20,
shouldBehaveLikeERC20Approve,
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment