1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/app/controllers/transactions/pending-tx-test.js

386 lines
14 KiB
JavaScript
Raw Normal View History

import { strict as assert } from 'assert'
import sinon from 'sinon'
import { createTestProviderTools } from '../../../../stub/provider'
import PendingTransactionTracker from '../../../../../app/scripts/controllers/transactions/pending-tx-tracker'
import MockTxGen from '../../../../lib/mock-tx-gen'
2017-11-02 18:28:41 +01:00
describe('PendingTransactionTracker', function () {
let pendingTxTracker, txMeta, txMetaNoHash, providerResultStub, provider, txMeta3, txList, knownErrors
2017-08-04 20:40:22 +02:00
this.timeout(10000)
2018-05-25 08:19:54 +02:00
2017-08-04 20:40:22 +02:00
beforeEach(function () {
txMeta = {
id: 1,
2017-08-09 00:30:22 +02:00
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
2017-08-04 20:40:22 +02:00
status: 'signed',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x1',
value: '0xfffff',
},
history: [{}],
2017-08-04 20:40:22 +02:00
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}
txMetaNoHash = {
id: 2,
history: [{}],
status: 'submitted',
2019-12-03 21:50:55 +01:00
txParams: { from: '0x1678a085c290ebd122dc42cba69373b5953b831d' },
2017-08-04 20:40:22 +02:00
}
2018-07-03 02:12:50 +02:00
2017-08-09 00:30:22 +02:00
providerResultStub = {}
provider = createTestProviderTools({ scaffold: providerResultStub }).provider
2017-08-04 20:40:22 +02:00
2017-08-09 00:30:22 +02:00
pendingTxTracker = new PendingTransactionTracker({
provider,
2017-08-04 20:40:22 +02:00
nonceTracker: {
getGlobalLock: async () => {
return { releaseLock: () => {} }
2018-07-03 00:49:33 +02:00
},
2017-08-04 20:40:22 +02:00
},
getPendingTransactions: () => {
return []
},
getCompletedTransactions: () => {
return []
},
2017-08-04 20:40:22 +02:00
publishTransaction: () => {},
confirmTransaction: () => {},
2017-08-04 20:40:22 +02:00
})
pendingTxTracker._getBlock = (blockNumber) => {
2019-12-03 21:50:55 +01:00
return { number: blockNumber, transactions: [] }
}
2017-08-04 20:40:22 +02:00
})
2017-10-06 21:29:27 +02:00
describe('_checkPendingTx state management', function () {
it('should emit dropped if another tx with the same nonce succeeds', async function () {
2017-10-06 21:29:27 +02:00
const txGen = new MockTxGen()
txGen.generate({
id: '456',
value: '0x01',
hash: '0xbad',
status: 'confirmed',
}, { count: 1, fromNonce: '0x01' })
2017-10-06 21:29:27 +02:00
const pending = txGen.generate({
id: '123',
value: '0x02',
hash: '0x2a919d2512ec963f524bfd9730fb66b6d5a2e399d1dd957abb5e2b544a12644b',
2017-10-06 21:29:27 +02:00
status: 'submitted',
}, { count: 1, fromNonce: '0x01' })[0]
2017-10-06 21:29:27 +02:00
const stub = sinon.stub(pendingTxTracker, 'getCompletedTransactions')
.returns(txGen.txs)
2017-10-06 21:29:27 +02:00
const spy = sinon.spy()
pendingTxTracker.on('tx:dropped', (txId) => {
2017-10-06 21:29:27 +02:00
assert.equal(txId, pending.id, 'should fail the pending tx')
spy(txId)
2017-10-06 21:29:27 +02:00
})
await pendingTxTracker._checkPendingTx(pending)
assert.ok(spy.calledWith(pending.id), 'tx dropped should be emitted')
stub.restore()
2017-10-06 21:29:27 +02:00
})
})
2017-08-04 20:40:22 +02:00
describe('#_checkPendingTx', function () {
it("should emit 'tx:failed' if the txMeta does not have a hash", function (done) {
pendingTxTracker.once('tx:failed', (txId) => {
assert.equal(txId, txMetaNoHash.id, 'should pass txId')
2017-08-04 20:40:22 +02:00
done()
})
2017-08-09 00:30:22 +02:00
pendingTxTracker._checkPendingTx(txMetaNoHash)
2017-08-04 20:40:22 +02:00
})
it('should emit tx:dropped with the txMetas id only after the fourth call', function (done) {
txMeta = {
id: 1,
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
status: 'submitted',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x1',
value: '0xfffff',
},
history: [{}],
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}
let counter = 0
providerResultStub['eth_getTransactionCount'] = '0x02'
providerResultStub['eth_getTransactionReceipt'] = {}
pendingTxTracker.once('tx:dropped', (id) => {
if (id !== txMeta.id) {
done(new Error('wrong tx Id'))
return
}
delete providerResultStub['eth_getTransactionCount']
delete providerResultStub['eth_getTransactionReceipt']
if (counter === 3) {
return done()
} else {
return done(new Error(`Counter does not equal 3 got ${counter} instead`))
}
})
/* eslint-disable no-sequences */
pendingTxTracker._checkPendingTx(txMeta)
.then(() => (counter++, pendingTxTracker._checkPendingTx(txMeta)))
.then(() => (counter++, pendingTxTracker._checkPendingTx(txMeta)))
.then(() => (counter++, pendingTxTracker._checkPendingTx(txMeta)))
.catch(done)
/* eslint-enable no-sequences */
})
2017-08-04 20:40:22 +02:00
it('should should return if query does not return txParams', function () {
2017-08-09 00:30:22 +02:00
providerResultStub.eth_getTransactionByHash = null
pendingTxTracker._checkPendingTx(txMeta)
2017-08-04 20:40:22 +02:00
})
})
describe('#_checkPendingTxs', function () {
it("should wrap all txMeta's in #updatePendingTxs", function (done) {
2017-08-04 20:40:22 +02:00
const txMeta2 = txMeta3 = txMeta
txMeta2.id = 2
txMeta3.id = 3
txList = [txMeta, txMeta2, txMeta3].map((tx) => {
tx.processed = new Promise((resolve) => {
tx.resolve = resolve
})
2017-08-04 20:40:22 +02:00
return tx
})
2017-08-09 00:30:22 +02:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._checkPendingTx = (tx) => {
tx.resolve(tx)
}
2017-08-04 20:40:22 +02:00
Promise.all(txList.map((tx) => tx.processed))
.then(() => done())
.catch(done)
2017-08-04 20:40:22 +02:00
pendingTxTracker.updatePendingTxs()
2017-08-04 20:40:22 +02:00
})
})
describe('#resubmitPendingTxs', function () {
const blockNumberStub = '0x0'
2017-08-04 20:40:22 +02:00
beforeEach(function () {
const txMeta2 = txMeta3 = txMeta
txList = [txMeta, txMeta2, txMeta3].map((tx) => {
tx.processed = new Promise((resolve) => {
tx.resolve = resolve
})
2017-08-04 20:40:22 +02:00
return tx
})
})
it('should return if no pending transactions', function () {
2017-08-09 00:30:22 +02:00
pendingTxTracker.resubmitPendingTxs()
2017-08-04 20:40:22 +02:00
})
it('should call #_resubmitTx for all pending tx\'s', function (done) {
2017-08-09 00:30:22 +02:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._resubmitTx = async (tx) => {
tx.resolve(tx)
}
2017-08-04 20:40:22 +02:00
Promise.all(txList.map((tx) => tx.processed))
.then(() => done())
.catch(done)
pendingTxTracker.resubmitPendingTxs(blockNumberStub)
2017-08-04 20:40:22 +02:00
})
it("should not emit 'tx:failed' if the txMeta throws a known txError", function (done) {
knownErrors = [
2017-08-04 20:40:22 +02:00
// 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 20:40:22 +02:00
2017-08-09 00:30:22 +02:00
pendingTxTracker.getPendingTransactions = () => enoughForAllErrors
pendingTxTracker._resubmitTx = async (tx) => {
2017-08-04 20:40:22 +02:00
tx.resolve()
throw new Error(knownErrors.pop())
}
Promise.all(txList.map((tx) => tx.processed))
.then(() => done())
.catch(done)
2017-08-04 20:40:22 +02:00
pendingTxTracker.resubmitPendingTxs(blockNumberStub)
2017-08-04 20:40:22 +02: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') {
2020-02-15 21:34:12 +01:00
const matchingTx = txList.find((tx) => tx.id === txMeta.id)
matchingTx.resolve()
} else {
done(err)
}
})
2017-08-04 20:40:22 +02:00
2017-08-09 00:30:22 +02:00
pendingTxTracker.getPendingTransactions = () => txList
pendingTxTracker._resubmitTx = async () => {
throw new TypeError('im some real error')
}
2017-08-04 20:40:22 +02:00
Promise.all(txList.map((tx) => tx.processed))
.then(() => done())
.catch(done)
2017-08-04 20:40:22 +02:00
pendingTxTracker.resubmitPendingTxs(blockNumberStub)
2017-08-04 20:40:22 +02:00
})
})
describe('#_resubmitTx', function () {
const mockFirstRetryBlockNumber = '0x1'
2018-07-03 02:12:50 +02:00
let txMetaToTestExponentialBackoff, enoughBalance
beforeEach(function () {
pendingTxTracker.getBalance = (address) => {
assert.equal(address, txMeta.txParams.from, 'Should pass the address')
return enoughBalance
}
pendingTxTracker.publishTransaction = async (rawTx) => {
assert.equal(rawTx, txMeta.rawTx, 'Should pass the rawTx')
}
pendingTxTracker.approveTransaction = async () => {}
sinon.spy(pendingTxTracker, 'publishTransaction')
txMetaToTestExponentialBackoff = Object.assign({}, txMeta, {
retryCount: 4,
firstRetryBlockNumber: mockFirstRetryBlockNumber,
})
})
2017-08-04 20:40:22 +02:00
afterEach(function () {
pendingTxTracker.publishTransaction.restore()
})
it('should publish the transaction', async function () {
2018-07-03 02:12:50 +02:00
enoughBalance = '0x100000'
// Stubbing out current account state:
// Adding the fake tx:
await pendingTxTracker._resubmitTx(txMeta)
assert.equal(pendingTxTracker.publishTransaction.callCount, 1, 'should call publish transaction')
})
it('should not publish the transaction if the limit of retries has been exceeded', async function () {
2018-07-03 02:12:50 +02:00
enoughBalance = '0x100000'
const mockLatestBlockNumber = '0x5'
await pendingTxTracker._resubmitTx(txMetaToTestExponentialBackoff, mockLatestBlockNumber)
assert.equal(pendingTxTracker.publishTransaction.callCount, 0, 'should NOT call publish transaction')
})
it('should publish the transaction if the number of blocks since last retry exceeds the last set limit', async function () {
2018-07-03 02:12:50 +02:00
enoughBalance = '0x100000'
const mockLatestBlockNumber = '0x11'
2017-12-28 02:45:03 +01:00
await pendingTxTracker._resubmitTx(txMetaToTestExponentialBackoff, mockLatestBlockNumber)
assert.equal(pendingTxTracker.publishTransaction.callCount, 1, 'should call publish transaction')
2017-08-04 20:40:22 +02:00
})
it('should call opts.approveTransaction with the id if the tx is not signed', async function () {
const stubTx = {
id: 40,
}
const approveMock = sinon.stub(pendingTxTracker, 'approveTransaction')
await pendingTxTracker._resubmitTx(stubTx)
assert.ok(approveMock.called)
approveMock.restore()
})
2017-12-28 02:45:03 +01:00
})
describe('#_checkIftxWasDropped', function () {
const txMeta = {
id: 1,
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
status: 'submitted',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x1',
value: '0xfffff',
},
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}
it('should return false when the nonce is the suggested network nonce', async function () {
providerResultStub['eth_getTransactionCount'] = '0x01'
providerResultStub['eth_getTransactionReceipt'] = {}
const dropped = await pendingTxTracker._checkIftxWasDropped(txMeta, {})
assert.ok(!dropped, 'should be false')
})
it('should return true when the network nonce is higher then the txMeta nonce', async function () {
providerResultStub['eth_getTransactionCount'] = '0x02'
providerResultStub['eth_getTransactionReceipt'] = {}
const dropped = await pendingTxTracker._checkIftxWasDropped(txMeta, {})
assert.ok(dropped, 'should be true')
})
})
2017-12-28 02:45:03 +01:00
describe('#_checkIfNonceIsTaken', function () {
2018-05-25 08:19:54 +02:00
beforeEach(function () {
2018-07-03 00:49:33 +02:00
const confirmedTxList = [{
2017-12-28 02:45:03 +01:00
id: 1,
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
status: 'confirmed',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x1',
value: '0xfffff',
},
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}, {
id: 2,
hash: '0x0593ee121b92e10d63150ad08b4b8f9c7857d1bd160195ee648fb9a0f8d00eeb',
status: 'confirmed',
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x2',
value: '0xfffff',
},
rawTx: '0xf86c808504a817c800827b0d940c62bb85faa3311a998d3aba8098c1235c564966880de0b6b3a7640000802aa08ff665feb887a25d4099e40e11f0fef93ee9608f404bd3f853dd9e84ed3317a6a02ec9d3d1d6e176d4d2593dd760e74ccac753e6a0ea0d00cc9789d0d7ff1f471d',
}]
pendingTxTracker.getCompletedTransactions = (address) => {
if (!address) {
throw new Error('unless behavior has changed #_checkIfNonceIsTaken needs a filtered list of transactions to see if the nonce is taken')
}
2017-12-28 02:45:03 +01:00
return confirmedTxList
}
})
it('should return false if nonce has not been taken', async function () {
const taken = await pendingTxTracker._checkIfNonceIsTaken({
2017-12-28 02:45:03 +01:00
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x3',
value: '0xfffff',
},
})
assert.ok(!taken)
2017-12-28 02:45:03 +01:00
})
it('should return true if nonce has been taken', async function () {
const taken = await pendingTxTracker._checkIfNonceIsTaken({
2017-12-28 02:45:03 +01:00
txParams: {
from: '0x1678a085c290ebd122dc42cba69373b5953b831d',
nonce: '0x2',
value: '0xfffff',
},
})
assert.ok(taken)
2017-12-28 02:45:03 +01:00
})
})
2017-10-06 21:29:27 +02:00
})