aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-08 01:12:43 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-08 01:12:43 +0800
commit01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d (patch)
tree01442f895ec5ad6963922162f6846cc7dd292d37
parentedbbf5a215209bcb67052ca6cb83bb40e149d9a7 (diff)
downloaddexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar.gz
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar.bz2
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar.lz
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar.xz
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.tar.zst
dexon-0x-contracts-01c33ef8b7929ae936fd4bb84bb5d3aee3e63e8d.zip
Add no-op test
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts4
-rw-r--r--test/exchange_wrapper_test.ts6
2 files changed, 6 insertions, 4 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index c304aeb08..a15df5a77 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -144,7 +144,9 @@ export class ExchangeWrapper extends ContractWrapper {
*/
public async batchFillOrderAsync(orderFillRequests: OrderFillRequest[],
shouldCheckTransfer: boolean, takerAddress: string): Promise<void> {
- assert.assert(!_.isEmpty(orderFillRequests), 'Cannot fill an empty batch');
+ if (_.isEmpty(orderFillRequests)) {
+ return;
+ }
assert.isBoolean('shouldCheckTransfer', shouldCheckTransfer);
await assert.isSenderAddressAsync('takerAddress', takerAddress, this.web3Wrapper);
_.forEach(orderFillRequests,
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts
index 748816949..bd2536741 100644
--- a/test/exchange_wrapper_test.ts
+++ b/test/exchange_wrapper_test.ts
@@ -348,10 +348,10 @@ describe('ExchangeWrapper', () => {
},
];
});
- describe('failed batch fills', () => {
-
- });
describe('successful batch fills', () => {
+ it('should no-op for an empty batch', async () => {
+ await zeroEx.exchange.batchFillOrderAsync([], shouldCheckTransfer, takerAddress);
+ });
it('should successfully fill multiple orders', async () => {
await zeroEx.exchange.batchFillOrderAsync(orderFillBatch, shouldCheckTransfer, takerAddress);
const filledAmount = await zeroEx.exchange.getFilledTakerAmountAsync(signedOrderHashHex);