Port isValidOrderHash and tests

This commit is contained in:
Leonid Logvinov
2017-05-25 12:08:54 +02:00
parent 334d2f175f
commit 5be5debdf1
4 changed files with 26 additions and 3 deletions

View File

@@ -86,4 +86,14 @@ describe('ZeroEx library', () => {
expect(salt.lessThan(twoPow256)).to.be.true;
});
});
describe('#isValidOrderHash', () => {
it('returns false if the length is wrong', () => {
const isValid = ZeroEx.isValidOrderHash('0xdeadbeef');
expect(isValid).to.be.false;
});
it('returns true if order hash is correct', () => {
const isValid = ZeroEx.isValidOrderHash('0x' + Array(65).join('0'));
expect(isValid).to.be.true;
});
});
});