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.
59 lines
1.3 KiB
59 lines
1.3 KiB
import assert from 'assert'
|
|
import proxyquire from 'proxyquire'
|
|
import sinon from 'sinon'
|
|
|
|
let mapStateToProps
|
|
let mapDispatchToProps
|
|
|
|
const actionSpies = {
|
|
clearSend: sinon.spy(),
|
|
}
|
|
|
|
proxyquire('../send-header.container.js', {
|
|
'react-redux': {
|
|
connect: (ms, md) => {
|
|
mapStateToProps = ms
|
|
mapDispatchToProps = md
|
|
return () => ({})
|
|
},
|
|
},
|
|
'../../../store/actions': actionSpies,
|
|
'./send-header.selectors': {
|
|
getTitleKey: (s) => `mockTitleKey:${s}`,
|
|
getSubtitleParams: (s) => `mockSubtitleParams:${s}`,
|
|
},
|
|
})
|
|
|
|
describe('send-header container', () => {
|
|
|
|
describe('mapStateToProps()', () => {
|
|
|
|
it('should map the correct properties to props', () => {
|
|
assert.deepEqual(mapStateToProps('mockState'), {
|
|
titleKey: 'mockTitleKey:mockState',
|
|
subtitleParams: 'mockSubtitleParams:mockState',
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
describe('mapDispatchToProps()', () => {
|
|
let dispatchSpy
|
|
let mapDispatchToPropsObject
|
|
|
|
beforeEach(() => {
|
|
dispatchSpy = sinon.spy()
|
|
mapDispatchToPropsObject = mapDispatchToProps(dispatchSpy)
|
|
})
|
|
|
|
describe('clearSend()', () => {
|
|
it('should dispatch an action', () => {
|
|
mapDispatchToPropsObject.clearSend()
|
|
assert(dispatchSpy.calledOnce)
|
|
assert(actionSpies.clearSend.calledOnce)
|
|
})
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|