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.
81 lines
1.8 KiB
81 lines
1.8 KiB
3 years ago
|
import { strict as assert } from 'assert';
|
||
|
import migration62 from './062';
|
||
|
|
||
|
describe('migration #62', function () {
|
||
|
it('should update the version metadata', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: 61,
|
||
|
},
|
||
|
data: {},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migration62.migrate(oldStorage);
|
||
|
assert.deepEqual(newStorage.meta, {
|
||
|
version: 62,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should remove metaMetricsSendCount from MetaMetricsController', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
MetaMetricsController: {
|
||
|
metaMetricsSendCount: 1,
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migration62.migrate(oldStorage);
|
||
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
MetaMetricsController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should remove metaMetricsSendCount from MetaMetricsController (falsey but defined)', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
MetaMetricsController: {
|
||
|
metaMetricsSendCount: 0,
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migration62.migrate(oldStorage);
|
||
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
MetaMetricsController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should not modify MetaMetricsController when metaMetricsSendCount is undefined', async function () {
|
||
|
const oldStorage = {
|
||
|
meta: {},
|
||
|
data: {
|
||
|
MetaMetricsController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migration62.migrate(oldStorage);
|
||
|
assert.deepStrictEqual(newStorage.data, {
|
||
|
MetaMetricsController: {
|
||
|
bar: 'baz',
|
||
|
},
|
||
|
foo: 'bar',
|
||
|
});
|
||
|
});
|
||
|
});
|