2021-03-16 22:00:08 +01:00
|
|
|
import migration31 from './031';
|
2019-01-23 16:25:34 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
describe('migration #31', () => {
|
|
|
|
it('should set completedOnboarding to true if vault exists', async () => {
|
2019-01-23 16:25:34 +01:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
tokens: [
|
|
|
|
{ address: '0xa', symbol: 'A', decimals: 4 },
|
|
|
|
{ address: '0xb', symbol: 'B', decimals: 4 },
|
|
|
|
],
|
|
|
|
identities: {
|
2019-01-23 16:25:34 +01:00
|
|
|
'0x6d14': {},
|
|
|
|
'0x3695': {},
|
|
|
|
},
|
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
KeyringController: {
|
|
|
|
vault: {
|
|
|
|
data: 'test0',
|
|
|
|
iv: 'test1',
|
|
|
|
salt: 'test2',
|
2019-01-23 16:25:34 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-01-23 16:25:34 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration31.migrate(oldStorage);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
newStorage.data.PreferencesController.completedOnboarding,
|
|
|
|
).toStrictEqual(true);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-01-23 16:25:34 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should set completedOnboarding to false if vault does not exist', async () => {
|
2019-01-23 16:25:34 +01:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
tokens: [
|
|
|
|
{ address: '0xa', symbol: 'A', decimals: 4 },
|
|
|
|
{ address: '0xb', symbol: 'B', decimals: 4 },
|
|
|
|
],
|
|
|
|
identities: {
|
2019-01-23 16:25:34 +01:00
|
|
|
'0x6d14': {},
|
|
|
|
'0x3695': {},
|
|
|
|
},
|
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
KeyringController: {},
|
2019-01-23 16:25:34 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-01-23 16:25:34 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration31.migrate(oldStorage);
|
|
|
|
expect(
|
|
|
|
newStorage.data.PreferencesController.completedOnboarding,
|
|
|
|
).toStrictEqual(false);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|