1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/test/unit/actions/tx_test.js

75 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-05-04 23:35:10 +02:00
// var jsdom = require('mocha-jsdom')
var assert = require('assert')
var freeze = require('deep-freeze-strict')
var path = require('path')
var sinon = require('sinon')
2016-04-18 20:41:29 +02:00
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
2017-05-04 23:35:10 +02:00
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
2017-05-04 23:35:10 +02:00
describe('tx confirmation screen', function () {
beforeEach(function () {
this.sinon = sinon.createSandbox()
2017-05-04 23:35:10 +02:00
})
2017-05-04 23:35:10 +02:00
afterEach(function () {
this.sinon.restore()
})
var initialState, result
2017-05-04 23:35:10 +02:00
describe('when there is only one tx', function () {
var firstTxId = 1457634084250832
2017-05-04 23:35:10 +02:00
beforeEach(function () {
initialState = {
appState: {
currentView: {
name: 'confTx',
},
},
metamask: {
unapprovedTxs: {
'1457634084250832': {
id: 1457634084250832,
2017-05-04 23:35:10 +02:00
status: 'unconfirmed',
time: 1457634084250,
2017-05-04 23:35:10 +02:00
},
},
2017-05-04 23:35:10 +02:00
},
}
freeze(initialState)
})
2017-05-04 23:35:10 +02:00
describe('cancelTx', function () {
before(function (done) {
2016-10-20 21:07:53 +02:00
actions._setBackgroundConnection({
2017-05-04 23:35:10 +02:00
approveTransaction (txId, cb) { cb('An error!') },
2017-08-04 04:02:31 +02:00
cancelTransaction (txId, cb) { cb() },
2017-05-04 23:35:10 +02:00
clearSeedWordCache (cb) { cb() },
})
2017-08-04 05:56:53 +02:00
actions.cancelTx({value: firstTxId})((action) => {
result = reducers(initialState, action)
2017-08-04 04:02:31 +02:00
})
done()
})
2017-05-04 23:35:10 +02:00
it('should transition to the account detail view', function () {
assert.equal(result.appState.currentView.name, 'accountDetail')
})
2017-05-04 23:35:10 +02:00
it('should have no unconfirmed txs remaining', function () {
var count = getUnconfirmedTxCount(result)
assert.equal(count, 0)
})
})
})
2017-05-04 23:35:10 +02:00
})
2017-05-04 23:35:10 +02:00
function getUnconfirmedTxCount (state) {
var txs = state.metamask.unapprovedTxs
var count = Object.keys(txs).length
return count
}