Cleanup of Ownership directory (#2120)
* Remove Ownable.isOwner. * Remove ownable behavior from tests * Make Escrow use Ownable instead of Secondary * Migrate GSNRecipientERC20Fee to Ownable * Remove Secondary * Move Ownable to access directory * Remove mentions of Secondary * Add changelog entry * Move Ownable tests to access * Remove unused mock
This commit is contained in:
@ -2,13 +2,13 @@ const { balance, ether, expectEvent, expectRevert } = require('@openzeppelin/tes
|
||||
|
||||
const { expect } = require('chai');
|
||||
|
||||
function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
function shouldBehaveLikeEscrow (owner, [payee1, payee2]) {
|
||||
const amount = ether('42');
|
||||
|
||||
describe('as an escrow', function () {
|
||||
describe('deposits', function () {
|
||||
it('can accept a single deposit', async function () {
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
|
||||
expect(await balance.current(this.escrow.address)).to.be.bignumber.equal(amount);
|
||||
|
||||
@ -16,17 +16,17 @@ function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
});
|
||||
|
||||
it('can accept an empty deposit', async function () {
|
||||
await this.escrow.deposit(payee1, { from: primary, value: 0 });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: 0 });
|
||||
});
|
||||
|
||||
it('only the primary account can deposit', async function () {
|
||||
it('only the owner can deposit', async function () {
|
||||
await expectRevert(this.escrow.deposit(payee1, { from: payee2 }),
|
||||
'Secondary: caller is not the primary account'
|
||||
'Ownable: caller is not the owner'
|
||||
);
|
||||
});
|
||||
|
||||
it('emits a deposited event', async function () {
|
||||
const { logs } = await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
const { logs } = await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
expectEvent.inLogs(logs, 'Deposited', {
|
||||
payee: payee1,
|
||||
weiAmount: amount,
|
||||
@ -34,8 +34,8 @@ function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
});
|
||||
|
||||
it('can add multiple deposits on a single account', async function () {
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount.muln(2) });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount.muln(2) });
|
||||
|
||||
expect(await balance.current(this.escrow.address)).to.be.bignumber.equal(amount.muln(3));
|
||||
|
||||
@ -43,8 +43,8 @@ function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
});
|
||||
|
||||
it('can track deposits to multiple accounts', async function () {
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(payee2, { from: primary, value: amount.muln(2) });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
await this.escrow.deposit(payee2, { from: owner, value: amount.muln(2) });
|
||||
|
||||
expect(await balance.current(this.escrow.address)).to.be.bignumber.equal(amount.muln(3));
|
||||
|
||||
@ -58,8 +58,8 @@ function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
it('can withdraw payments', async function () {
|
||||
const balanceTracker = await balance.tracker(payee1);
|
||||
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
await this.escrow.withdraw(payee1, { from: primary });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
await this.escrow.withdraw(payee1, { from: owner });
|
||||
|
||||
expect(await balanceTracker.delta()).to.be.bignumber.equal(amount);
|
||||
|
||||
@ -68,18 +68,18 @@ function shouldBehaveLikeEscrow (primary, [payee1, payee2]) {
|
||||
});
|
||||
|
||||
it('can do an empty withdrawal', async function () {
|
||||
await this.escrow.withdraw(payee1, { from: primary });
|
||||
await this.escrow.withdraw(payee1, { from: owner });
|
||||
});
|
||||
|
||||
it('only the primary account can withdraw', async function () {
|
||||
it('only the owner can withdraw', async function () {
|
||||
await expectRevert(this.escrow.withdraw(payee1, { from: payee1 }),
|
||||
'Secondary: caller is not the primary account'
|
||||
'Ownable: caller is not the owner'
|
||||
);
|
||||
});
|
||||
|
||||
it('emits a withdrawn event', async function () {
|
||||
await this.escrow.deposit(payee1, { from: primary, value: amount });
|
||||
const { logs } = await this.escrow.withdraw(payee1, { from: primary });
|
||||
await this.escrow.deposit(payee1, { from: owner, value: amount });
|
||||
const { logs } = await this.escrow.withdraw(payee1, { from: owner });
|
||||
expectEvent.inLogs(logs, 'Withdrawn', {
|
||||
payee: payee1,
|
||||
weiAmount: amount,
|
||||
|
||||
@ -6,11 +6,11 @@ const { shouldBehaveLikeEscrow } = require('./Escrow.behavior');
|
||||
const Escrow = contract.fromArtifact('Escrow');
|
||||
|
||||
describe('Escrow', function () {
|
||||
const [ primary, ...otherAccounts ] = accounts;
|
||||
const [ owner, ...otherAccounts ] = accounts;
|
||||
|
||||
beforeEach(async function () {
|
||||
this.escrow = await Escrow.new({ from: primary });
|
||||
this.escrow = await Escrow.new({ from: owner });
|
||||
});
|
||||
|
||||
shouldBehaveLikeEscrow(primary, otherAccounts);
|
||||
shouldBehaveLikeEscrow(owner, otherAccounts);
|
||||
});
|
||||
|
||||
@ -8,20 +8,20 @@ const { expect } = require('chai');
|
||||
const RefundEscrow = contract.fromArtifact('RefundEscrow');
|
||||
|
||||
describe('RefundEscrow', function () {
|
||||
const [ primary, beneficiary, refundee1, refundee2 ] = accounts;
|
||||
const [ owner, beneficiary, refundee1, refundee2 ] = accounts;
|
||||
|
||||
const amount = ether('54');
|
||||
const refundees = [refundee1, refundee2];
|
||||
|
||||
it('requires a non-null beneficiary', async function () {
|
||||
await expectRevert(
|
||||
RefundEscrow.new(ZERO_ADDRESS, { from: primary }), 'RefundEscrow: beneficiary is the zero address'
|
||||
RefundEscrow.new(ZERO_ADDRESS, { from: owner }), 'RefundEscrow: beneficiary is the zero address'
|
||||
);
|
||||
});
|
||||
|
||||
context('once deployed', function () {
|
||||
beforeEach(async function () {
|
||||
this.escrow = await RefundEscrow.new(beneficiary, { from: primary });
|
||||
this.escrow = await RefundEscrow.new(beneficiary, { from: owner });
|
||||
});
|
||||
|
||||
context('active state', function () {
|
||||
@ -31,44 +31,44 @@ describe('RefundEscrow', function () {
|
||||
});
|
||||
|
||||
it('accepts deposits', async function () {
|
||||
await this.escrow.deposit(refundee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(refundee1, { from: owner, value: amount });
|
||||
|
||||
expect(await this.escrow.depositsOf(refundee1)).to.be.bignumber.equal(amount);
|
||||
});
|
||||
|
||||
it('does not refund refundees', async function () {
|
||||
await this.escrow.deposit(refundee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(refundee1, { from: owner, value: amount });
|
||||
await expectRevert(this.escrow.withdraw(refundee1),
|
||||
'ConditionalEscrow: payee is not allowed to withdraw'
|
||||
);
|
||||
});
|
||||
|
||||
it('does not allow beneficiary withdrawal', async function () {
|
||||
await this.escrow.deposit(refundee1, { from: primary, value: amount });
|
||||
await this.escrow.deposit(refundee1, { from: owner, value: amount });
|
||||
await expectRevert(this.escrow.beneficiaryWithdraw(),
|
||||
'RefundEscrow: beneficiary can only withdraw while closed'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
it('only the primary account can enter closed state', async function () {
|
||||
it('only the owner can enter closed state', async function () {
|
||||
await expectRevert(this.escrow.close({ from: beneficiary }),
|
||||
'Secondary: caller is not the primary account'
|
||||
'Ownable: caller is not the owner'
|
||||
);
|
||||
|
||||
const { logs } = await this.escrow.close({ from: primary });
|
||||
const { logs } = await this.escrow.close({ from: owner });
|
||||
expectEvent.inLogs(logs, 'RefundsClosed');
|
||||
});
|
||||
|
||||
context('closed state', function () {
|
||||
beforeEach(async function () {
|
||||
await Promise.all(refundees.map(refundee => this.escrow.deposit(refundee, { from: primary, value: amount })));
|
||||
await Promise.all(refundees.map(refundee => this.escrow.deposit(refundee, { from: owner, value: amount })));
|
||||
|
||||
await this.escrow.close({ from: primary });
|
||||
await this.escrow.close({ from: owner });
|
||||
});
|
||||
|
||||
it('rejects deposits', async function () {
|
||||
await expectRevert(this.escrow.deposit(refundee1, { from: primary, value: amount }),
|
||||
await expectRevert(this.escrow.deposit(refundee1, { from: owner, value: amount }),
|
||||
'RefundEscrow: can only deposit while active'
|
||||
);
|
||||
});
|
||||
@ -86,36 +86,36 @@ describe('RefundEscrow', function () {
|
||||
});
|
||||
|
||||
it('prevents entering the refund state', async function () {
|
||||
await expectRevert(this.escrow.enableRefunds({ from: primary }),
|
||||
await expectRevert(this.escrow.enableRefunds({ from: owner }),
|
||||
'RefundEscrow: can only enable refunds while active'
|
||||
);
|
||||
});
|
||||
|
||||
it('prevents re-entering the closed state', async function () {
|
||||
await expectRevert(this.escrow.close({ from: primary }),
|
||||
await expectRevert(this.escrow.close({ from: owner }),
|
||||
'RefundEscrow: can only close while active'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
it('only the primary account can enter refund state', async function () {
|
||||
it('only the owner can enter refund state', async function () {
|
||||
await expectRevert(this.escrow.enableRefunds({ from: beneficiary }),
|
||||
'Secondary: caller is not the primary account'
|
||||
'Ownable: caller is not the owner'
|
||||
);
|
||||
|
||||
const { logs } = await this.escrow.enableRefunds({ from: primary });
|
||||
const { logs } = await this.escrow.enableRefunds({ from: owner });
|
||||
expectEvent.inLogs(logs, 'RefundsEnabled');
|
||||
});
|
||||
|
||||
context('refund state', function () {
|
||||
beforeEach(async function () {
|
||||
await Promise.all(refundees.map(refundee => this.escrow.deposit(refundee, { from: primary, value: amount })));
|
||||
await Promise.all(refundees.map(refundee => this.escrow.deposit(refundee, { from: owner, value: amount })));
|
||||
|
||||
await this.escrow.enableRefunds({ from: primary });
|
||||
await this.escrow.enableRefunds({ from: owner });
|
||||
});
|
||||
|
||||
it('rejects deposits', async function () {
|
||||
await expectRevert(this.escrow.deposit(refundee1, { from: primary, value: amount }),
|
||||
await expectRevert(this.escrow.deposit(refundee1, { from: owner, value: amount }),
|
||||
'RefundEscrow: can only deposit while active'
|
||||
);
|
||||
});
|
||||
@ -123,7 +123,7 @@ describe('RefundEscrow', function () {
|
||||
it('refunds refundees', async function () {
|
||||
for (const refundee of [refundee1, refundee2]) {
|
||||
const balanceTracker = await balance.tracker(refundee);
|
||||
await this.escrow.withdraw(refundee, { from: primary });
|
||||
await this.escrow.withdraw(refundee, { from: owner });
|
||||
expect(await balanceTracker.delta()).to.be.bignumber.equal(amount);
|
||||
}
|
||||
});
|
||||
@ -135,13 +135,13 @@ describe('RefundEscrow', function () {
|
||||
});
|
||||
|
||||
it('prevents entering the closed state', async function () {
|
||||
await expectRevert(this.escrow.close({ from: primary }),
|
||||
await expectRevert(this.escrow.close({ from: owner }),
|
||||
'RefundEscrow: can only close while active'
|
||||
);
|
||||
});
|
||||
|
||||
it('prevents re-entering the refund state', async function () {
|
||||
await expectRevert(this.escrow.enableRefunds({ from: primary }),
|
||||
await expectRevert(this.escrow.enableRefunds({ from: owner }),
|
||||
'RefundEscrow: can only enable refunds while active'
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user