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.
45 lines
1.6 KiB
45 lines
1.6 KiB
import shouldBehaveLikeMintedCrowdsale from './MintedCrowdsale.behaviour';
|
|
import ether from '../helpers/ether';
|
|
|
|
const BigNumber = web3.BigNumber;
|
|
|
|
const MintedCrowdsale = artifacts.require('MintedCrowdsaleImpl');
|
|
const MintableToken = artifacts.require('MintableToken');
|
|
const RBACMintableToken = artifacts.require('RBACMintableToken');
|
|
|
|
contract('MintedCrowdsale', function ([_, investor, wallet, purchaser]) {
|
|
const rate = new BigNumber(1000);
|
|
const value = ether(5);
|
|
|
|
describe('using MintableToken', function () {
|
|
beforeEach(async function () {
|
|
this.token = await MintableToken.new();
|
|
this.crowdsale = await MintedCrowdsale.new(rate, wallet, this.token.address);
|
|
await this.token.transferOwnership(this.crowdsale.address);
|
|
});
|
|
|
|
it('should be token owner', async function () {
|
|
const owner = await this.token.owner();
|
|
owner.should.equal(this.crowdsale.address);
|
|
});
|
|
|
|
shouldBehaveLikeMintedCrowdsale([_, investor, wallet, purchaser], rate, value);
|
|
});
|
|
|
|
describe('using RBACMintableToken', function () {
|
|
const ROLE_MINTER = 'minter';
|
|
|
|
beforeEach(async function () {
|
|
this.token = await RBACMintableToken.new();
|
|
this.crowdsale = await MintedCrowdsale.new(rate, wallet, this.token.address);
|
|
await this.token.addMinter(this.crowdsale.address);
|
|
});
|
|
|
|
it('should have minter role on token', async function () {
|
|
const isMinter = await this.token.hasRole(this.crowdsale.address, ROLE_MINTER);
|
|
isMinter.should.equal(true);
|
|
});
|
|
|
|
shouldBehaveLikeMintedCrowdsale([_, investor, wallet, purchaser], rate, value);
|
|
});
|
|
});
|
|
|