2021-03-16 22:00:08 +01:00
|
|
|
import migration35 from './035';
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
describe('migration #35', () => {
|
|
|
|
it('should update the version metadata', async () => {
|
2019-08-02 14:58:25 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 34,
|
|
|
|
},
|
|
|
|
data: {},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration35.migrate(oldStorage);
|
|
|
|
expect(newStorage.meta.version).toStrictEqual(35);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should delete seedWords', async () => {
|
2019-08-02 14:58:25 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
seedWords: 'seed words',
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration35.migrate(oldStorage);
|
|
|
|
expect(newStorage.data.PreferencesController).toStrictEqual({});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should delete falsy seedWords', async () => {
|
2019-08-02 14:58:25 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
seedWords: '',
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration35.migrate(oldStorage);
|
|
|
|
expect(newStorage.data.PreferencesController).toStrictEqual({});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should leave state without seedWords unchanged', async () => {
|
2019-08-02 14:58:25 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
frequentRpcListDetail: [],
|
|
|
|
accountTokens: {},
|
|
|
|
assetImages: {},
|
|
|
|
tokens: [],
|
|
|
|
suggestedTokens: {},
|
|
|
|
useBlockie: false,
|
|
|
|
knownMethodData: {},
|
|
|
|
participateInMetaMetrics: null,
|
|
|
|
firstTimeFlowType: null,
|
|
|
|
currentLocale: 'en',
|
|
|
|
identities: {},
|
|
|
|
lostIdentities: {},
|
|
|
|
forgottenPassword: false,
|
|
|
|
preferences: {
|
|
|
|
useNativeCurrencyAsPrimaryCurrency: true,
|
|
|
|
},
|
|
|
|
completedOnboarding: false,
|
|
|
|
migratedPrivacyMode: false,
|
|
|
|
metaMetricsId: null,
|
|
|
|
metaMetricsSendCount: 0,
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-08-02 14:58:25 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration35.migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual(oldStorage.data);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|