import React from 'react';
import { shallow } from 'enzyme';
import { bdlBoxBlue, white } from '../../../styles/variables';
import IconBoxSquare from '../IconBoxSquare';
describe('icons/general/IconBoxSquare', () => {
test('should correctly render default icon', () => {
const wrapper = shallow();
expect(wrapper.is('AccessibleSVG')).toBe(true);
expect(wrapper.prop('height')).toEqual(72);
expect(wrapper.prop('height')).toEqual(72);
expect(wrapper.hasClass('box-square-icon')).toEqual(true);
});
test('should correctly render default icon with default color', () => {
const wrapper = shallow();
expect(wrapper.find('rect').prop('fill')).toEqual(bdlBoxBlue);
expect(
wrapper
.find('path')
.at(0)
.prop('fill'),
).toEqual(white);
expect(
wrapper
.find('path')
.at(1)
.prop('fill'),
).toEqual(white);
});
test('should correctly render icon with specified width and height', () => {
const width = 50;
const height = 50;
const wrapper = shallow();
expect(wrapper.find('AccessibleSVG').prop('width')).toEqual(width);
expect(wrapper.find('AccessibleSVG').prop('height')).toEqual(height);
});
test('should correctly render icon with title', () => {
const title = 'hellojello';
const wrapper = shallow();
expect(wrapper.find('AccessibleSVG').prop('title')).toEqual(title);
});
});