1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/scripts/migrations/049.test.js
Thomas Huang e78e82205a
Jestify migrations/ (#12106)
* Jestify migrations/

* Lint exclude migrations from mocha config, and add inclusion to jest config

* Add migration tests to jest config

* Exclude/ignore migration tests

* Set process.env.IN_TEST to true when running tests locally
2021-09-21 09:28:13 -07:00

132 lines
2.9 KiB
JavaScript

import migration49 from './049';
describe('migration #49', () => {
it('should update the version metadata', async () => {
const oldStorage = {
meta: {
version: 48,
},
data: {},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.meta).toStrictEqual({
version: 49,
});
});
it('should move metaMetricsId to MetaMetricsController', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
metaMetricsId: '0xaab',
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
bar: 'baz',
},
MetaMetricsController: {
metaMetricsId: '0xaab',
},
foo: 'bar',
});
});
it('should move participateInMetaMetrics to MetaMetricsController', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
participateInMetaMetrics: false,
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
bar: 'baz',
},
MetaMetricsController: {
participateInMetaMetrics: false,
},
foo: 'bar',
});
});
it('should move metaMetricsSendCount to MetaMetricsController', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
metaMetricsSendCount: 1,
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
bar: 'baz',
},
MetaMetricsController: {
metaMetricsSendCount: 1,
},
foo: 'bar',
});
});
it('should move all metaMetrics fields to MetaMetricsController', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
metaMetricsSendCount: 1,
metaMetricsId: '0xaab',
participateInMetaMetrics: true,
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
bar: 'baz',
},
MetaMetricsController: {
metaMetricsSendCount: 1,
metaMetricsId: '0xaab',
participateInMetaMetrics: true,
},
foo: 'bar',
});
});
it('should do nothing if no PreferencesController key', async () => {
const oldStorage = {
meta: {},
data: {
foo: 'bar',
},
};
const newStorage = await migration49.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
foo: 'bar',
});
});
});