All tests now use account names, and dont use accounts[0] (except ERC… (#1137)

* All tests now use account names, and dont use accounts[0] (except ERC721)

* Added account names to some missing contracts.
This commit is contained in:
Nicolás Venturo
2018-08-02 16:55:31 -03:00
committed by GitHub
parent f49721576f
commit 4544df47da
41 changed files with 210 additions and 300 deletions

View File

@ -2,51 +2,36 @@ const { assertRevert } = require('../helpers/assertRevert');
const Claimable = artifacts.require('Claimable');
contract('Claimable', function (accounts) {
contract('Claimable', function ([_, owner, newOwner, anyone]) {
let claimable;
beforeEach(async function () {
claimable = await Claimable.new();
});
it('should have an owner', async function () {
const owner = await claimable.owner();
assert.isTrue(owner !== 0);
});
it('changes pendingOwner after transfer', async function () {
const newOwner = accounts[1];
await claimable.transferOwnership(newOwner);
const pendingOwner = await claimable.pendingOwner();
assert.isTrue(pendingOwner === newOwner);
});
it('should prevent to claimOwnership from no pendingOwner', async function () {
await assertRevert(claimable.claimOwnership({ from: accounts[2] }));
it('should prevent to claimOwnership from anyone', async function () {
await assertRevert(claimable.claimOwnership({ from: anyone }));
});
it('should prevent non-owners from transfering', async function () {
const other = accounts[2];
const owner = await claimable.owner.call();
assert.isTrue(owner !== other);
await assertRevert(claimable.transferOwnership(other, { from: other }));
await assertRevert(claimable.transferOwnership(anyone, { from: anyone }));
});
describe('after initiating a transfer', function () {
let newOwner;
beforeEach(async function () {
newOwner = accounts[1];
await claimable.transferOwnership(newOwner);
});
it('changes allow pending owner to claim ownership', async function () {
await claimable.claimOwnership({ from: newOwner });
const owner = await claimable.owner();
assert.isTrue(owner === newOwner);
assert.isTrue((await claimable.owner()) === newOwner);
});
});
});