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.
53 lines
1.5 KiB
53 lines
1.5 KiB
|
|
import assertRevert from './helpers/assertRevert';
|
|
|
|
var Claimable = artifacts.require('../contracts/ownership/Claimable.sol');
|
|
|
|
contract('Claimable', function (accounts) {
|
|
let claimable;
|
|
|
|
beforeEach(async function () {
|
|
claimable = await Claimable.new();
|
|
});
|
|
|
|
it('should have an owner', async function () {
|
|
let owner = await claimable.owner();
|
|
assert.isTrue(owner !== 0);
|
|
});
|
|
|
|
it('changes pendingOwner after transfer', async function () {
|
|
let newOwner = accounts[1];
|
|
await claimable.transferOwnership(newOwner);
|
|
let 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 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 }));
|
|
});
|
|
|
|
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 });
|
|
let owner = await claimable.owner();
|
|
|
|
assert.isTrue(owner === newOwner);
|
|
});
|
|
});
|
|
});
|
|
|