From de44cd9ba46e562471d64e6cfc56cf8518f45113 Mon Sep 17 00:00:00 2001 From: Jared Pereira Date: Tue, 7 Mar 2017 20:49:40 -0500 Subject: [PATCH] add gas buffer multiply test --- test/unit/tx-utils-test.js | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/test/unit/tx-utils-test.js b/test/unit/tx-utils-test.js index 6131ed73f..a7f2094c4 100644 --- a/test/unit/tx-utils-test.js +++ b/test/unit/tx-utils-test.js @@ -13,26 +13,16 @@ describe('txUtils', function() { }) describe('addGasBuffer', function() { - describe('adds a flat value', function() { - it('over an empty value', function() { - const input = '0x0' - const output = txUtils.addGasBuffer(input) - assert.notEqual(output, input, 'changed the value') - - const inputBn = new BN(input, 'hex') - const outputBn = new BN(output, 'hex') - assert(outputBn.gt(inputBn), 'returns a greater value') - }) - - it('over an value', function() { + describe('multiplies by 1.5', function() { + it('over a value', function() { const input = '0x123fad' - const output = txUtils.addGasBuffer(input) - assert.notEqual(output, input, 'changed the value') + const output = txUtils.addGasBuffer(input, '0x3d4c52') //0x3d4c52 is 4mil for dummy gas limit const inputBn = new BN(input, 'hex') const outputBn = new BN(output, 'hex') - assert(outputBn.gt(inputBn), 'returns a greater value') + const expectedBn = inputBn.mul(1.5) + assert(outputBn.eq(expectedBn), 'returns 1.5 the input value') }) }) }) -}) \ No newline at end of file +})