2015-03-22 08:43:07 +00:00
|
|
|
var chai = require('chai');
|
|
|
|
var assert = chai.assert;
|
2015-03-08 17:31:08 +00:00
|
|
|
var formatters = require('../lib/web3/formatters.js');
|
2015-02-26 14:54:49 +00:00
|
|
|
var BigNumber = require('bignumber.js');
|
|
|
|
|
|
|
|
describe('formatters', function () {
|
|
|
|
describe('inputTransactionFormatter', function () {
|
|
|
|
it('should return the correct value', function () {
|
|
|
|
|
2015-03-23 12:42:36 +00:00
|
|
|
assert.deepEqual(formatters.inputTransactionFormatter({
|
2015-03-23 17:50:33 +00:00
|
|
|
data: '0x34234bf23bf4234',
|
2015-02-26 14:54:49 +00:00
|
|
|
value: new BigNumber(100),
|
|
|
|
from: '0x00000',
|
|
|
|
to: '0x00000',
|
|
|
|
gas: 1000,
|
2015-03-23 17:50:33 +00:00
|
|
|
gasPrice: new BigNumber(1000)
|
2015-03-23 12:42:36 +00:00
|
|
|
}), {
|
2015-03-23 17:50:33 +00:00
|
|
|
data: '0x34234bf23bf4234',
|
2015-02-26 14:54:49 +00:00
|
|
|
value: '0x64',
|
|
|
|
from: '0x00000',
|
|
|
|
to: '0x00000',
|
|
|
|
gas: '0x3e8',
|
2015-03-23 17:50:33 +00:00
|
|
|
gasPrice: '0x3e8'
|
2015-03-23 12:42:36 +00:00
|
|
|
});
|
2015-02-26 14:54:49 +00:00
|
|
|
});
|
|
|
|
});
|
2015-03-08 17:18:52 +00:00
|
|
|
});
|