2020-01-09 04:34:58 +01:00
|
|
|
import assert from 'assert'
|
|
|
|
import migration31 from '../../../app/scripts/migrations/031'
|
2019-01-23 16:25:34 +01:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('migration #31', function () {
|
|
|
|
it('should set completedOnboarding to true if vault exists', function (done) {
|
2019-01-23 16:25:34 +01:00
|
|
|
const oldStorage = {
|
|
|
|
'meta': {},
|
|
|
|
'data': {
|
|
|
|
'PreferencesController': {
|
2019-12-03 21:50:55 +01:00
|
|
|
'tokens': [{ address: '0xa', symbol: 'A', decimals: 4 }, { address: '0xb', symbol: 'B', decimals: 4 }],
|
2019-01-23 16:25:34 +01:00
|
|
|
'identities': {
|
|
|
|
'0x6d14': {},
|
|
|
|
'0x3695': {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'KeyringController': {
|
|
|
|
'vault': {
|
|
|
|
'data': 'test0',
|
|
|
|
'iv': 'test1',
|
|
|
|
'salt': 'test2',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:17:11 +02:00
|
|
|
migration31.migrate(oldStorage)
|
2020-02-15 21:34:12 +01:00
|
|
|
.then((newStorage) => {
|
2019-01-23 16:25:34 +01:00
|
|
|
assert.equal(newStorage.data.PreferencesController.completedOnboarding, true)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
.catch(done)
|
|
|
|
})
|
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should set completedOnboarding to false if vault does not exist', function (done) {
|
2019-01-23 16:25:34 +01:00
|
|
|
const oldStorage = {
|
|
|
|
'meta': {},
|
|
|
|
'data': {
|
|
|
|
'PreferencesController': {
|
2019-12-03 21:50:55 +01:00
|
|
|
'tokens': [{ address: '0xa', symbol: 'A', decimals: 4 }, { address: '0xb', symbol: 'B', decimals: 4 }],
|
2019-01-23 16:25:34 +01:00
|
|
|
'identities': {
|
|
|
|
'0x6d14': {},
|
|
|
|
'0x3695': {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'KeyringController': {},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:17:11 +02:00
|
|
|
migration31.migrate(oldStorage)
|
2020-02-15 21:34:12 +01:00
|
|
|
.then((newStorage) => {
|
2019-01-23 16:25:34 +01:00
|
|
|
assert.equal(newStorage.data.PreferencesController.completedOnboarding, false)
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
.catch(done)
|
|
|
|
})
|
|
|
|
})
|