mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 11:38:12 +00:00
* added sub packages * added lerna monopackage management * check for package is instance * added method, subscription and utils package * moved almost all packages * moved all packages, no umbrella package yet * added extend to packages * made contract pass * made batch tests pass * expose providers * fixed test async * fixed test errors * fixed test event encode decode * fixed test formatter tests * fixed method tests * fixed method utils * fixed some eth methods * fixed some eth methods 2 * bumped version 0.18.3 to republish meteor package * fixed get* tests * fixed subscribe tests * added newBlockHeaders subscription * remove unpublished package from package.json * added sendTransaction test * fixed call test * moved files to done * changed extend * added iban tests * Fixed ALL tests * Fixed lint tests * Fixed contract tests * added method tests * added more method tests to test promiEvents extensively * added confirmation event * improved method confirmation checking
61 lines
2.2 KiB
JavaScript
61 lines
2.2 KiB
JavaScript
var assert = require('assert');
|
|
var formatters = require('../packages/web3-core-helpers/src/formatters.js');
|
|
|
|
describe('formatters', function () {
|
|
describe('outputTransactionFormatter', function () {
|
|
it('should return the correct value', function () {
|
|
|
|
assert.deepEqual(formatters.outputTransactionFormatter({
|
|
input: '0x3454645634534',
|
|
from: '0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe',
|
|
to: '0x11f4d0a3c12e86b4b5f39b213f7e19d048276dae',
|
|
value: '0x3e8',
|
|
gas: '0x3e8',
|
|
gasPrice: '0x3e8',
|
|
nonce: '0xb',
|
|
transactionIndex: '0x1',
|
|
blockNumber: '0x3e8',
|
|
blockHash: '0xc9b9cdc2092a9d6589d96662b1fd6949611163fb3910cf8a173cd060f17702f9'
|
|
}), {
|
|
input: '0x3454645634534',
|
|
from: '0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe',
|
|
to: '0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe',
|
|
value: '1000',
|
|
gas: 1000,
|
|
gasPrice: '1000',
|
|
nonce: 11,
|
|
blockNumber: 1000,
|
|
blockHash: '0xc9b9cdc2092a9d6589d96662b1fd6949611163fb3910cf8a173cd060f17702f9',
|
|
transactionIndex: 1
|
|
});
|
|
});
|
|
|
|
it('should return the correct value, when null values are present', function () {
|
|
|
|
assert.deepEqual(formatters.outputTransactionFormatter({
|
|
input: '0x3454645634534',
|
|
from: '0x11f4d0a3c12e86b4b5f39b213f7e19d048276dae',
|
|
to: null,
|
|
value: '0x3e8',
|
|
gas: '0x3e8',
|
|
gasPrice: '0x3e8',
|
|
nonce: '0xb',
|
|
transactionIndex: null,
|
|
blockNumber: null,
|
|
blockHash: null
|
|
}), {
|
|
input: '0x3454645634534',
|
|
from: '0x11f4d0A3c12e86B4b5F39B213F7E19D048276DAe',
|
|
to: null,
|
|
value: 1000,
|
|
gas: 1000,
|
|
gasPrice: '1000',
|
|
nonce: 11,
|
|
blockNumber: null,
|
|
blockHash: null,
|
|
transactionIndex: null
|
|
});
|
|
});
|
|
});
|
|
});
|