mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e78e82205a
* 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
109 lines
2.7 KiB
JavaScript
109 lines
2.7 KiB
JavaScript
import migration47 from './047';
|
|
|
|
describe('migration #47', () => {
|
|
it('should update the version metadata', async () => {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 46,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(newStorage.meta).toStrictEqual({
|
|
version: 47,
|
|
});
|
|
});
|
|
|
|
it('should stringify transactions metamaskNetworkId values', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
transactions: [
|
|
{ foo: 'bar', metamaskNetworkId: 2 },
|
|
{ foo: 'bar' },
|
|
{ foo: 'bar', metamaskNetworkId: 0 },
|
|
{ foo: 'bar', metamaskNetworkId: 42 },
|
|
],
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(newStorage.data).toStrictEqual({
|
|
TransactionController: {
|
|
transactions: [
|
|
{ foo: 'bar', metamaskNetworkId: '2' },
|
|
{ foo: 'bar' },
|
|
{ foo: 'bar', metamaskNetworkId: '0' },
|
|
{ foo: 'bar', metamaskNetworkId: '42' },
|
|
],
|
|
},
|
|
foo: 'bar',
|
|
});
|
|
});
|
|
|
|
it('should do nothing if transactions metamaskNetworkId values are already strings', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
transactions: [
|
|
{ foo: 'bar', metamaskNetworkId: '2' },
|
|
{ foo: 'bar' },
|
|
{ foo: 'bar', metamaskNetworkId: '0' },
|
|
{ foo: 'bar', metamaskNetworkId: '42' },
|
|
],
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(oldStorage.data).toStrictEqual(newStorage.data);
|
|
});
|
|
|
|
it('should do nothing if transactions state does not exist', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(oldStorage.data).toStrictEqual(newStorage.data);
|
|
});
|
|
|
|
it('should do nothing if transactions state is empty', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
transactions: [],
|
|
bar: 'baz',
|
|
},
|
|
foo: 'bar',
|
|
},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(oldStorage.data).toStrictEqual(newStorage.data);
|
|
});
|
|
|
|
it('should do nothing if state is empty', async () => {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {},
|
|
};
|
|
|
|
const newStorage = await migration47.migrate(oldStorage);
|
|
expect(oldStorage.data).toStrictEqual(newStorage.data);
|
|
});
|
|
});
|