mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import firstTimeState from '../first-time-state';
|
|
import { TransactionStatus } from '../../../shared/constants/transaction';
|
|
import migration27 from './027';
|
|
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
transactions: [],
|
|
},
|
|
},
|
|
};
|
|
|
|
const transactions = [];
|
|
|
|
while (transactions.length < 9) {
|
|
transactions.push({ status: TransactionStatus.rejected });
|
|
transactions.push({ status: TransactionStatus.unapproved });
|
|
transactions.push({ status: TransactionStatus.approved });
|
|
}
|
|
|
|
oldStorage.data.TransactionController.transactions = transactions;
|
|
|
|
describe('migration #27', () => {
|
|
it('should remove rejected transactions', async () => {
|
|
const newStorage = await migration27.migrate(oldStorage);
|
|
|
|
const newTransactions = newStorage.data.TransactionController.transactions;
|
|
|
|
expect(newTransactions).toHaveLength(6);
|
|
|
|
newTransactions.forEach((txMeta) => {
|
|
if (txMeta.status === TransactionStatus.rejected) {
|
|
throw new Error('transaction was found with a status of rejected');
|
|
}
|
|
});
|
|
});
|
|
|
|
it('should successfully migrate first time state', async () => {
|
|
const migratedData = await migration27.migrate({
|
|
meta: {},
|
|
data: firstTimeState,
|
|
});
|
|
|
|
expect(migratedData.meta.version).toStrictEqual(migration27.version);
|
|
});
|
|
});
|