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/045.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

78 lines
1.6 KiB
JavaScript

import migration45 from './045';
describe('migration #45', () => {
it('should update the version metadata', async () => {
const oldStorage = {
meta: {
version: 44,
},
data: {},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.meta).toStrictEqual({
version: 45,
});
});
it('should update ipfsGateway value if outdated', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
ipfsGateway: 'ipfs.dweb.link',
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
ipfsGateway: 'dweb.link',
bar: 'baz',
},
foo: 'bar',
});
});
it('should not update ipfsGateway value if custom set', async () => {
const oldStorage = {
meta: {},
data: {
PreferencesController: {
ipfsGateway: 'blah',
bar: 'baz',
},
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
PreferencesController: {
ipfsGateway: 'blah',
bar: 'baz',
},
foo: 'bar',
});
});
it('should do nothing if no PreferencesController key', async () => {
const oldStorage = {
meta: {},
data: {
foo: 'bar',
},
};
const newStorage = await migration45.migrate(oldStorage);
expect(newStorage.data).toStrictEqual({
foo: 'bar',
});
});
});