Add LogCancel test to subscribeAsync

This commit is contained in:
Leonid Logvinov 2017-06-09 17:49:50 +02:00
parent 3a9d07c40c
commit b63c973d14
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -626,18 +626,34 @@ describe('ExchangeWrapper', () => {
fromBlock: 0,
toBlock: 'latest',
};
const fillTakerAmountInBaseUnits = new BigNumber(1);
await zeroEx.exchange.subscribeAsync(ExchangeEvents.LogFill, subscriptionOpts,
indexFilterValues, (err: Error, event: ContractEvent) => {
expect(err).to.be.null();
expect(event).to.not.be.undefined();
expect(event.args.filledValueT).to.be.bignumber.equal(fillTakerAmountInBaseUnits);
done();
});
const fillTakerAmountInBaseUnits = new BigNumber(1);
await zeroEx.exchange.fillOrderAsync(
signedOrder, fillTakerAmountInBaseUnits, shouldCheckTransfer, takerAddress,
);
})();
});
it.only('Should receive the LogCancel event when an order is cancelled', (done: DoneCallback) => {
(async () => {
const subscriptionOpts: SubscriptionOpts = {
fromBlock: 0,
toBlock: 'latest',
};
const cancelTakerAmountInBaseUnits = new BigNumber(1);
await zeroEx.exchange.subscribeAsync(ExchangeEvents.LogCancel, subscriptionOpts,
indexFilterValues, (err: Error, event: ContractEvent) => {
expect(err).to.be.null();
expect(event.args.cancelledValueT).to.be.bignumber.equal(cancelTakerAmountInBaseUnits);
done();
});
await zeroEx.exchange.cancelOrderAsync(signedOrder, cancelTakerAmountInBaseUnits);
})();
});
it('Outstanding subscriptions are cancelled when zeroEx.setProviderAsync called', (done: DoneCallback) => {
(async () => {
const subscriptionOpts: SubscriptionOpts = {