aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/libraries/lib_bytes.ts
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-06-08 04:56:10 +0800
committerGreg Hysen <greg.hysen@gmail.com>2018-06-08 06:39:40 +0800
commit0d4ff5a916694be7cb5772bbd7d3e610522e09df (patch)
treee98c99ca45b7b16b8ec975460321a03c5c3f4b4c /packages/contracts/test/libraries/lib_bytes.ts
parent8ace41d14473462dda297d4dd970b095e747e2b0 (diff)
downloaddexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar.gz
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar.bz2
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar.lz
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar.xz
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.tar.zst
dexon-sol-tools-0d4ff5a916694be7cb5772bbd7d3e610522e09df.zip
Updated tests to use new revert handler
Diffstat (limited to 'packages/contracts/test/libraries/lib_bytes.ts')
-rw-r--r--packages/contracts/test/libraries/lib_bytes.ts22
1 files changed, 11 insertions, 11 deletions
diff --git a/packages/contracts/test/libraries/lib_bytes.ts b/packages/contracts/test/libraries/lib_bytes.ts
index 5830c5753..e0d214ea2 100644
--- a/packages/contracts/test/libraries/lib_bytes.ts
+++ b/packages/contracts/test/libraries/lib_bytes.ts
@@ -385,27 +385,27 @@ describe('LibBytes', () => {
it('should fail if the byte array is too short to hold the length of a nested byte array)', async () => {
// The length of the nested array is 32 bytes. By storing less than 32 bytes, a length cannot be read.
const offset = new BigNumber(0);
- return expect(libBytes.publicReadBytes.callAsync(byteArrayShorterThan32Bytes, offset)).to.be.rejectedWith(
- constants.REVERT,
+ return expectRevertOrAlwaysFailingTransactionAsync(
+ libBytes.publicReadBytes.callAsync(byteArrayShorterThan32Bytes, offset),
);
});
it('should fail if we store a nested byte array length, without a nested byte array)', async () => {
const offset = new BigNumber(0);
- return expect(libBytes.publicReadBytes.callAsync(testBytes32, offset)).to.be.rejectedWith(constants.REVERT);
+ return expectRevertOrAlwaysFailingTransactionAsync(libBytes.publicReadBytes.callAsync(testBytes32, offset));
});
it('should fail if the length between the offset and end of the byte array is too short to hold the length of a nested byte array)', async () => {
const badOffset = new BigNumber(ethUtil.toBuffer(byteArrayShorterThan32Bytes).byteLength);
- return expect(
+ return expectRevertOrAlwaysFailingTransactionAsync(
libBytes.publicReadBytes.callAsync(byteArrayShorterThan32Bytes, badOffset),
- ).to.be.rejectedWith(constants.REVERT);
+ );
});
it('should fail if the length between the offset and end of the byte array is too short to hold the nested byte array)', async () => {
const badOffset = new BigNumber(ethUtil.toBuffer(testBytes32).byteLength);
- return expect(libBytes.publicReadBytes.callAsync(testBytes32, badOffset)).to.be.rejectedWith(
- constants.REVERT,
+ return expectRevertOrAlwaysFailingTransactionAsync(
+ libBytes.publicReadBytes.callAsync(testBytes32, badOffset),
);
});
});
@@ -489,16 +489,16 @@ describe('LibBytes', () => {
it('should fail if the byte array is too short to hold the length of a nested byte array)', async () => {
const offset = new BigNumber(0);
const emptyByteArray = ethUtil.bufferToHex(new Buffer(1));
- return expect(libBytes.publicWriteBytes.callAsync(emptyByteArray, offset, longData)).to.be.rejectedWith(
- constants.REVERT,
+ return expectRevertOrAlwaysFailingTransactionAsync(
+ libBytes.publicWriteBytes.callAsync(emptyByteArray, offset, longData),
);
});
it('should fail if the length between the offset and end of the byte array is too short to hold the length of a nested byte array)', async () => {
const emptyByteArray = ethUtil.bufferToHex(new Buffer(shortTestBytesAsBuffer.byteLength));
const badOffset = new BigNumber(ethUtil.toBuffer(shortTestBytesAsBuffer).byteLength);
- return expect(libBytes.publicWriteBytes.callAsync(emptyByteArray, badOffset, shortData)).to.be.rejectedWith(
- constants.REVERT,
+ return expectRevertOrAlwaysFailingTransactionAsync(
+ libBytes.publicWriteBytes.callAsync(emptyByteArray, badOffset, shortData),
);
});
});