You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
3.0 KiB
133 lines
3.0 KiB
4 years ago
|
import assert from 'assert';
|
||
4 years ago
|
import migration49 from './049';
|
||
4 years ago
|
|
||
|
describe('migration #49', function () {
|
||
|
it('should update the version metadata', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: 48,
|
||
|
},
|
||
|
data: {},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.meta, {
|
||
|
version: 49,
|
||
4 years ago
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should move metaMetricsId to MetaMetricsController', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
PreferencesController: {
|
||
|
metaMetricsId: '0xaab',
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
PreferencesController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
MetaMetricsController: {
|
||
|
metaMetricsId: '0xaab',
|
||
|
},
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should move participateInMetaMetrics to MetaMetricsController', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
PreferencesController: {
|
||
|
participateInMetaMetrics: false,
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
PreferencesController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
MetaMetricsController: {
|
||
|
participateInMetaMetrics: false,
|
||
|
},
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should move metaMetricsSendCount to MetaMetricsController', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
PreferencesController: {
|
||
|
metaMetricsSendCount: 1,
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
PreferencesController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
MetaMetricsController: {
|
||
|
metaMetricsSendCount: 1,
|
||
|
},
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should move all metaMetrics fields to MetaMetricsController', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
PreferencesController: {
|
||
|
metaMetricsSendCount: 1,
|
||
|
metaMetricsId: '0xaab',
|
||
|
participateInMetaMetrics: true,
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
PreferencesController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
MetaMetricsController: {
|
||
|
metaMetricsSendCount: 1,
|
||
|
metaMetricsId: '0xaab',
|
||
|
participateInMetaMetrics: true,
|
||
|
},
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
4 years ago
|
|
||
|
it('should do nothing if no PreferencesController key', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
foo: 'bar',
|
||
|
},
|
||
4 years ago
|
};
|
||
4 years ago
|
|
||
4 years ago
|
const newStorage = await migration49.migrate(oldStorage);
|
||
4 years ago
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
foo: 'bar',
|
||
4 years ago
|
});
|
||
|
});
|
||
|
});
|