1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 21:00:13 +01:00
metamask-extension/test/unit/actions/tx_test.js

159 lines
4.3 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.sandbox.create()
})
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!') },
cancelTransaction (txId) { /* noop */ },
clearSeedWordCache (cb) { cb() },
})
2017-05-04 23:35:10 +02:00
const action = actions.cancelTx({value: firstTxId})
result = reducers(initialState, action)
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
describe('sendTx', function () {
var result
2017-05-04 23:35:10 +02:00
describe('when there is an error', 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({message: 'An error!'}) },
})
2017-05-04 23:35:10 +02:00
actions.sendTx({id: firstTxId})(function (action) {
result = reducers(initialState, action)
done()
})
})
2017-05-04 23:35:10 +02:00
it('should stay on the page', function () {
assert.equal(result.appState.currentView.name, 'confTx')
})
2017-05-04 23:35:10 +02:00
it('should set errorMessage on the currentView', function () {
assert(result.appState.currentView.errorMessage)
})
})
2017-05-04 23:35:10 +02:00
describe('when there is success', function () {
it('should complete tx and go home', function () {
2016-10-20 21:07:53 +02:00
actions._setBackgroundConnection({
2017-05-04 23:35:10 +02:00
approveTransaction (txId, cb) { cb() },
})
var dispatchExpect = sinon.mock()
dispatchExpect.twice()
actions.sendTx({id: firstTxId})(dispatchExpect)
})
})
})
2017-05-04 23:35:10 +02:00
describe('when there are two pending txs', function () {
var firstTxId = 1457634084250832
var result, initialState
2017-05-04 23:35:10 +02:00
before(function (done) {
initialState = {
appState: {
currentView: {
name: 'confTx',
},
},
metamask: {
unapprovedTxs: {
'1457634084250832': {
2017-02-24 02:45:23 +01:00
id: firstTxId,
2017-05-04 23:35:10 +02:00
status: 'unconfirmed',
time: 1457634084250,
},
'1457634084250833': {
id: 1457634084250833,
2017-05-04 23:35:10 +02:00
status: 'unconfirmed',
time: 1457634084255,
},
},
2017-05-04 23:35:10 +02:00
},
}
freeze(initialState)
2017-02-24 02:45:23 +01:00
// Mocking a background connection:
2016-10-20 21:07:53 +02:00
actions._setBackgroundConnection({
2017-05-04 23:35:10 +02:00
approveTransaction (firstTxId, cb) { cb() },
})
2017-05-04 23:35:10 +02:00
actions.sendTx({id: firstTxId})(function (action) {
result = reducers(initialState, action)
})
done()
})
2017-05-04 23:35:10 +02:00
it('should stay on the confTx view', function () {
assert.equal(result.appState.currentView.name, 'confTx')
})
2017-05-04 23:35:10 +02:00
it('should transition to the first tx', function () {
assert.equal(result.appState.currentView.context, 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
}