@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
182 lines (178 loc) • 6.29 kB
JavaScript
/* eslint-env mocha */
/* global sinon */
/* eslint-disable prefer-arrow-callback */
/* eslint-disable no-unused-expressions */
import React from 'react';
import createReactClass from 'create-react-class';
import PropTypes from 'prop-types';
import chai, { expect } from 'chai';
import chaiEnzyme from 'chai-enzyme'; // `this.wrapper` and `this.dom` is set in the helpers file
import { mountComponent, unmountComponent } from '../../../tests/enzyme-helpers';
chai.use(chaiEnzyme());
import Icon from '../../icon';
import IconSettings from '../../icon-settings';
var DemoIcon = createReactClass({
displayName: 'DemoIcon',
render: function render() {
return React.createElement(Icon, this.props);
}
});
describe('SLDSIcon: ', function () {
describe('Standard Icon Props Render', function () {
var component;
var svg;
var iconContainer;
var asstText;
beforeEach(mountComponent(React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(DemoIcon, {
assistiveText: {
label: 'Log a Call'
},
category: "standard",
name: "log_a_call",
style: {
backgroundColor: 'rgb(218, 165, 32)'
},
size: "large"
}))));
afterEach(unmountComponent);
it('renders container class', function () {
expect(this.wrapper).to.have.className('slds-icon_container');
});
it('renders assistive text', function () {
expect(this.wrapper.find('.slds-assistive-text')).to.have.text('Log a Call');
});
it('renders icon name class on svg', function () {
// also tests that all '_' are replaced with '-'
expect(this.wrapper).to.have.className('slds-icon-standard-log-a-call');
});
it('renders custom background color', function () {
svg = this.wrapper.find('svg');
expect(svg).to.have.style('backgroundColor', 'rgb(218, 165, 32)');
});
it('renders icon size class', function () {
svg = this.wrapper.find('svg');
expect(svg.hasClass('slds-icon--large')).to.be.true;
});
});
describe('Custom Icon Props Render', function () {
var component;
var svg;
var iconContainer;
var asstText;
beforeEach(mountComponent(React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(DemoIcon, {
assistiveText: {
label: 'Heart'
},
category: "custom",
name: "custom1",
size: "small"
}))));
afterEach(unmountComponent);
it('renders container class', function () {
expect(this.wrapper).to.have.className('slds-icon_container');
});
it('renders assistive text', function () {
expect(this.wrapper.find('.slds-assistive-text')).to.have.text('Heart');
});
it('renders icon name class on svg', function () {
// also tests that all '_' are replaced with '-'
expect(this.wrapper).to.have.className('slds-icon-custom-custom1');
});
it('renders icon size class', function () {
svg = this.wrapper.find('svg');
expect(svg.hasClass('slds-icon--small')).to.be.true;
});
});
describe('Action Icon Props Render', function () {
var component;
var svg;
var iconContainer;
var asstText;
beforeEach(mountComponent(React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(DemoIcon, {
assistiveText: {
label: 'Announcements'
},
category: "action",
name: "announcement",
size: "large",
title: "custom title",
className: "slds-m-around--x-small"
}))));
afterEach(unmountComponent);
it('renders container class', function () {
expect(this.wrapper).to.have.className('slds-icon_container');
});
it('renders assistive text', function () {
expect(this.wrapper.find('.slds-assistive-text')).to.have.text('Announcements');
});
it('renders round container', function () {
expect(this.wrapper).to.have.className('slds-icon_container--circle');
});
it('renders icon name class on svg', function () {
// also tests that all '_' are replaced with '-'
expect(this.wrapper).to.have.className('slds-icon-action-announcement');
});
it('renders icon size class', function () {
svg = this.wrapper.find('svg');
expect(svg.hasClass('slds-icon--large')).to.be.true;
});
it('renders title', function () {
expect(this.wrapper.find('[title="custom title"]')).to.exist;
});
});
describe('Utility Icon Props Render', function () {
var component;
var svg;
var iconContainer;
var asstText;
beforeEach(mountComponent(React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(DemoIcon, {
category: "utility",
name: "open_folder",
size: "medium"
}))));
afterEach(unmountComponent);
it('does NOT render container class', function () {
expect(this.wrapper.hasClass('slds-icon_container')).to.be.false;
});
it('medium size does not render size class', function () {
// also tests that all '_' are replaced with '-'
expect(this.wrapper.hasClass('slds-icon--medium')).to.be.false;
});
it('utility icons do not render name class on svg', function () {
// also tests that all '_' are replaced with '-'
expect(this.wrapper.hasClass('slds-icon-text-default')).to.be.false;
});
});
describe('Icon with external path renders', function () {
var asstText;
var component;
var iconContainer;
var use;
beforeEach(mountComponent(React.createElement(IconSettings, {
iconPath: "/assets/icons"
}, React.createElement(DemoIcon, {
assistiveText: {
label: 'New stuff!'
},
inverse: true,
path: "/assets/icons/utility-sprite/svg/symbols.svg#announcement",
size: "medium"
}))));
afterEach(unmountComponent);
it('does NOT render slds-icon-standard class', function () {
expect(this.wrapper.hasClass('slds-icon-standard-')).to.be.false;
});
it('path prop is passed to svg', function () {
expect(this.wrapper.find('use')).to.have.attr('xlink:href', '/assets/icons/utility-sprite/svg/symbols.svg#announcement');
});
});
});
//# sourceMappingURL=icon.browser-test.js.map