import React from 'react';
import { shallow } from 'enzyme';
import { ModalHeader } from '../';
describe('ModalHeader', () => {
it('should render with "modal-header" class', () => {
const wrapper = shallow(Yo!);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.hasClass('modal-header')).toBe(true);
});
it('should render additional classes', () => {
const wrapper = shallow(Yo!);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('modal-header')).toBe(true);
});
it('should render close button', () => {
const wrapper = shallow( {}} className="other">Yo!);
expect(wrapper.hasClass('other')).toBe(true);
expect(wrapper.hasClass('modal-header')).toBe(true);
expect(wrapper.find('button.close').length).toBe(1);
});
it('should render custom tag', () => {
const wrapper = shallow(Yo!).childAt(0);
expect(wrapper.text()).toBe('Yo!');
expect(wrapper.type()).toBe('p');
});
it('should render custom wrapping tag', () => {
const wrapper = shallow(Yo!);
expect(wrapper.type()).toBe('main');
});
it('should render close button with custom aria-label', () => {
const wrapper = shallow( {}} className="other" closeAriaLabel="oseclay">Yo!);
const closeButton = wrapper.find('button.close').first();
expect(closeButton.prop('aria-label')).toBe('oseclay');
});
it('should render close button with default icon', () => {
const wrapper = shallow( {}}>Yo!);
const closeButtonIcon = wrapper.find('button.close span');
const defaultIcon = String.fromCharCode(215);
expect(closeButtonIcon.text()).toEqual(defaultIcon);
});
it('should render close button with custom icon', () => {
const wrapper = shallow( {}} charCode={'X'}>Yo!);
const closeButtonIcon = wrapper.find('button.close span');
expect(closeButtonIcon.text()).toEqual('X');
});
});