mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
add test for using localNonce
This commit is contained in:
parent
729233a288
commit
bf8a62eb39
@ -2,24 +2,53 @@ const assert = require('assert')
|
|||||||
const NonceTracker = require('../../app/scripts/lib/nonce-tracker')
|
const NonceTracker = require('../../app/scripts/lib/nonce-tracker')
|
||||||
|
|
||||||
describe('Nonce Tracker', function () {
|
describe('Nonce Tracker', function () {
|
||||||
let nonceTracker, provider, getPendingTransactions, pendingTxs
|
let nonceTracker, provider
|
||||||
|
let getPendingTransactions, pendingTxs
|
||||||
|
let getConfirmedTransactions, confirmedTxs
|
||||||
|
let providerResultStub = {}
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
pendingTxs = [{
|
pendingTxs = [{
|
||||||
'status': 'submitted',
|
'status': 'submitted',
|
||||||
|
'txParams': {
|
||||||
|
'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
|
||||||
|
'gas': '0x30d40',
|
||||||
|
'value': '0x0',
|
||||||
|
'nonce': '0x3',
|
||||||
|
},
|
||||||
|
}]
|
||||||
|
confirmedTxs = [{
|
||||||
|
'status': 'confirmed',
|
||||||
'txParams': {
|
'txParams': {
|
||||||
'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
|
'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
|
||||||
'gas': '0x30d40',
|
'gas': '0x30d40',
|
||||||
'value': '0x0',
|
'value': '0x0',
|
||||||
'nonce': '0x0',
|
'nonce': '0x0',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'status': 'confirmed',
|
||||||
|
'txParams': {
|
||||||
|
'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
|
||||||
|
'gas': '0x30d40',
|
||||||
|
'value': '0x0',
|
||||||
|
'nonce': '0x1',
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'status': 'confirmed',
|
||||||
|
'txParams': {
|
||||||
|
'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
|
||||||
|
'gas': '0x30d40',
|
||||||
|
'value': '0x0',
|
||||||
|
'nonce': '0x2',
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
getPendingTransactions = () => pendingTxs
|
getPendingTransactions = () => pendingTxs
|
||||||
|
getConfirmedTransactions = () => confirmedTxs
|
||||||
|
providerResultStub.result = '0x3'
|
||||||
provider = {
|
provider = {
|
||||||
sendAsync: (_, cb) => { cb(undefined, {result: '0x0'}) },
|
sendAsync: (_, cb) => { cb(undefined, providerResultStub) },
|
||||||
_blockTracker: {
|
_blockTracker: {
|
||||||
getCurrentBlock: () => '0x11b568',
|
getCurrentBlock: () => '0x11b568',
|
||||||
},
|
},
|
||||||
@ -27,6 +56,7 @@ describe('Nonce Tracker', function () {
|
|||||||
nonceTracker = new NonceTracker({
|
nonceTracker = new NonceTracker({
|
||||||
provider,
|
provider,
|
||||||
getPendingTransactions,
|
getPendingTransactions,
|
||||||
|
getConfirmedTransactions,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -34,7 +64,15 @@ describe('Nonce Tracker', function () {
|
|||||||
it('should work', async function () {
|
it('should work', async function () {
|
||||||
this.timeout(15000)
|
this.timeout(15000)
|
||||||
const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
|
const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
|
||||||
assert.equal(nonceLock.nextNonce, '1', 'nonce should be 1')
|
assert.equal(nonceLock.nextNonce, '4', 'nonce should be 4')
|
||||||
|
await nonceLock.releaseLock()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should use localNonce if network returns a nonce lower then a confirmed tx in state', async function () {
|
||||||
|
this.timeout(15000)
|
||||||
|
providerResultStub.result = '0x1'
|
||||||
|
const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
|
||||||
|
assert.equal(nonceLock.nextNonce, '4', 'nonce should be 4')
|
||||||
await nonceLock.releaseLock()
|
await nonceLock.releaseLock()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user