aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations/027-test.js
blob: 77c0bbee625eabb09e548b8b20b1dbfcdf8ba56e (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
const assert = require('assert')
const migration27 = require('../../../app/scripts/migrations/027')

const oldStorage = {
  "meta": {},
  "data": {
    "TransactionController": {
      "transactions": [
      ]
    },
  },
}

const transactions = []


while (transactions.length < 9) {
  transactions.push({status: 'rejected'})
  transactions.push({status: 'unapproved'})
  transactions.push({status: 'approved'})
}


oldStorage.data.TransactionController.transactions = transactions

describe('migration #27', () => {
  it('should remove rejected transactions', (done) => {
    migration27.migrate(oldStorage)
      .then((newStorage) => {
        const newTransactions = newStorage.data.TransactionController.transactions
        assert.equal(newTransactions.length, 6, 'transactions is expected to have the length of 6')
        newTransactions.forEach((txMeta) => {
          if (txMeta.status === 'rejected') done(new Error('transaction was found with a status of rejected'))
        })
        done()
      })
      .catch(done)
  })

  it('should successfully migrate first time state', (done) => {
    migration27.migrate({
      meta: {},
      data: require('../../../app/scripts/first-time-state'),
    })
      .then((migratedData) => {
        assert.equal(migratedData.meta.version, migration27.version)
        done()
      }).catch(done)
  })
})