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
Brad Decker a49a4a066c
expand transaction constants coverage (#9790)
* expand transaction constants coverage

* touchups

* dont import inside of e2e

* Update app/scripts/controllers/transactions/tx-state-manager.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

* Update test/unit/app/controllers/transactions/tx-controller-test.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

Co-authored-by: Mark Stacey <markjstacey@gmail.com>
2020-11-07 01:38:12 -06:00

60 lines
1.6 KiB
JavaScript

import assert from 'assert'
import firstTimeState from '../../../app/scripts/first-time-state'
import migration27 from '../../../app/scripts/migrations/027'
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
const oldStorage = {
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) {
migration27
.migrate(oldStorage)
.then((newStorage) => {
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) {
migration27
.migrate({
meta: {},
data: firstTimeState,
})
.then((migratedData) => {
assert.equal(migratedData.meta.version, migration27.version)
done()
})
.catch(done)
})
})