2023-04-14 20:54:57 +02:00
|
|
|
import { migrate, version } from './085';
|
|
|
|
|
2023-08-16 21:26:20 +02:00
|
|
|
const sentryCaptureExceptionMock = jest.fn();
|
|
|
|
|
|
|
|
global.sentry = {
|
|
|
|
captureException: sentryCaptureExceptionMock,
|
|
|
|
};
|
|
|
|
|
2023-04-14 20:54:57 +02:00
|
|
|
jest.mock('uuid', () => {
|
|
|
|
const actual = jest.requireActual('uuid');
|
|
|
|
|
|
|
|
return {
|
|
|
|
...actual,
|
|
|
|
v4: jest.fn(),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('migration #85', () => {
|
2023-08-16 21:26:20 +02:00
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks();
|
|
|
|
});
|
|
|
|
|
2023-04-14 20:54:57 +02:00
|
|
|
it('should update the version metadata', async () => {
|
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 84,
|
|
|
|
},
|
|
|
|
data: {},
|
|
|
|
};
|
|
|
|
|
|
|
|
const newStorage = await migrate(oldStorage);
|
|
|
|
expect(newStorage.meta).toStrictEqual({
|
|
|
|
version,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return state unaltered if there is no network controller state', async () => {
|
|
|
|
const oldData = {
|
|
|
|
other: 'data',
|
|
|
|
};
|
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 84,
|
|
|
|
},
|
|
|
|
data: oldData,
|
|
|
|
};
|
|
|
|
|
|
|
|
const newStorage = await migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual(oldData);
|
|
|
|
});
|
|
|
|
|
2023-08-16 21:26:20 +02:00
|
|
|
it('should capture an exception there is no network controller state', async () => {
|
|
|
|
const oldData = {
|
|
|
|
other: 'data',
|
|
|
|
};
|
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 84,
|
|
|
|
},
|
|
|
|
data: oldData,
|
|
|
|
};
|
|
|
|
|
|
|
|
await migrate(oldStorage);
|
|
|
|
|
|
|
|
expect(sentryCaptureExceptionMock).toHaveBeenCalledTimes(1);
|
|
|
|
expect(sentryCaptureExceptionMock).toHaveBeenCalledWith(
|
|
|
|
new Error(`typeof state.NetworkController is undefined`),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-04-14 20:54:57 +02:00
|
|
|
it('should return state unaltered if there is no network controller previous provider state', async () => {
|
|
|
|
const oldData = {
|
|
|
|
other: 'data',
|
|
|
|
NetworkController: {
|
|
|
|
provider: {
|
|
|
|
some: 'provider',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 84,
|
|
|
|
},
|
|
|
|
data: oldData,
|
|
|
|
};
|
|
|
|
|
|
|
|
const newStorage = await migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual(oldData);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should remove the previous provider state', async () => {
|
|
|
|
const oldData = {
|
|
|
|
other: 'data',
|
|
|
|
NetworkController: {
|
|
|
|
previousProviderStore: {
|
|
|
|
example: 'config',
|
|
|
|
},
|
|
|
|
provider: {
|
|
|
|
some: 'provider',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const oldStorage = {
|
|
|
|
meta: {
|
|
|
|
version: 84,
|
|
|
|
},
|
|
|
|
data: oldData,
|
|
|
|
};
|
|
|
|
|
|
|
|
const newStorage = await migrate(oldStorage);
|
|
|
|
expect(newStorage.data).toStrictEqual({
|
|
|
|
other: 'data',
|
|
|
|
NetworkController: {
|
|
|
|
provider: {
|
|
|
|
some: 'provider',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|