You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
5 years ago
|
import assert from 'assert'
|
||
|
import proxyquire from 'proxyquire'
|
||
|
import sinon from 'sinon'
|
||
|
|
||
|
let mapStateToProps
|
||
|
let mapDispatchToProps
|
||
|
|
||
|
const actionSpies = {
|
||
|
updateSendTo: sinon.spy(),
|
||
|
}
|
||
|
|
||
|
proxyquire('../add-recipient.container.js', {
|
||
|
'react-redux': {
|
||
|
connect: (ms, md) => {
|
||
|
mapStateToProps = ms
|
||
|
mapDispatchToProps = md
|
||
|
return () => ({})
|
||
|
},
|
||
|
},
|
||
|
'../../send.selectors.js': {
|
||
|
getSendEnsResolution: (s) => `mockSendEnsResolution:${s}`,
|
||
|
getSendEnsResolutionError: (s) => `mockSendEnsResolutionError:${s}`,
|
||
|
accountsWithSendEtherInfoSelector: (s) => `mockAccountsWithSendEtherInfoSelector:${s}`,
|
||
|
},
|
||
|
'../../../../selectors/selectors': {
|
||
|
getAddressBook: (s) => [{ name: `mockAddressBook:${s}` }],
|
||
|
getAddressBookEntry: (s) => `mockAddressBookEntry:${s}`,
|
||
|
},
|
||
|
'../../../../store/actions': actionSpies,
|
||
|
})
|
||
|
|
||
|
describe('add-recipient container', () => {
|
||
|
|
||
|
describe('mapStateToProps()', () => {
|
||
|
|
||
|
it('should map the correct properties to props', () => {
|
||
|
assert.deepEqual(mapStateToProps('mockState'), {
|
||
|
addressBook: [{ name: 'mockAddressBook:mockState' }],
|
||
|
contacts: [{ name: 'mockAddressBook:mockState' }],
|
||
|
ensResolution: 'mockSendEnsResolution:mockState',
|
||
|
ensResolutionError: 'mockSendEnsResolutionError:mockState',
|
||
|
ownedAccounts: 'mockAccountsWithSendEtherInfoSelector:mockState',
|
||
|
addressBookEntryName: undefined,
|
||
|
nonContacts: [],
|
||
|
})
|
||
|
})
|
||
|
|
||
|
})
|
||
|
|
||
|
describe('mapDispatchToProps()', () => {
|
||
|
let dispatchSpy
|
||
|
let mapDispatchToPropsObject
|
||
|
|
||
|
beforeEach(() => {
|
||
|
dispatchSpy = sinon.spy()
|
||
|
mapDispatchToPropsObject = mapDispatchToProps(dispatchSpy)
|
||
|
})
|
||
|
|
||
|
describe('updateSendTo()', () => {
|
||
|
it('should dispatch an action', () => {
|
||
|
mapDispatchToPropsObject.updateSendTo('mockTo', 'mockNickname')
|
||
|
assert(dispatchSpy.calledOnce)
|
||
|
assert(actionSpies.updateSendTo.calledOnce)
|
||
|
assert.deepEqual(
|
||
|
actionSpies.updateSendTo.getCall(0).args,
|
||
|
['mockTo', 'mockNickname']
|
||
|
)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
})
|