1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/tx-utils-test.js

75 lines
2.6 KiB
JavaScript
Raw Normal View History

2017-03-07 20:34:11 +01:00
const assert = require('assert')
2017-08-04 20:40:22 +02:00
const BN = require('bn.js')
2017-03-07 20:34:11 +01:00
2017-08-04 20:40:22 +02:00
const { hexToBn, bnToHex } = require('../../app/scripts/lib/util')
2017-03-07 20:34:11 +01:00
const TxUtils = require('../../app/scripts/lib/tx-utils')
2017-05-04 23:35:10 +02:00
describe('txUtils', function () {
2017-03-07 20:34:11 +01:00
let txUtils
2017-05-04 23:35:10 +02:00
before(function () {
2017-05-23 08:12:28 +02:00
txUtils = new TxUtils(new Proxy({}, {
get: (obj, name) => {
return () => {}
},
}))
2017-03-07 20:34:11 +01:00
})
2017-05-04 23:35:10 +02:00
describe('chain Id', function () {
it('prepares a transaction with the provided chainId', function () {
2017-03-30 23:23:23 +02:00
const txParams = {
to: '0x70ad465e0bab6504002ad58c744ed89c7da38524',
from: '0x69ad465e0bab6504002ad58c744ed89c7da38525',
value: '0x0',
gas: '0x7b0c',
gasPrice: '0x199c82cc00',
data: '0x',
nonce: '0x3',
chainId: 42,
}
const ethTx = txUtils.buildEthTxFromParams(txParams)
assert.equal(ethTx.getChainId(), 42, 'chainId is set from tx params')
})
})
2017-05-04 23:35:10 +02:00
describe('addGasBuffer', function () {
it('multiplies by 1.5, when within block gas limit', function () {
// naive estimatedGas: 0x16e360 (1.5 mil)
const inputHex = '0x16e360'
// dummy gas limit: 0x3d4c52 (4 mil)
const blockGasLimitHex = '0x3d4c52'
const output = txUtils.addGasBuffer(inputHex, blockGasLimitHex)
2017-03-08 07:51:39 +01:00
const inputBn = hexToBn(inputHex)
const outputBn = hexToBn(output)
2017-03-08 04:42:16 +01:00
const expectedBn = inputBn.muln(1.5)
assert(outputBn.eq(expectedBn), 'returns 1.5 the input value')
2017-03-07 20:34:11 +01:00
})
2017-05-04 23:35:10 +02:00
it('uses original estimatedGas, when above block gas limit', function () {
// naive estimatedGas: 0x16e360 (1.5 mil)
const inputHex = '0x16e360'
// dummy gas limit: 0x0f4240 (1 mil)
const blockGasLimitHex = '0x0f4240'
const output = txUtils.addGasBuffer(inputHex, blockGasLimitHex)
2017-05-04 23:35:10 +02:00
// const inputBn = hexToBn(inputHex)
2017-03-08 07:51:39 +01:00
const outputBn = hexToBn(output)
const expectedBn = hexToBn(inputHex)
assert(outputBn.eq(expectedBn), 'returns the original estimatedGas value')
})
2017-08-04 20:40:22 +02:00
it('buffers up to recommend gas limit recommended ceiling', function () {
// naive estimatedGas: 0x16e360 (1.5 mil)
const inputHex = '0x16e360'
// dummy gas limit: 0x1e8480 (2 mil)
const blockGasLimitHex = '0x1e8480'
const blockGasLimitBn = hexToBn(blockGasLimitHex)
const ceilGasLimitBn = blockGasLimitBn.muln(0.9)
const output = txUtils.addGasBuffer(inputHex, blockGasLimitHex)
// const inputBn = hexToBn(inputHex)
// const outputBn = hexToBn(output)
const expectedHex = bnToHex(ceilGasLimitBn)
2017-08-04 20:40:22 +02:00
assert.equal(output, expectedHex, 'returns the gas limit recommended ceiling value')
})
2017-03-07 20:34:11 +01:00
})
2017-08-04 20:40:22 +02:00
})