1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/migrations/027-test.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

import assert from 'assert'
2020-07-18 01:36:29 +02:00
import firstTimeState from '../../../app/scripts/first-time-state'
import migration27 from '../../../app/scripts/migrations/027'
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
TransactionController: {
transactions: [],
},
},
}
const transactions = []
while (transactions.length < 9) {
transactions.push({ status: TRANSACTION_STATUSES.REJECTED })
transactions.push({ status: TRANSACTION_STATUSES.UNAPPROVED })
transactions.push({ status: TRANSACTION_STATUSES.APPROVED })
}
oldStorage.data.TransactionController.transactions = transactions
describe('migration #27', function () {
it('should remove rejected transactions', function (done) {
2020-11-03 00:41:28 +01:00
migration27
.migrate(oldStorage)
.then((newStorage) => {
2020-11-03 00:41:28 +01:00
const newTransactions =
newStorage.data.TransactionController.transactions
assert.equal(
newTransactions.length,
6,
'transactions is expected to have the length of 6',
)
newTransactions.forEach((txMeta) => {
if (txMeta.status === TRANSACTION_STATUSES.REJECTED) {
done(new Error('transaction was found with a status of rejected'))
}
})
done()
})
.catch(done)
})
it('should successfully migrate first time state', function (done) {
2020-11-03 00:41:28 +01:00
migration27
.migrate({
meta: {},
data: firstTimeState,
})
.then((migratedData) => {
assert.equal(migratedData.meta.version, migration27.version)
done()
2020-11-03 00:41:28 +01:00
})
.catch(done)
})
})