2021-03-16 22:00:08 +01:00
|
|
|
import migration40 from './040';
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
describe('migration #40', () => {
|
|
|
|
it('should update the version metadata', async () => {
|
2020-02-27 05:49:59 +01:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {
|
|
|
|
version: 39,
|
2020-02-27 05:49:59 +01:00
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
data: {},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
|
|
expect(newStorage.meta?.version).toStrictEqual(40);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should delete ProviderApprovalController storage key', async () => {
|
2020-02-27 05:49:59 +01:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
ProviderApprovalController: {},
|
|
|
|
foo: 'bar',
|
2020-02-27 05:49:59 +01:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
foo: 'bar',
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
it('should do nothing if no ProviderApprovalController storage key', async () => {
|
2020-02-27 05:49:59 +01:00
|
|
|
const oldStorage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: { foo: 'bar' },
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-02-27 05:49:59 +01:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
const newStorage = await migration40.migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
foo: 'bar',
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|