2023-01-18 15:47:29 +01:00
|
|
|
import { TransactionStatus } from '../../../shared/constants/transaction';
|
2021-03-16 22:00:08 +01:00
|
|
|
import migration22 from './022';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const properTime = new Date().getTime();
|
2018-03-26 23:24:12 +02:00
|
|
|
const storage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
TransactionController: {
|
|
|
|
transactions: [
|
2023-01-18 15:47:29 +01:00
|
|
|
{ status: TransactionStatus.submitted },
|
|
|
|
{ status: TransactionStatus.submitted, submittedTime: properTime },
|
|
|
|
{ status: TransactionStatus.confirmed },
|
2018-07-03 00:49:33 +02:00
|
|
|
],
|
2018-03-26 23:24:12 +02:00
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-03-26 23:24:12 +02:00
|
|
|
|
2021-09-21 18:28:13 +02:00
|
|
|
describe('storage is migrated successfully where transactions that are submitted have submittedTimes', () => {
|
|
|
|
it('should add submittedTime key on the txMeta if appropriate', async () => {
|
|
|
|
const migratedData = await migration22.migrate(storage);
|
2022-07-31 20:26:40 +02:00
|
|
|
const [txMeta1, txMeta2, txMeta3] =
|
|
|
|
migratedData.data.TransactionController.transactions;
|
2021-09-21 18:28:13 +02:00
|
|
|
|
|
|
|
expect(migratedData.meta.version).toStrictEqual(22);
|
|
|
|
// should have written a submitted time
|
|
|
|
expect.anything(txMeta1.submittedTime);
|
|
|
|
// should not have written a submitted time because it already has one
|
|
|
|
expect(txMeta2.submittedTime).toStrictEqual(properTime);
|
|
|
|
// should not have written a submitted time
|
|
|
|
expect(!txMeta3.submittedTime).toStrictEqual(true);
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|