mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
4f3fc95d50
* Use @metamask/eslint-config@1.1.0 * Use eslint-plugin-mocha@6.2.2 * Mark root ESLint config as root * Update Mocha ESLint rules with shared ESLint config
94 lines
2.8 KiB
JavaScript
94 lines
2.8 KiB
JavaScript
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
import sinon from 'sinon'
|
|
|
|
let mapDispatchToProps
|
|
|
|
const actionSpies = {
|
|
setMaxModeTo: sinon.spy(),
|
|
updateSendAmount: sinon.spy(),
|
|
}
|
|
const duckActionSpies = {
|
|
updateSendErrors: sinon.spy(),
|
|
}
|
|
|
|
proxyquire('../send-amount-row.container.js', {
|
|
'react-redux': {
|
|
connect: (_, md) => {
|
|
mapDispatchToProps = md
|
|
return () => ({})
|
|
},
|
|
},
|
|
'./send-amount-row.selectors': { sendAmountIsInError: (s) => `mockInError:${s}` },
|
|
'../../send.utils': {
|
|
getAmountErrorObject: (mockDataObject) => ({ ...mockDataObject, mockChange: true }),
|
|
getGasFeeErrorObject: (mockDataObject) => ({ ...mockDataObject, mockGasFeeErrorChange: true }),
|
|
},
|
|
'../../../../store/actions': actionSpies,
|
|
'../../../../ducks/send/send.duck': duckActionSpies,
|
|
})
|
|
|
|
describe('send-amount-row container', function () {
|
|
|
|
describe('mapDispatchToProps()', function () {
|
|
let dispatchSpy
|
|
let mapDispatchToPropsObject
|
|
|
|
beforeEach(function () {
|
|
dispatchSpy = sinon.spy()
|
|
mapDispatchToPropsObject = mapDispatchToProps(dispatchSpy)
|
|
duckActionSpies.updateSendErrors.resetHistory()
|
|
})
|
|
|
|
describe('setMaxModeTo()', function () {
|
|
it('should dispatch an action', function () {
|
|
mapDispatchToPropsObject.setMaxModeTo('mockBool')
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(actionSpies.setMaxModeTo.calledOnce)
|
|
assert.equal(
|
|
actionSpies.setMaxModeTo.getCall(0).args[0],
|
|
'mockBool'
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('updateSendAmount()', function () {
|
|
it('should dispatch an action', function () {
|
|
mapDispatchToPropsObject.updateSendAmount('mockAmount')
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(actionSpies.updateSendAmount.calledOnce)
|
|
assert.equal(
|
|
actionSpies.updateSendAmount.getCall(0).args[0],
|
|
'mockAmount'
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('updateGasFeeError()', function () {
|
|
it('should dispatch an action', function () {
|
|
mapDispatchToPropsObject.updateGasFeeError({ some: 'data' })
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(duckActionSpies.updateSendErrors.calledOnce)
|
|
assert.deepEqual(
|
|
duckActionSpies.updateSendErrors.getCall(0).args[0],
|
|
{ some: 'data', mockGasFeeErrorChange: true }
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('updateSendAmountError()', function () {
|
|
it('should dispatch an action', function () {
|
|
mapDispatchToPropsObject.updateSendAmountError({ some: 'data' })
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(duckActionSpies.updateSendErrors.calledOnce)
|
|
assert.deepEqual(
|
|
duckActionSpies.updateSendErrors.getCall(0).args[0],
|
|
{ some: 'data', mockChange: true }
|
|
)
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
})
|