aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/migrations/026-test.js
blob: b3f5470cfc9b3d896bd7e05c471ff9b705b87459 (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
const assert = require('assert')
const migration26 = require('../../../app/scripts/migrations/026')
const oldStorage = {
  'meta': {'version': 25},
  'data': {
    'PreferencesController': {},
    'KeyringController': {
      'walletNicknames': {
        '0x1e77e2': 'Test Account 1',
        '0x7e57e2': 'Test Account 2',
      },
    },
  },
}

describe('migration #26', () => {
  it('should move the identities from KeyringController', (done) => {
    migration26.migrate(oldStorage)
      .then((newStorage) => {
        const identities = newStorage.data.PreferencesController.identities
        assert.deepEqual(identities, {
          '0x1e77e2': {name: 'Test Account 1', address: '0x1e77e2'},
          '0x7e57e2': {name: 'Test Account 2', address: '0x7e57e2'},
        })
        assert.strictEqual(newStorage.data.KeyringController.walletNicknames, undefined)
        done()
      })
      .catch(done)
  })

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