nifty-wallet/test/unit/pending-tx-test.js

297 lines
10 KiB
JavaScript
Raw Normal View History

2017-08-04 11:40:22 -07:00
const assert = require('assert')
const ethUtil = require('ethereumjs-util')
const EthTx = require('ethereumjs-tx')
const ObservableStore = require('obs-store')
const clone = require('clone')
2017-08-08 15:30:22 -07:00
const { createStubedProvider } = require('../stub/provider')
const PendingTransactionTracker = require('../../app/scripts/lib/pending-tx-tracker')
2017-10-06 12:29:27 -07:00
const MockTxGen = require('../lib/mock-tx-gen')
const sinon = require('sinon')
2017-08-04 11:40:22 -07:00
const noop = () => true
const currentNetworkId = 42
const otherNetworkId = 36
const privKey = new Buffer('8718b9618a37d1fc78c436511fc6df3c8258d3250635bba617f33003270ec03e', 'hex')
2017-08-08 15:30:22 -07:00
describe('PendingTransactionTracker', function () {
2017-10-02 11:11:54 -07:00
let pendingTxTracker, txMeta, txMetaNoHash, txMetaNoRawTx, providerResultStub,
provider, txMeta3, txList, knownErrors
2017-08-04 11:40:22 -07:00
this.timeout(10000)
beforeEach(function () {
txMeta = {
id: 1,
2017-08-08 15:30:22 -07:00
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
2017-08-04 11:40:22 -07:00
status: 'signed',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x1',
value: '0xfffff',
},
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}
txMetaNoHash = {
id: 2,
status: 'signed',
txParams: { from: '0x1678a085c290ebd122dc42cba69373b5953b831d'},
}
txMetaNoRawTx = {
2017-08-08 15:30:22 -07:00
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
2017-08-04 11:40:22 -07:00
status: 'signed',
txParams: { from: '0x1678a085c290ebd122dc42cba69373b5953b831d'},
}
2017-08-08 15:30:22 -07:00
providerResultStub = {}
provider = createStubedProvider(providerResultStub)
2017-08-04 11:40:22 -07:00
2017-08-08 15:30:22 -07:00
pendingTxTracker = new PendingTransactionTracker({
provider,
2017-08-04 11:40:22 -07:00
nonceTracker: {
getGlobalLock: async () => {
return { releaseLock: () => {} }
}
},
getPendingTransactions: () => {return []},
getCompletedTransactions: () => {return []},
2017-08-04 11:40:22 -07:00
publishTransaction: () => {},
})
})
2017-10-06 12:29:27 -07:00
describe('_checkPendingTx state management', function () {
let stub
afterEach(function () {
if (stub) {
stub.restore()
}
})
it('should become failed if another tx with the same nonce succeeds', async function () {
// SETUP
const txGen = new MockTxGen()
txGen.generate({
id: '456',
value: '0x01',
hash: '0xbad',
status: 'confirmed',
nonce: '0x01',
}, { count: 1 })
const pending = txGen.generate({
id: '123',
value: '0x02',
hash: '0xfad',
status: 'submitted',
nonce: '0x01',
}, { count: 1 })[0]
stub = sinon.stub(pendingTxTracker, 'getCompletedTransactions')
2017-10-06 12:29:27 -07:00
.returns(txGen.txs)
// THE EXPECTATION
const spy = sinon.spy()
pendingTxTracker.on('tx:failed', (txId, err) => {
assert.equal(txId, pending.id, 'should fail the pending tx')
assert.equal(err.name, 'NonceTakenErr', 'should emit a nonce taken error.')
spy(txId, err)
})
// THE METHOD
await pendingTxTracker._checkPendingTx(pending)
// THE ASSERTION
assert.ok(spy.calledWith(pending.id), 'tx failed should be emitted')
2017-10-06 12:29:27 -07:00
})
})
2017-08-04 11:40:22 -07:00
describe('#checkForTxInBlock', function () {
it('should return if no pending transactions', function () {
// throw a type error if it trys to do anything on the block
// thus failing the test
const block = Proxy.revocable({}, {}).revoke()
2017-08-08 15:30:22 -07:00
pendingTxTracker.checkForTxInBlock(block)
2017-08-04 11:40:22 -07:00
})
it('should emit \'tx:failed\' if the txMeta does not have a hash', function (done) {
2017-08-04 11:40:22 -07:00
const block = Proxy.revocable({}, {}).revoke()
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => [txMetaNoHash]
pendingTxTracker.once('tx:failed', (txId, err) => {
2017-08-04 11:40:22 -07:00
assert(txId, txMetaNoHash.id, 'should pass txId')
done()
})
2017-08-08 15:30:22 -07:00
pendingTxTracker.checkForTxInBlock(block)
2017-08-04 11:40:22 -07:00
})
it('should emit \'txConfirmed\' if the tx is in the block', function (done) {
const block = { transactions: [txMeta]}
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => [txMeta]
pendingTxTracker.once('tx:confirmed', (txId) => {
2017-08-04 11:40:22 -07:00
assert(txId, txMeta.id, 'should pass txId')
done()
})
pendingTxTracker.once('tx:failed', (_, err) => { done(err) })
2017-08-08 15:30:22 -07:00
pendingTxTracker.checkForTxInBlock(block)
2017-08-04 11:40:22 -07:00
})
})
describe('#queryPendingTxs', function () {
it('should call #_checkPendingTxs if their is no oldBlock', function (done) {
let newBlock, oldBlock
newBlock = { number: '0x01' }
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTxs = done
2017-09-27 12:33:46 -07:00
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
2017-08-04 11:40:22 -07:00
})
it('should call #_checkPendingTxs if oldBlock and the newBlock have a diff of greater then 1', function (done) {
let newBlock, oldBlock
oldBlock = { number: '0x01' }
newBlock = { number: '0x03' }
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTxs = done
2017-09-27 12:33:46 -07:00
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
2017-08-04 11:40:22 -07:00
})
it('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less', function (done) {
let newBlock, oldBlock
oldBlock = { number: '0x1' }
newBlock = { number: '0x2' }
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTxs = () => {
2017-08-04 11:40:22 -07:00
const err = new Error('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less')
done(err)
}
2017-09-27 12:33:46 -07:00
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
2017-08-04 11:40:22 -07:00
done()
})
})
describe('#_checkPendingTx', function () {
it('should emit \'tx:failed\' if the txMeta does not have a hash', function (done) {
pendingTxTracker.once('tx:failed', (txId, err) => {
2017-08-04 11:40:22 -07:00
assert(txId, txMetaNoHash.id, 'should pass txId')
done()
})
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTx(txMetaNoHash)
2017-08-04 11:40:22 -07:00
})
it('should should return if query does not return txParams', function () {
2017-08-08 15:30:22 -07:00
providerResultStub.eth_getTransactionByHash = null
pendingTxTracker._checkPendingTx(txMeta)
2017-08-04 11:40:22 -07:00
})
it('should emit \'txConfirmed\'', function (done) {
2017-08-08 15:30:22 -07:00
providerResultStub.eth_getTransactionByHash = {blockNumber: '0x01'}
pendingTxTracker.once('tx:confirmed', (txId) => {
2017-08-04 11:40:22 -07:00
assert(txId, txMeta.id, 'should pass txId')
done()
})
pendingTxTracker.once('tx:failed', (_, err) => { done(err) })
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTx(txMeta)
2017-08-04 11:40:22 -07:00
})
})
describe('#_checkPendingTxs', function () {
beforeEach(function () {
const txMeta2 = txMeta3 = txMeta
txMeta2.id = 2
txMeta3.id = 3
txList = [txMeta, txMeta2, txMeta3].map((tx) => {
tx.processed = new Promise ((resolve) => { tx.resolve = resolve })
return tx
})
})
it('should warp all txMeta\'s in #_checkPendingTx', function (done) {
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._checkPendingTx = (tx) => { tx.resolve(tx) }
2017-08-04 11:40:22 -07:00
const list = txList.map
Promise.all(txList.map((tx) => tx.processed))
.then((txCompletedList) => done())
.catch(done)
2017-08-08 15:30:22 -07:00
pendingTxTracker._checkPendingTxs()
2017-08-04 11:40:22 -07:00
})
})
describe('#resubmitPendingTxs', function () {
2017-12-06 09:40:11 -08:00
const blockStub = { number: '0x0' };
2017-08-04 11:40:22 -07:00
beforeEach(function () {
const txMeta2 = txMeta3 = txMeta
txList = [txMeta, txMeta2, txMeta3].map((tx) => {
tx.processed = new Promise ((resolve) => { tx.resolve = resolve })
return tx
})
})
it('should return if no pending transactions', function () {
2017-08-08 15:30:22 -07:00
pendingTxTracker.resubmitPendingTxs()
2017-08-04 11:40:22 -07:00
})
it('should call #_resubmitTx for all pending tx\'s', function (done) {
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._resubmitTx = async (tx) => { tx.resolve(tx) }
2017-08-04 11:40:22 -07:00
Promise.all(txList.map((tx) => tx.processed))
.then((txCompletedList) => done())
.catch(done)
2017-12-06 09:40:11 -08:00
pendingTxTracker.resubmitPendingTxs(blockStub)
2017-08-04 11:40:22 -07:00
})
it('should not emit \'tx:failed\' if the txMeta throws a known txError', function (done) {
2017-08-04 11:40:22 -07:00
knownErrors =[
// geth
' Replacement transaction Underpriced ',
' known transaction',
// parity
'Gas price too low to replace ',
' transaction with the sAme hash was already imported',
// other
' gateway timeout',
' noncE too low ',
]
const enoughForAllErrors = txList.concat(txList)
pendingTxTracker.on('tx:failed', (_, err) => done(err))
2017-08-04 11:40:22 -07:00
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => enoughForAllErrors
pendingTxTracker._resubmitTx = async (tx) => {
2017-08-04 11:40:22 -07:00
tx.resolve()
throw new Error(knownErrors.pop())
}
Promise.all(txList.map((tx) => tx.processed))
.then((txCompletedList) => done())
.catch(done)
2017-12-06 09:40:11 -08:00
pendingTxTracker.resubmitPendingTxs(blockStub)
2017-08-04 11:40:22 -07:00
})
it('should emit \'tx:warning\' if it encountered a real error', function (done) {
pendingTxTracker.once('tx:warning', (txMeta, err) => {
if (err.message === 'im some real error') {
const matchingTx = txList.find(tx => tx.id === txMeta.id)
matchingTx.resolve()
} else {
done(err)
}
})
2017-08-04 11:40:22 -07:00
2017-08-08 15:30:22 -07:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._resubmitTx = async (tx) => { throw new TypeError('im some real error') }
2017-08-04 11:40:22 -07:00
Promise.all(txList.map((tx) => tx.processed))
.then((txCompletedList) => done())
.catch(done)
2017-12-06 09:40:11 -08:00
pendingTxTracker.resubmitPendingTxs(blockStub)
2017-08-04 11:40:22 -07:00
})
})
describe('#_resubmitTx', function () {
2017-08-04 11:40:22 -07:00
it('should publishing the transaction', function (done) {
const enoughBalance = '0x100000'
2017-08-08 15:30:22 -07:00
pendingTxTracker.getBalance = (address) => {
2017-08-04 11:40:22 -07:00
assert.equal(address, txMeta.txParams.from, 'Should pass the address')
return enoughBalance
}
2017-08-08 15:30:22 -07:00
pendingTxTracker.publishTransaction = async (rawTx) => {
2017-08-04 11:40:22 -07:00
assert.equal(rawTx, txMeta.rawTx, 'Should pass the rawTx')
}
// Stubbing out current account state:
// Adding the fake tx:
2017-08-08 15:30:22 -07:00
pendingTxTracker._resubmitTx(txMeta)
2017-08-04 11:40:22 -07:00
.then(() => done())
.catch((err) => {
assert.ifError(err, 'should not throw an error')
done(err)
})
})
})
2017-10-06 12:29:27 -07:00
})