1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/pages/send/send-header/send-header.component.test.js

76 lines
2.2 KiB
JavaScript
Raw Normal View History

import assert from 'assert';
import React from 'react';
import { shallow } from 'enzyme';
import sinon from 'sinon';
import PageContainerHeader from '../../../components/ui/page-container/page-container-header';
import SendHeader from './send-header.component';
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 () {
2020-11-03 00:41:28 +01:00
wrapper = shallow(
<SendHeader
clearSend={propsMethodSpies.clearSend}
history={historySpies}
mostRecentOverviewPage="mostRecentOverviewPage"
titleKey="mockTitleKey"
2020-11-03 00:41:28 +01:00
/>,
{ 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.strictEqual(propsMethodSpies.clearSend.callCount, 0);
wrapper.instance().onClose();
assert.strictEqual(propsMethodSpies.clearSend.callCount, 1);
});
it('should call history.push', function () {
assert.strictEqual(historySpies.push.callCount, 0);
wrapper.instance().onClose();
assert.strictEqual(historySpies.push.callCount, 1);
assert.strictEqual(
2020-11-03 00:41:28 +01:00
historySpies.push.getCall(0).args[0],
'mostRecentOverviewPage',
);
});
});
describe('render', function () {
2020-07-20 19:02:49 +02:00
it('should render a PageContainerHeader component', function () {
assert.strictEqual(wrapper.find(PageContainerHeader).length, 1);
});
it('should pass the correct props to PageContainerHeader', function () {
const { onClose, title } = wrapper.find(PageContainerHeader).props();
assert.strictEqual(title, 'mockTitleKey');
assert.strictEqual(SendHeader.prototype.onClose.callCount, 0);
onClose();
assert.strictEqual(SendHeader.prototype.onClose.callCount, 1);
});
});
});