aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-06-08 23:02:30 +0800
committerGitHub <noreply@github.com>2017-06-08 23:02:30 +0800
commit5513d011757c21c22164c0296f3d18fc5dbae204 (patch)
tree8c40903620083eb48c5758e0df81e3a3a783e97b /test
parentea4cf16eae4bab31c5da522bb582a5c83af53705 (diff)
parent2195bc61347d6d132b6ce23ec05186c4afa4dd46 (diff)
downloaddexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar.gz
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar.bz2
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar.lz
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar.xz
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.tar.zst
dexon-sol-tools-5513d011757c21c22164c0296f3d18fc5dbae204.zip
Merge branch 'master' into is-valid-signature-contract
Diffstat (limited to 'test')
-rw-r--r--test/exchange_wrapper_test.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts
index bd52f155a..fa95caa18 100644
--- a/test/exchange_wrapper_test.ts
+++ b/test/exchange_wrapper_test.ts
@@ -591,4 +591,26 @@ describe('ExchangeWrapper', () => {
})();
});
});
+ describe('#getOrderHashHexUsingContractCallAsync', () => {
+ let makerTokenAddress: string;
+ let takerTokenAddress: string;
+ let makerAddress: string;
+ let takerAddress: string;
+ const fillableAmount = new BigNumber(5);
+ before(async () => {
+ [, makerAddress, takerAddress] = userAddresses;
+ const [makerToken, takerToken] = tokenUtils.getNonProtocolTokens();
+ makerTokenAddress = makerToken.address;
+ takerTokenAddress = takerToken.address;
+ });
+ it('get\'s the same hash as the local function', async () => {
+ const signedOrder = await fillScenarios.createFillableSignedOrderAsync(
+ makerTokenAddress, takerTokenAddress, makerAddress, takerAddress, fillableAmount,
+ );
+ const orderHash = await zeroEx.getOrderHashHexAsync(signedOrder);
+ const orderHashFromContract = await (zeroEx.exchange as any)
+ .getOrderHashHexUsingContractCallAsync(signedOrder);
+ expect(orderHash).to.equal(orderHashFromContract);
+ });
+ });
});