2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
2021-03-16 22:00:08 +01:00
|
|
|
import migration29 from './029';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const properTime = new Date().getTime();
|
2018-11-17 06:27:01 +01:00
|
|
|
const storage = {
|
2020-11-03 00:41:28 +01:00
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
TransactionController: {
|
|
|
|
transactions: [
|
2020-11-07 08:38:12 +01:00
|
|
|
{ status: TRANSACTION_STATUSES.APPROVED, id: 1, submittedTime: 0 },
|
|
|
|
{
|
|
|
|
status: TRANSACTION_STATUSES.APPROVED,
|
|
|
|
id: 2,
|
|
|
|
submittedTime: properTime,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
|
|
|
id: 3,
|
|
|
|
submittedTime: properTime,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
status: TRANSACTION_STATUSES.SUBMITTED,
|
|
|
|
id: 4,
|
|
|
|
submittedTime: properTime,
|
|
|
|
},
|
|
|
|
{ status: TRANSACTION_STATUSES.SUBMITTED, id: 5, submittedTime: 0 },
|
2018-11-17 06:27:01 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-11-17 06:27:01 +01:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('storage is migrated successfully where transactions that are submitted have submittedTimes', function () {
|
|
|
|
it('should auto fail transactions more than 12 hours old', function (done) {
|
2020-11-03 00:41:28 +01:00
|
|
|
migration29
|
|
|
|
.migrate(storage)
|
2019-07-31 22:17:11 +02:00
|
|
|
.then((migratedData) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const txs = migratedData.data.TransactionController.transactions;
|
|
|
|
const [txMeta1] = txs;
|
|
|
|
assert.equal(migratedData.meta.version, 29);
|
2018-11-17 06:27:01 +01:00
|
|
|
|
2020-11-07 08:38:12 +01:00
|
|
|
assert.equal(
|
|
|
|
txMeta1.status,
|
|
|
|
TRANSACTION_STATUSES.FAILED,
|
|
|
|
'old tx is auto failed',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
assert(
|
|
|
|
txMeta1.err.message.includes('too long'),
|
|
|
|
'error message assigned',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-11-17 06:27:01 +01:00
|
|
|
|
2019-07-31 22:17:11 +02:00
|
|
|
txs.forEach((tx) => {
|
2019-11-20 01:03:20 +01:00
|
|
|
if (tx.id === 1) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return;
|
2019-11-20 01:03:20 +01:00
|
|
|
}
|
2020-11-07 08:38:12 +01:00
|
|
|
assert.notEqual(
|
|
|
|
tx.status,
|
|
|
|
TRANSACTION_STATUSES.FAILED,
|
|
|
|
'other tx is not auto failed',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-11-17 06:27:01 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
done();
|
2020-11-03 00:41:28 +01:00
|
|
|
})
|
2021-02-04 19:15:23 +01:00
|
|
|
.catch(done);
|
|
|
|
});
|
|
|
|
});
|