mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
a49a4a066c
* 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>
69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
import assert from 'assert'
|
|
import migration24 from '../../../app/scripts/migrations/024'
|
|
import data from '../../../app/scripts/first-time-state'
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
|
|
|
|
const firstTimeState = {
|
|
meta: {},
|
|
data,
|
|
}
|
|
const storage = {
|
|
meta: {},
|
|
data: {
|
|
TransactionController: {
|
|
transactions: [],
|
|
},
|
|
},
|
|
}
|
|
|
|
const transactions = []
|
|
|
|
while (transactions.length <= 10) {
|
|
transactions.push({
|
|
txParams: { from: '0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675' },
|
|
status: TRANSACTION_STATUSES.UNAPPROVED,
|
|
})
|
|
transactions.push({
|
|
txParams: { from: '0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675' },
|
|
status: TRANSACTION_STATUSES.CONFIRMED,
|
|
})
|
|
}
|
|
|
|
storage.data.TransactionController.transactions = transactions
|
|
|
|
describe('storage is migrated successfully and the txParams.from are lowercase', function () {
|
|
it('should lowercase the from for unapproved txs', function (done) {
|
|
migration24
|
|
.migrate(storage)
|
|
.then((migratedData) => {
|
|
const migratedTransactions =
|
|
migratedData.data.TransactionController.transactions
|
|
migratedTransactions.forEach((tx) => {
|
|
if (tx.status === TRANSACTION_STATUSES.UNAPPROVED) {
|
|
assert.equal(
|
|
tx.txParams.from,
|
|
'0x8acce2391c0d510a6c5e5d8f819a678f79b7e675',
|
|
)
|
|
} else {
|
|
assert.equal(
|
|
tx.txParams.from,
|
|
'0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675',
|
|
)
|
|
}
|
|
})
|
|
done()
|
|
})
|
|
.catch(done)
|
|
})
|
|
|
|
it('should migrate first time state', function (done) {
|
|
migration24
|
|
.migrate(firstTimeState)
|
|
.then((migratedData) => {
|
|
assert.equal(migratedData.meta.version, 24)
|
|
done()
|
|
})
|
|
.catch(done)
|
|
})
|
|
})
|