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

56 lines
1.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('../../../ui/app/components/bn-as-decimal-input')
describe.only('BnInput', function () {
let bnInput
const message = 'Hello, world!'
const buffer = new Buffer(message, 'utf8')
const hex = buffer.toString('hex')
it('can tolerate a gas decimal number at a high precision', function (done) {
2017-05-17 09:09:59 +02:00
const renderer = ReactTestUtils.createRenderer();
let valueStr = '20'
while (valueStr.length < 20) {
2017-05-17 09:09:59 +02:00
valueStr += '0'
}
const value = new BN(valueStr, 10)
let inputStr = '2.3'
2017-05-17 09:09:59 +02:00
let targetStr = '23'
while (targetStr.length < 19) {
2017-05-17 09:09:59 +02:00
targetStr += '0'
}
const target = new BN(targetStr, 10)
const precision = 1e18 // ether precision
const props = {
value,
precision,
onChange: (newBn) => {
assert.equal(newBn.toString(), targetValue.toString(), 'should tolerate increase')
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} },
})
})
})