2020-01-09 04:34:58 +01:00
|
|
|
import assert from 'assert'
|
2018-07-08 03:53:00 +02:00
|
|
|
import configureMockStore from 'redux-mock-store'
|
|
|
|
import thunk from 'redux-thunk'
|
2020-01-09 04:34:58 +01:00
|
|
|
import * as actions from '../../../ui/app/store/actions'
|
2020-05-06 20:56:09 +02:00
|
|
|
import * as actionConstants from '../../../ui/app/store/actionConstants'
|
2016-04-30 00:53:29 +02:00
|
|
|
|
2018-07-08 03:53:00 +02:00
|
|
|
const middlewares = [thunk]
|
|
|
|
const mockStore = configureMockStore(middlewares)
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2018-07-08 03:53:00 +02:00
|
|
|
describe('tx confirmation screen', function () {
|
|
|
|
const txId = 1457634084250832
|
|
|
|
const initialState = {
|
2020-11-03 00:41:28 +01:00
|
|
|
appState: {},
|
2018-07-08 03:53:00 +02:00
|
|
|
metamask: {
|
|
|
|
unapprovedTxs: {
|
|
|
|
[txId]: {
|
|
|
|
id: txId,
|
|
|
|
status: 'unconfirmed',
|
|
|
|
time: 1457634084250,
|
2017-05-04 23:35:10 +02:00
|
|
|
},
|
2018-07-08 03:53:00 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
const store = mockStore(initialState)
|
|
|
|
|
|
|
|
describe('cancelTx', function () {
|
2020-02-11 17:51:13 +01:00
|
|
|
it('creates COMPLETED_TX with the cancelled transaction ID', async function () {
|
2018-07-08 03:53:00 +02:00
|
|
|
actions._setBackgroundConnection({
|
2020-11-03 00:41:28 +01:00
|
|
|
approveTransaction(_, cb) {
|
2020-10-21 18:31:03 +02:00
|
|
|
cb(new Error('An error!'))
|
2019-11-20 01:03:20 +01:00
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
cancelTransaction(_, cb) {
|
2019-11-20 01:03:20 +01:00
|
|
|
cb()
|
|
|
|
},
|
2020-11-03 00:41:28 +01:00
|
|
|
getState(cb) {
|
2020-04-28 15:40:28 +02:00
|
|
|
cb(null, {})
|
2019-11-20 01:03:20 +01:00
|
|
|
},
|
2018-07-08 03:53:00 +02:00
|
|
|
})
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2020-02-06 17:38:14 +01:00
|
|
|
await store.dispatch(actions.cancelTx({ id: txId }))
|
|
|
|
const storeActions = store.getActions()
|
2020-11-03 00:41:28 +01:00
|
|
|
const completedTxAction = storeActions.find(
|
|
|
|
({ type }) => type === actionConstants.COMPLETED_TX,
|
|
|
|
)
|
2020-02-06 17:38:14 +01:00
|
|
|
const { id } = completedTxAction.value
|
|
|
|
assert.equal(id, txId)
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
|
|
|
})
|
2017-05-04 23:35:10 +02:00
|
|
|
})
|