1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/test/unit/components/bn-as-decimal-input-test.js

90 lines
2.5 KiB
JavaScript
Raw Normal View History

2017-05-17 09:09:59 +02:00
var assert = require('assert')
const additions = require('react-testutils-additions')
const h = require('react-hyperscript')
const ReactTestUtils = require('react-addons-test-utils')
const ethUtil = require('ethereumjs-util')
const BN = ethUtil.BN
var BnInput = require('../../../old-ui/app/components/bn-as-decimal-input')
2017-05-17 09:09:59 +02:00
2017-05-17 09:33:19 +02:00
describe('BnInput', function () {
it('can tolerate a gas decimal number at a high precision', function (done) {
2017-05-17 09:34:56 +02:00
const renderer = ReactTestUtils.createRenderer()
2017-05-17 09:09:59 +02:00
let valueStr = '20'
2017-05-24 19:51:44 +02:00
while (valueStr.length < 20) {
2017-05-17 09:09:59 +02:00
valueStr += '0'
}
const value = new BN(valueStr, 10)
2017-05-28 20:18:07 +02:00
const inputStr = '2.3'
2017-05-17 09:09:59 +02:00
let targetStr = '23'
2017-05-24 19:51:44 +02:00
while (targetStr.length < 19) {
2017-05-17 09:09:59 +02:00
targetStr += '0'
}
const target = new BN(targetStr, 10)
2017-05-24 19:51:44 +02:00
const precision = 18 // ether precision
const scale = 18
2017-05-17 09:09:59 +02:00
const props = {
value,
scale,
2017-05-17 09:09:59 +02:00
precision,
onChange: (newBn) => {
2017-05-17 09:34:56 +02:00
assert.equal(newBn.toString(), target.toString(), 'should tolerate increase')
2017-05-17 09:09:59 +02:00
done()
2017-05-17 09:34:56 +02:00
},
2017-05-17 09:09:59 +02:00
}
const inputComponent = h(BnInput, props)
const component = additions.renderIntoDocument(inputComponent)
renderer.render(inputComponent)
const input = additions.find(component, 'input.hex-input')[0]
2017-05-28 20:18:07 +02:00
ReactTestUtils.Simulate.change(input, { preventDefault () {}, target: {
2017-05-17 09:09:59 +02:00
value: inputStr,
2017-05-28 20:18:07 +02:00
checkValidity () { return true } },
2017-05-17 09:09:59 +02:00
})
})
2017-10-09 21:12:54 +02:00
it('can tolerate wei precision', function (done) {
const renderer = ReactTestUtils.createRenderer()
2018-07-03 00:49:33 +02:00
const valueStr = '1000000000'
2017-10-09 21:12:54 +02:00
const value = new BN(valueStr, 10)
const inputStr = '1.000000001'
2017-10-09 21:12:54 +02:00
2018-07-03 00:49:33 +02:00
const targetStr = '1000000001'
2017-10-09 21:12:54 +02:00
const target = new BN(targetStr, 10)
const precision = 9 // gwei precision
2017-10-09 21:12:54 +02:00
const scale = 9
const props = {
value,
scale,
precision,
onChange: (newBn) => {
assert.equal(newBn.toString(), target.toString(), 'should tolerate increase')
const reInput = BnInput.prototype.downsize(newBn.toString(), 9, 9)
2017-10-09 22:02:52 +02:00
assert.equal(reInput.toString(), inputStr, 'should tolerate increase')
2017-10-09 21:12:54 +02:00
done()
},
}
const inputComponent = h(BnInput, props)
const component = additions.renderIntoDocument(inputComponent)
renderer.render(inputComponent)
const input = additions.find(component, 'input.hex-input')[0]
ReactTestUtils.Simulate.change(input, { preventDefault () {}, target: {
value: inputStr,
checkValidity () { return true } },
})
})
2017-05-17 09:09:59 +02:00
})