2021-03-16 22:00:08 +01:00
|
|
|
import migration45 from './045';
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
describe('migration #45', () => {
|
|
|
|
it('should update the version metadata', async () => {
|
2020-05-14 12:26:27 +02:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {
|
|
|
|
version: 44,
|
2020-05-14 12:26:27 +02:00
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
data: {},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration45.migrate(oldStorage);
|
|
|
|
expect(newStorage.meta).toStrictEqual({
|
|
|
|
version: 45,
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should update ipfsGateway value if outdated', async () => {
|
2020-05-14 12:26:27 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
ipfsGateway: 'ipfs.dweb.link',
|
|
|
|
bar: 'baz',
|
|
|
|
},
|
|
|
|
foo: 'bar',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration45.migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
PreferencesController: {
|
|
|
|
ipfsGateway: 'dweb.link',
|
|
|
|
bar: 'baz',
|
|
|
|
},
|
|
|
|
foo: 'bar',
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should not update ipfsGateway value if custom set', async () => {
|
2020-05-14 12:26:27 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
PreferencesController: {
|
|
|
|
ipfsGateway: 'blah',
|
|
|
|
bar: 'baz',
|
|
|
|
},
|
|
|
|
foo: 'bar',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration45.migrate(oldStorage);
|
|
|
|
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
PreferencesController: {
|
|
|
|
ipfsGateway: 'blah',
|
|
|
|
bar: 'baz',
|
|
|
|
},
|
|
|
|
foo: 'bar',
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should do nothing if no PreferencesController key', async () => {
|
2020-05-14 12:26:27 +02:00
|
|
|
const oldStorage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
foo: 'bar',
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-05-14 12:26:27 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration45.migrate(oldStorage);
|
|
|
|
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
foo: 'bar',
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|