* signing prefix added
* Minor improvement
* Tests changed
* Successfully tested
* Minor improvements
* Minor improvements
* Revert "Dangling commas are now required. (#1359)"
This reverts commit a6889776f4.
* updates
* fixes #1404
* approve failing test
* suggested changes done
* ISafeERC20 removed
* conflict fixes
* fixes #1205
* minor change
* suggested changes
* reviewed changes
* final update
63 lines
2.1 KiB
JavaScript
63 lines
2.1 KiB
JavaScript
const { ether } = require('../helpers/ether');
|
|
const shouldFail = require('../helpers/shouldFail');
|
|
|
|
const { BigNumber } = require('../helpers/setup');
|
|
|
|
const CappedCrowdsaleImpl = artifacts.require('CappedCrowdsaleImpl');
|
|
const SimpleToken = artifacts.require('SimpleToken');
|
|
|
|
contract('CappedCrowdsale', function ([_, wallet]) {
|
|
const rate = new BigNumber(1);
|
|
const cap = ether(100);
|
|
const lessThanCap = ether(60);
|
|
const tokenSupply = new BigNumber('1e22');
|
|
|
|
beforeEach(async function () {
|
|
this.token = await SimpleToken.new();
|
|
});
|
|
|
|
it('rejects a cap of zero', async function () {
|
|
await shouldFail.reverting(CappedCrowdsaleImpl.new(rate, wallet, this.token.address, 0));
|
|
});
|
|
|
|
context('with crowdsale', function () {
|
|
beforeEach(async function () {
|
|
this.crowdsale = await CappedCrowdsaleImpl.new(rate, wallet, this.token.address, cap);
|
|
await this.token.transfer(this.crowdsale.address, tokenSupply);
|
|
});
|
|
|
|
describe('accepting payments', function () {
|
|
it('should accept payments within cap', async function () {
|
|
await this.crowdsale.send(cap.minus(lessThanCap));
|
|
await this.crowdsale.send(lessThanCap);
|
|
});
|
|
|
|
it('should reject payments outside cap', async function () {
|
|
await this.crowdsale.send(cap);
|
|
await shouldFail.reverting(this.crowdsale.send(1));
|
|
});
|
|
|
|
it('should reject payments that exceed cap', async function () {
|
|
await shouldFail.reverting(this.crowdsale.send(cap.plus(1)));
|
|
});
|
|
});
|
|
|
|
describe('ending', function () {
|
|
it('should not reach cap if sent under cap', async function () {
|
|
await this.crowdsale.send(lessThanCap);
|
|
(await this.crowdsale.capReached()).should.equal(false);
|
|
});
|
|
|
|
it('should not reach cap if sent just under cap', async function () {
|
|
await this.crowdsale.send(cap.minus(1));
|
|
(await this.crowdsale.capReached()).should.equal(false);
|
|
});
|
|
|
|
it('should reach cap if cap sent', async function () {
|
|
await this.crowdsale.send(cap);
|
|
(await this.crowdsale.capReached()).should.equal(true);
|
|
});
|
|
});
|
|
});
|
|
});
|