1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/send/send-header/tests/send-header-component.test.js
2020-07-20 14:32:49 -02:30

75 lines
2.1 KiB
JavaScript

import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'
import sinon from 'sinon'
import SendHeader from '../send-header.component.js'
import PageContainerHeader from '../../../../components/ui/page-container/page-container-header'
describe('SendHeader Component', function () {
let wrapper
const propsMethodSpies = {
clearSend: sinon.spy(),
}
const historySpies = {
push: sinon.spy(),
}
before(function () {
sinon.spy(SendHeader.prototype, 'onClose')
})
beforeEach(function () {
wrapper = shallow((
<SendHeader
clearSend={propsMethodSpies.clearSend}
history={historySpies}
mostRecentOverviewPage="mostRecentOverviewPage"
titleKey="mockTitleKey"
/>
), { context: { t: (str1, str2) => (str2 ? str1 + str2 : str1) } })
})
afterEach(function () {
propsMethodSpies.clearSend.resetHistory()
historySpies.push.resetHistory()
SendHeader.prototype.onClose.resetHistory()
})
after(function () {
sinon.restore()
})
describe('onClose', function () {
it('should call clearSend', function () {
assert.equal(propsMethodSpies.clearSend.callCount, 0)
wrapper.instance().onClose()
assert.equal(propsMethodSpies.clearSend.callCount, 1)
})
it('should call history.push', function () {
assert.equal(historySpies.push.callCount, 0)
wrapper.instance().onClose()
assert.equal(historySpies.push.callCount, 1)
assert.equal(historySpies.push.getCall(0).args[0], 'mostRecentOverviewPage')
})
})
describe('render', function () {
it('should render a PageContainerHeader component', function () {
assert.equal(wrapper.find(PageContainerHeader).length, 1)
})
it('should pass the correct props to PageContainerHeader', function () {
const {
onClose,
title,
} = wrapper.find(PageContainerHeader).props()
assert.equal(title, 'mockTitleKey')
assert.equal(SendHeader.prototype.onClose.callCount, 0)
onClose()
assert.equal(SendHeader.prototype.onClose.callCount, 1)
})
})
})