aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/nonce-tracker-test.js
blob: 617d9b56c98239f6c5c7780b0019213db80e69db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const assert = require('assert')
const NonceTracker = require('../../app/scripts/lib/nonce-tracker')
const MockTxGen = require('../lib/mock-tx-gen')

describe('Nonce Tracker', function () {
  let nonceTracker, provider
  let getPendingTransactions, pendingTxs
  let getConfirmedTransactions, confirmedTxs
  let providerResultStub = {}

  describe('#getNonceLock', function () {

    describe('with 3 confirmed and 1 pending', function () {
      beforeEach(function () {
        const txGen = new MockTxGen()
        confirmedTxs = txGen.generate({ status: 'confirmed' }, { count: 3 })
        pendingTxs = txGen.generate({ status: 'pending' }, { count: 1 })

        getPendingTransactions = () => pendingTxs
        getConfirmedTransactions = () => confirmedTxs
        providerResultStub.result = '0x3'
        provider = {
          sendAsync: (_, cb) => { cb(undefined, providerResultStub) },
          _blockTracker: {
            getCurrentBlock: () => '0x11b568',
          },
        }
        nonceTracker = new NonceTracker({
          provider,
          getPendingTransactions,
          getConfirmedTransactions,
        })
      })

      it('should work', async function () {
        this.timeout(15000)
        const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
        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()
      })
    })

    describe('with no previous txs', function () {
      beforeEach(function () {
        getPendingTransactions = () => []
        getConfirmedTransactions = () => []
        providerResultStub.result = '0x0'
        provider = {
          sendAsync: (_, cb) => { cb(undefined, providerResultStub) },
          _blockTracker: {
            getCurrentBlock: () => '0x11b568',
          },
        }
        nonceTracker = new NonceTracker({
          provider,
          getPendingTransactions,
          getConfirmedTransactions,
        })
      })

      it('should return 0', async function () {
        this.timeout(15000)
        const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
        assert.equal(nonceLock.nextNonce, '0', 'nonce should be 0')
        await nonceLock.releaseLock()
      })
    })
  })
})