2020-02-21 19:01:15 +00:00
const EmbarkJS = artifacts . require ( 'EmbarkJS' ) ;
2020-02-19 09:33:38 +00:00
const TestToken = artifacts . require ( 'TestToken' ) ;
2020-04-28 09:36:34 +00:00
const _ERC20Bucket = artifacts . require ( 'ERC20Bucket' ) ;
const ERC20BucketFactory = artifacts . require ( 'ERC20BucketFactory' ) ;
2020-02-18 19:23:31 +00:00
2020-02-19 11:28:05 +00:00
const TOTAL _SUPPLY = 10000 ;
const GIFT _AMOUNT = 10 ;
const REDEEM _CODE = web3 . utils . sha3 ( "hello world" ) ;
const NOW = Math . round ( new Date ( ) . getTime ( ) / 1000 ) ;
2020-04-23 12:51:05 +00:00
const START _TIME = NOW - 1 ;
2020-02-19 11:28:05 +00:00
const EXPIRATION _TIME = NOW + 60 * 60 * 24 ; // in 24 hours
2020-02-18 19:23:31 +00:00
let shop ,
2020-02-21 22:57:44 +00:00
user ,
relayer ,
keycard _1 ,
keycard _2 ;
2020-02-18 19:23:31 +00:00
config ( {
contracts : {
deploy : {
"TestToken" : {
2020-03-30 13:43:39 +00:00
args : [ "TEST" , 18 ] ,
2020-02-19 11:28:05 +00:00
} ,
2020-04-28 09:36:34 +00:00
"ERC20Bucket" : {
2020-04-23 12:51:05 +00:00
args : [ "$TestToken" , START _TIME , EXPIRATION _TIME ] ,
2020-02-21 19:01:15 +00:00
} ,
2020-04-28 09:36:34 +00:00
"ERC20BucketFactory" : {
2020-02-21 19:01:15 +00:00
args : [ ] ,
} ,
2020-02-18 19:23:31 +00:00
}
2020-02-19 13:35:11 +00:00
} ,
2020-02-18 19:23:31 +00:00
} , ( _err , _accounts ) => {
2020-02-21 22:57:44 +00:00
shop = _accounts [ 0 ] ;
user = _accounts [ 1 ] ;
relayer = _accounts [ 2 ] ;
keycard _1 = _accounts [ 3 ] ;
keycard _2 = _accounts [ 4 ] ;
2020-02-18 19:23:31 +00:00
} ) ;
let sendMethod ;
async function signRedeem ( contractAddress , signer , message ) {
const result = await web3 . eth . net . getId ( ) ;
2020-02-19 13:35:11 +00:00
let chainId = parseInt ( result ) ;
2020-04-01 16:27:06 +00:00
//FIXME: in tests, getChainID in the contract returns 1 so we hardcode it here to 1.
2020-02-19 13:35:11 +00:00
chainId = 1 ;
2020-02-18 19:23:31 +00:00
2020-04-01 16:27:06 +00:00
const domain = [
2020-02-18 19:23:31 +00:00
{ name : "name" , type : "string" } ,
{ name : "version" , type : "string" } ,
{ name : "chainId" , type : "uint256" } ,
{ name : "verifyingContract" , type : "address" }
] ;
2020-04-01 16:27:06 +00:00
const redeem = [
2020-04-02 11:28:41 +00:00
{ name : "blockNumber" , type : "uint256" } ,
{ name : "blockHash" , type : "bytes32" } ,
2020-02-18 19:23:31 +00:00
{ name : "receiver" , type : "address" } ,
{ name : "code" , type : "bytes32" } ,
] ;
2020-04-01 16:27:06 +00:00
const domainData = {
2020-04-28 09:36:34 +00:00
name : "KeycardERC20Bucket" ,
2020-02-18 19:23:31 +00:00
version : "1" ,
chainId : chainId ,
verifyingContract : contractAddress
} ;
2020-04-01 16:27:06 +00:00
const data = {
2020-02-18 19:23:31 +00:00
types : {
EIP712Domain : domain ,
Redeem : redeem ,
} ,
primaryType : "Redeem" ,
domain : domainData ,
message : message
} ;
return new Promise ( ( resolve , reject ) => {
sendMethod ( {
jsonrpc : '2.0' ,
id : Date . now ( ) . toString ( ) . substring ( 9 ) ,
method : "eth_signTypedData" ,
params : [ signer , data ] ,
2020-02-19 13:35:11 +00:00
from : signer
2020-02-18 19:23:31 +00:00
} , ( error , res ) => {
if ( error ) {
return reject ( error ) ;
}
resolve ( res . result ) ;
} ) ;
} ) ;
}
function mineAt ( timestamp ) {
return new Promise ( ( resolve , reject ) => {
sendMethod ( {
jsonrpc : '2.0' ,
method : "evm_mine" ,
params : [ timestamp ] ,
id : Date . now ( ) . toString ( ) . substring ( 9 )
} , ( error , res ) => {
if ( error ) {
return reject ( error ) ;
}
resolve ( res . result ) ;
} ) ;
} ) ;
}
2020-02-21 15:09:42 +00:00
if ( assert . match === undefined ) {
assert . match = ( message , pattern ) => {
assert ( pattern . test ( message ) , ` ${ message } doesn't match ${ pattern } ` ) ;
}
}
2020-04-28 09:36:34 +00:00
contract ( "ERC20Bucket" , function ( ) {
let ERC20Bucket ;
2020-02-21 19:01:15 +00:00
2020-02-18 19:23:31 +00:00
sendMethod = ( web3 . currentProvider . sendAsync ) ? web3 . currentProvider . sendAsync . bind ( web3 . currentProvider ) : web3 . currentProvider . send . bind ( web3 . currentProvider ) ;
2020-03-25 08:41:59 +00:00
it ( "deploy factory" , async ( ) => {
// only to test gas
2020-04-28 09:36:34 +00:00
const deploy = ERC20BucketFactory . deploy ( {
2020-03-25 08:41:59 +00:00
arguments : [ ]
} ) ;
const gas = await deploy . estimateGas ( ) ;
await deploy . send ( { gas } )
} ) ;
2020-02-21 19:01:15 +00:00
it ( "deploy bucket" , async ( ) => {
// only to test gas
2020-04-28 09:36:34 +00:00
const deploy = _ERC20Bucket . deploy ( {
2020-04-23 12:51:05 +00:00
arguments : [ TestToken . _address , START _TIME , EXPIRATION _TIME ]
2020-03-25 08:41:59 +00:00
} ) ;
const gas = await deploy . estimateGas ( ) ;
await deploy . send ( { gas } )
2020-02-21 19:01:15 +00:00
} ) ;
it ( "deploy bucket via factory" , async ( ) => {
2020-04-28 09:36:34 +00:00
const create = ERC20BucketFactory . methods . create ( TestToken . _address , START _TIME , EXPIRATION _TIME ) ;
2020-02-21 19:01:15 +00:00
const gas = await create . estimateGas ( ) ;
2020-04-24 16:59:08 +00:00
const receipt = await create . send ( {
from : shop ,
gas : gas ,
} ) ;
const bucketAddress = receipt . events . BucketCreated . returnValues . bucket ;
2020-04-28 09:36:34 +00:00
const jsonInterface = _ERC20Bucket . options . jsonInterface ;
ERC20Bucket = new EmbarkJS . Blockchain . Contract ( {
2020-04-24 16:59:08 +00:00
abi : jsonInterface ,
address : bucketAddress ,
} ) ;
} ) ;
2020-04-29 10:50:25 +00:00
it ( "return correct bucket type" , async function ( ) {
let bucketType = await ERC20Bucket . methods . bucketType ( ) . call ( ) ;
2020-04-30 05:34:24 +00:00
assert . equal ( parseInt ( bucketType ) , 20 ) ;
2020-04-29 10:50:25 +00:00
} ) ;
2020-02-19 11:28:05 +00:00
it ( "shop buys 100 tokens" , async function ( ) {
let supply = await TestToken . methods . totalSupply ( ) . call ( ) ;
assert . equal ( parseInt ( supply ) , 0 ) ;
2020-02-18 19:23:31 +00:00
2020-02-19 11:28:05 +00:00
await TestToken . methods . mint ( TOTAL _SUPPLY ) . send ( {
from : shop ,
} ) ;
2020-02-18 19:23:31 +00:00
2020-02-19 11:28:05 +00:00
supply = await TestToken . methods . totalSupply ( ) . call ( ) ;
assert . equal ( parseInt ( supply ) , TOTAL _SUPPLY ) ;
2020-02-18 19:23:31 +00:00
2020-02-19 11:28:05 +00:00
let shopBalance = await TestToken . methods . balanceOf ( shop ) . call ( ) ;
assert . equal ( parseInt ( shopBalance ) , TOTAL _SUPPLY ) ;
} ) ;
2020-02-18 19:23:31 +00:00
2020-02-21 15:09:42 +00:00
it ( "add supply" , async function ( ) {
2020-04-28 09:36:34 +00:00
let bucketBalance = await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( bucketBalance ) , 0 , ` bucket balance before is ${ bucketBalance } instead of 0 ` ) ;
2020-02-19 09:33:38 +00:00
2020-02-19 11:28:05 +00:00
let shopBalance = await TestToken . methods . balanceOf ( shop ) . call ( ) ;
assert . equal ( parseInt ( shopBalance ) , TOTAL _SUPPLY , ` shop balance before is ${ shopBalance } instead of ${ TOTAL _SUPPLY } ` ) ;
2020-02-19 09:33:38 +00:00
2020-04-28 09:36:34 +00:00
const transfer = TestToken . methods . transfer ( ERC20Bucket . _address , TOTAL _SUPPLY ) ;
2020-02-21 15:09:42 +00:00
const transferGas = await transfer . estimateGas ( ) ;
await transfer . send ( {
2020-02-19 11:28:05 +00:00
from : shop ,
2020-02-21 15:09:42 +00:00
gas : transferGas ,
2020-02-19 11:28:05 +00:00
} ) ;
2020-02-19 09:33:38 +00:00
2020-04-28 09:36:34 +00:00
bucketBalance = await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( bucketBalance ) , TOTAL _SUPPLY , ` bucket balance after is ${ bucketBalance } instead of ${ TOTAL _SUPPLY } ` ) ;
2020-02-19 09:33:38 +00:00
2020-02-19 11:28:05 +00:00
shopBalance = await TestToken . methods . balanceOf ( shop ) . call ( ) ;
assert . equal ( parseInt ( shopBalance ) , 0 , ` shop balance after is ${ shopBalance } instead of 0 ` ) ;
2020-02-19 09:33:38 +00:00
2020-04-28 09:36:34 +00:00
let totalSupply = await ERC20Bucket . methods . totalSupply ( ) . call ( ) ;
2020-02-19 11:28:05 +00:00
assert . equal ( parseInt ( totalSupply ) , TOTAL _SUPPLY , ` total contract supply is ${ totalSupply } instead of ${ TOTAL _SUPPLY } ` ) ;
2020-04-28 09:36:34 +00:00
let availableSupply = await ERC20Bucket . methods . availableSupply ( ) . call ( ) ;
2020-02-19 11:28:05 +00:00
assert . equal ( parseInt ( availableSupply ) , TOTAL _SUPPLY , ` available contract supply is ${ availableSupply } instead of ${ TOTAL _SUPPLY } ` ) ;
2020-02-18 19:23:31 +00:00
} ) ;
2020-04-28 09:36:34 +00:00
async function testCreateRedeemable ( keycard , amount ) {
let initialSupply = await ERC20Bucket . methods . totalSupply ( ) . call ( ) ;
let initialAvailableSupply = await ERC20Bucket . methods . availableSupply ( ) . call ( ) ;
2020-02-21 15:09:42 +00:00
2020-02-19 11:28:05 +00:00
const redeemCodeHash = web3 . utils . sha3 ( REDEEM _CODE ) ;
2020-04-28 09:36:34 +00:00
const createRedeemable = ERC20Bucket . methods . createRedeemable ( keycard , amount , redeemCodeHash ) ;
const createRedeemableGas = await createRedeemable . estimateGas ( ) ;
await createRedeemable . send ( {
2020-02-19 11:28:05 +00:00
from : shop ,
2020-04-28 09:36:34 +00:00
gas : createRedeemableGas ,
2020-02-19 11:28:05 +00:00
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
let totalSupply = await ERC20Bucket . methods . totalSupply ( ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( totalSupply ) , parseInt ( initialSupply ) , ` totalSupply is ${ totalSupply } instead of ${ initialSupply } ` ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
let availableSupply = await ERC20Bucket . methods . availableSupply ( ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( availableSupply ) , parseInt ( initialAvailableSupply ) - amount ) ;
2020-02-19 11:28:05 +00:00
}
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
it ( "createRedeemable should fail if amount is zero" , async function ( ) {
2020-02-19 11:28:05 +00:00
try {
2020-04-28 09:36:34 +00:00
await testCreateRedeemable ( keycard _1 , 0 ) ;
assert . fail ( "createRedeemable should have failed" ) ;
2020-02-19 11:28:05 +00:00
} catch ( e ) {
assert . match ( e . message , /invalid amount/ ) ;
}
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
it ( "createRedeemable fails if amount > totalSupply" , async function ( ) {
2020-02-19 11:28:05 +00:00
try {
2020-04-28 09:36:34 +00:00
await testCreateRedeemable ( keycard _1 , TOTAL _SUPPLY + 1 ) ;
assert . fail ( "createRedeemable should have failed" ) ;
2020-02-19 11:28:05 +00:00
} catch ( e ) {
assert . match ( e . message , /low supply/ ) ;
}
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
it ( "createRedeemable" , async function ( ) {
await testCreateRedeemable ( keycard _1 , GIFT _AMOUNT ) ;
2020-02-19 11:28:05 +00:00
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
it ( "createRedeemable should fail if keycard has already been used" , async function ( ) {
2020-02-19 11:28:05 +00:00
try {
2020-04-28 09:36:34 +00:00
await testCreateRedeemable ( keycard _1 , 1 ) ;
assert . fail ( "createRedeemable should have failed" ) ;
2020-02-19 11:28:05 +00:00
} catch ( e ) {
2020-02-21 19:01:15 +00:00
assert . match ( e . message , /recipient already used/ ) ;
2020-02-19 11:28:05 +00:00
}
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
it ( "createRedeemable amount > availableSupply" , async function ( ) {
2020-02-19 11:28:05 +00:00
try {
2020-04-28 09:36:34 +00:00
await testCreateRedeemable ( keycard _2 , TOTAL _SUPPLY - GIFT _AMOUNT + 1 ) ;
assert . fail ( "createRedeemable should have failed" ) ;
2020-02-19 11:28:05 +00:00
} catch ( e ) {
assert . match ( e . message , /low supply/ ) ;
}
} ) ;
2020-02-18 19:23:31 +00:00
2020-04-02 11:28:41 +00:00
async function testRedeem ( receiver , recipient , signer , relayer , redeemCode , blockNumber , blockHash ) {
2020-04-28 09:36:34 +00:00
let initialBucketBalance = await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ;
2020-02-21 15:09:42 +00:00
let initialUserBalance = await TestToken . methods . balanceOf ( user ) . call ( ) ;
2020-04-28 09:36:34 +00:00
let initialRedeemableSupply = await ERC20Bucket . methods . redeemableSupply ( ) . call ( ) ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
let redeemable = await ERC20Bucket . methods . redeemables ( recipient ) . call ( ) ;
const amount = parseInt ( redeemable . data ) ;
2020-02-18 19:23:31 +00:00
2020-02-19 11:28:05 +00:00
const message = {
2020-04-02 11:28:41 +00:00
blockNumber : blockNumber ,
blockHash : blockHash ,
2020-02-21 15:09:42 +00:00
receiver : receiver ,
2020-02-19 11:28:05 +00:00
code : redeemCode ,
} ;
2020-02-18 19:23:31 +00:00
2020-04-28 09:36:34 +00:00
const sig = await signRedeem ( ERC20Bucket . _address , signer , message ) ;
const redeem = ERC20Bucket . methods . redeem ( message , sig ) ;
2020-02-19 11:28:05 +00:00
const redeemGas = await redeem . estimateGas ( ) ;
2020-04-29 10:33:14 +00:00
let receipt = await redeem . send ( {
2020-02-21 22:57:44 +00:00
from : relayer ,
2020-02-19 11:28:05 +00:00
gas : redeemGas ,
} ) ;
2020-04-29 10:33:14 +00:00
assert . equal ( receipt . events . Redeemed . returnValues . recipient , recipient ) ;
assert . equal ( receipt . events . Redeemed . returnValues . data , redeemable . data ) ;
2020-02-19 11:28:05 +00:00
2020-02-21 15:09:42 +00:00
let expectedBucketBalance = parseInt ( initialBucketBalance ) - amount ;
2020-04-28 09:36:34 +00:00
let bucketBalance = await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( bucketBalance ) , expectedBucketBalance , ` bucketBalance after redeem should be ${ expectedBucketBalance } instead of ${ bucketBalance } ` ) ;
let expectedUserBalance = parseInt ( initialUserBalance + amount ) ;
2020-02-19 11:28:05 +00:00
userBalance = await TestToken . methods . balanceOf ( user ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( userBalance ) , expectedUserBalance , ` user ` , ` userBalance after redeem should be ${ expectedUserBalance } instead of ${ userBalance } ` ) ;
let expectedRedeemableSupply = initialRedeemableSupply - amount ;
2020-04-28 09:36:34 +00:00
let redeemableSupply = await ERC20Bucket . methods . redeemableSupply ( ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( redeemableSupply ) , expectedRedeemableSupply , ` redeemableSupply after redeem should be ${ expectedRedeemableSupply } instead of ${ redeemableSupply } ` ) ;
2020-02-19 11:28:05 +00:00
}
2020-04-23 12:51:05 +00:00
it ( "cannot redeem before start date" , async function ( ) {
const block = await web3 . eth . getBlock ( "latest" ) ;
await mineAt ( START _TIME ) ;
try {
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , block . number , block . hash ) ;
assert . fail ( "redeem should have failed" ) ;
} catch ( e ) {
assert . match ( e . message , /not yet started/ ) ;
}
} ) ;
2020-02-19 11:28:05 +00:00
it ( "cannot redeem after expiration date" , async function ( ) {
2020-04-02 11:28:41 +00:00
const block = await web3 . eth . getBlock ( "latest" ) ;
2020-02-19 11:28:05 +00:00
await mineAt ( EXPIRATION _TIME ) ;
2020-04-02 11:28:41 +00:00
2020-02-19 11:28:05 +00:00
try {
2020-04-02 11:28:41 +00:00
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , block . number , block . hash ) ;
2020-02-19 11:28:05 +00:00
assert . fail ( "redeem should have failed" ) ;
} catch ( e ) {
assert . match ( e . message , /expired/ ) ;
}
} ) ;
it ( "cannot redeem with invalid code" , async function ( ) {
2020-04-02 11:28:41 +00:00
const block = await web3 . eth . getBlock ( "latest" ) ;
2020-02-19 11:28:05 +00:00
await mineAt ( NOW ) ;
try {
2020-04-02 11:28:41 +00:00
await testRedeem ( user , keycard _1 , keycard _1 , relayer , web3 . utils . sha3 ( "bad-code" ) , block . number , block . hash ) ;
2020-02-19 11:28:05 +00:00
assert . fail ( "redeem should have failed" ) ;
} catch ( e ) {
assert . match ( e . message , /invalid code/ ) ;
}
} ) ;
2020-03-25 08:23:22 +00:00
it ( "cannot redeem with invalid recipient" , async function ( ) {
2020-04-02 11:28:41 +00:00
const block = await web3 . eth . getBlock ( "latest" ) ;
2020-02-21 15:09:42 +00:00
await mineAt ( NOW ) ;
try {
2020-04-02 11:28:41 +00:00
await testRedeem ( user , keycard _1 , keycard _2 , relayer , REDEEM _CODE , block . number , block . hash ) ;
2020-02-21 15:09:42 +00:00
assert . fail ( "redeem should have failed" ) ;
} catch ( e ) {
2020-03-25 08:23:22 +00:00
assert . match ( e . message , /not found/ ) ;
2020-02-21 15:09:42 +00:00
}
} ) ;
2020-04-02 11:28:41 +00:00
it ( "cannot redeem with a block in the future" , async function ( ) {
const block = await web3 . eth . getBlock ( "latest" ) ;
await mineAt ( NOW ) ;
try {
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , ( block . number + 2 ) , "0x0000000000000000000000000000000000000000000000000000000000000000" ) ;
} catch ( e ) {
assert . match ( e . message , /future/ ) ;
}
} ) ;
it ( "cannot redeem with an old block" , async function ( ) {
const currentBlock = await web3 . eth . getBlock ( "latest" ) ;
const block = await web3 . eth . getBlock ( currentBlock . number - 10 ) ;
await mineAt ( NOW ) ;
try {
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , block . number , block . hash ) ;
} catch ( e ) {
assert . match ( e . message , /too old/ ) ;
}
} ) ;
it ( "cannot redeem with an invalid hash" , async function ( ) {
const block = await web3 . eth . getBlock ( "latest" ) ;
await mineAt ( NOW ) ;
try {
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , block . number , "0x0000000000000000000000000000000000000000000000000000000000000000" ) ;
} catch ( e ) {
assert . match ( e . message , /invalid block hash/ ) ;
}
2020-04-23 11:42:08 +00:00
} ) ;
2020-04-02 11:28:41 +00:00
2020-02-19 11:28:05 +00:00
it ( "can redeem before expiration date" , async function ( ) {
2020-04-02 11:28:41 +00:00
const block = await web3 . eth . getBlock ( "latest" ) ;
2020-02-19 11:28:05 +00:00
await mineAt ( NOW ) ;
2020-04-02 11:28:41 +00:00
await testRedeem ( user , keycard _1 , keycard _1 , relayer , REDEEM _CODE , block . number , block . hash ) ;
2020-02-19 11:28:05 +00:00
} ) ;
async function testKill ( ) {
2020-02-21 15:09:42 +00:00
let initialShopBalance = parseInt ( await TestToken . methods . balanceOf ( shop ) . call ( ) ) ;
2020-04-28 09:36:34 +00:00
let initialBucketBalance = parseInt ( await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ) ;
2020-02-19 11:28:05 +00:00
2020-04-28 09:36:34 +00:00
await ERC20Bucket . methods . kill ( ) . send ( {
2020-02-19 11:28:05 +00:00
from : shop ,
} ) ;
2020-02-21 15:09:42 +00:00
let expectedShopBalance = initialShopBalance + initialBucketBalance ;
let shopBalance = await TestToken . methods . balanceOf ( shop ) . call ( ) ;
assert . equal ( parseInt ( shopBalance ) , expectedShopBalance , ` shop balance after kill is ${ shopBalance } instead of ${ expectedShopBalance } ` ) ;
2020-02-19 11:28:05 +00:00
2020-04-28 09:36:34 +00:00
let bucketBalance = await TestToken . methods . balanceOf ( ERC20Bucket . _address ) . call ( ) ;
2020-02-21 15:09:42 +00:00
assert . equal ( parseInt ( bucketBalance ) , 0 , ` bucketBalance after kill is ${ bucketBalance } instead of 0 ` ) ;
2020-02-19 11:28:05 +00:00
}
it ( "shop cannot kill contract before expirationTime" , async function ( ) {
await mineAt ( NOW ) ;
try {
await testKill ( ) ;
assert . fail ( "redeem should have failed" ) ;
} catch ( e ) {
assert . match ( e . message , /not expired yet/ ) ;
}
} ) ;
it ( "shop can kill contract after expirationTime" , async function ( ) {
await mineAt ( EXPIRATION _TIME ) ;
await testKill ( ) ;
2020-04-23 11:42:08 +00:00
await mineAt ( NOW ) ;
2020-02-19 11:28:05 +00:00
} ) ;
2020-02-18 19:23:31 +00:00
} ) ;