mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
110 lines
2.5 KiB
JavaScript
110 lines
2.5 KiB
JavaScript
|
import { migrate, version } from './090';
|
||
|
|
||
|
const PREVIOUS_VERSION = version - 1;
|
||
|
|
||
|
describe('migration #90', () => {
|
||
|
it('updates the version metadata', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: {},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.meta).toStrictEqual({
|
||
|
version,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('does not change the state if the phishing controller state does not exist', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: { test: '123' },
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data).toStrictEqual(oldStorage.data);
|
||
|
});
|
||
|
|
||
|
it('does not change the state if the phishing controller state is invalid', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: { PhishingController: 'this is not valid' },
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data).toStrictEqual(oldStorage.data);
|
||
|
});
|
||
|
|
||
|
it('does not change the state if the listState property does not exist', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: {
|
||
|
PhishingController: { test: 123 },
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data).toStrictEqual(oldStorage.data);
|
||
|
});
|
||
|
|
||
|
it('deletes the "listState" property', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: { PhishingController: { listState: {} } },
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data.PhishingController.listState).toBeUndefined();
|
||
|
});
|
||
|
|
||
|
it('deletes the listState if present', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: { PhishingController: { listState: { test: 123 } } },
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data).toStrictEqual({
|
||
|
PhishingController: {},
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('does not delete the allowlist if present', async () => {
|
||
|
const oldStorage = {
|
||
|
meta: {
|
||
|
version: PREVIOUS_VERSION,
|
||
|
},
|
||
|
data: {
|
||
|
PhishingController: {
|
||
|
whitelist: ['foobar.com'],
|
||
|
listState: { test: 123 },
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const newStorage = await migrate(oldStorage);
|
||
|
|
||
|
expect(newStorage.data).toStrictEqual({
|
||
|
PhishingController: { whitelist: ['foobar.com'] },
|
||
|
});
|
||
|
});
|
||
|
});
|