nifty-wallet/test/unit/actions/tx_test.js

75 lines
1.9 KiB
JavaScript
Raw Normal View History

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