UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

205 lines (200 loc) 7.87 kB
import React from 'react'; import { mount } from 'enzyme'; import chai from 'chai'; import assign from 'lodash.assign'; import IconSettings from '../../icon-settings'; import AppLauncherTile from '../../app-launcher/tile'; import Icon from '../../icon'; var expect = chai.expect; var should = chai.should(); describe('SLDS APP LAUNCHER TILE *******************************************', function () { var div; var handles = { body: null, description: null, icon: null, more: null, tile: null, title: null }; var defaultTileProps = { title: 'Marketing Cloud' }; var createTile = function createTile(props) { return /*#__PURE__*/React.createElement(AppLauncherTile, assign({}, defaultTileProps, props)); }; function mountTile(props) { // This div is needed for Truncate to properly determine the description width div = document.createElement('div'); div.style.cssText = 'width: 300px'; document.body.appendChild(div); handles.tile = mount( /*#__PURE__*/React.createElement(IconSettings, { iconPath: "/assets/icons" }, createTile(props)), { attachTo: div }); handles.body = handles.tile.find('.slds-app-launcher__tile-body'); handles.description = handles.body.find('div').at(1); handles.icon = handles.tile.find('.slds-app-launcher__tile-figure'); handles.more = handles.tile.find('.slds-app-launcher__tile-body button.slds-button_reset'); handles.title = handles.tile.find('.slds-app-launcher__tile-body').childAt(0); } function cleanDom() { document.body.removeChild(div); } describe('Default App Launcher Tile', function () { var onClick; beforeEach(function () { onClick = sinon.spy(); mountTile({ className: 'this-is-a-custom-class', description: 'Fluffy support', href: 'https://www.salesforce.com/', onClick: onClick, search: 'upport', title: 'Support Cloud' }); }); afterEach(function () { cleanDom(); }); it('renders tile', function () { should.exist(handles.tile); }); it('renders tile with proper classes', function () { should.exist(handles.tile.find('.slds-app-launcher__tile.slds-text-link_reset')); }); it('renders tile body', function () { should.exist(handles.body); }); it('renders tile title', function () { should.exist(handles.title); }); it('renders custom title', function () { expect(handles.title.text()).to.equal('Support Cloud'); }); it('renders custom app description', function () { // the .at(1) would only apply when descriptionHeading is set expect(handles.description.find('span').at(1).text()).to.equal('Fluffy support'); }); it('has an href attribute', function () { expect(handles.tile.find('a')).to.have.attr('href', 'https://www.salesforce.com/'); }); it('clicking tile fires callback', function () { handles.tile.simulate('click'); expect(onClick.calledOnce).to.be.true; // eslint-disable-line no-unused-expressions }); it('clicking tile title link fires callback and ignores href', function () { handles.body.find('a').at(0).simulate('click'); expect(onClick.calledOnce).to.be.true; // eslint-disable-line no-unused-expressions }); it('tile can be passed custom className', function () { should.exist(handles.tile.find('.this-is-a-custom-class')); }); it('tile can be passed a search string', function () { var searchStr = handles.tile; var childrenProps = searchStr.props().children.props; expect(childrenProps.search).to.equal('upport'); }); it('search string highlights title', function () { expect(handles.title.containsAllMatchingElements( // eslint-disable-line no-unused-expressions [/*#__PURE__*/React.createElement("span", null, "S"), /*#__PURE__*/React.createElement("mark", null, "upport"), /*#__PURE__*/React.createElement("span", null, " Cloud")])).to.be.true; }); it('search string highlights description', function () { expect(handles.description.containsAllMatchingElements( // eslint-disable-line no-unused-expressions [/*#__PURE__*/React.createElement("span", null, "Fluffy s"), /*#__PURE__*/React.createElement("mark", null, "upport")])).to.be.true; }); }); describe('App Launcher Tile (truncated)', function () { var description = 'The key to call center and contact center management is more simple than you think with this amazing application!'; var moreLabel = 'MORE!'; beforeEach(function () { mountTile({ title: 'Call Center', description: description, isOpenTooltip: true, moreLabel: moreLabel, search: 'enter' }); }); afterEach(function (done) { setTimeout(function timeoutFunction() { cleanDom(); done(); }, 100); }); it('renders more link', function () { should.exist(handles.more); }); it('renders custom more link', function () { // Enzyme is unable to find React inserted `<span>` tags due to text wrapping. Therefore the DOM transversal. // const clonedNode = handles.more.node.cloneNode(); // const clonedNodeWithoutSpan = clonedNode.firstChild.remove(); // console.log(clonedNode); expect(handles.more.text()).to.equal("".concat(moreLabel)); }); it('long descriptions use Tooltip activated by hover', function () { // this test causes the tooltip to 'flash' on the testing page http://localhost:8001/ handles.more.simulate('mouseenter'); // uses portal mount should.exist(document.querySelector('.slds-popover_tooltip')); handles.more.simulate('mouseleave'); }); it('search string highlights tooltip content', function () { // this is a hack that waits for the tooltip to render through PopperJS setTimeout(function timeoutFunction() { expect(handles.tile.find('.slds-popover__body mark').at(0).text()).to.equal('enter'); }, 100); }); }); describe('App Launcher Tile (text icon)', function () { beforeEach(function () { mountTile({ description: 'Call center and contact center.', iconBackgroundColor: 'rgb(115, 192, 123)', iconText: 'CC', title: 'Call Center' }); }); afterEach(function () { cleanDom(); }); it('renders text icon with proper classes', function () { var icon = handles.icon.find('span').at(0); var iconAbbr = icon.find('abbr'); expect(icon).to.have.className('slds-avatar'); expect(icon).to.have.className('slds-avatar_large'); expect(iconAbbr).to.have.className('slds-avatar__initials'); expect(iconAbbr).to.have.className('slds-icon-custom-27'); }); it('tile can be passed a custom text icon', function () { expect(handles.icon.find('abbr').text()).to.equal('CC'); }); it('tile can be passed a custom text icon background color', function () { expect(handles.icon.find('abbr')).to.have.attr('style', 'background-color: rgb(115, 192, 123);'); }); }); describe('App Launcher Tile (icon node)', function () { var iconNode = /*#__PURE__*/React.createElement(Icon, { name: "campaign", category: "standard", size: "large" }); beforeEach(function () { mountTile({ description: 'Call center and contact center.', iconNode: iconNode, title: 'Call Center' }); }); afterEach(function () { cleanDom(); }); it('renders <Icon>', function () { expect(handles.icon.find('span').at(0)).to.have.className('slds-icon_container'); }); it('renders <svg>', function () { should.exist(handles.icon.find('svg')); }); }); }); //# sourceMappingURL=tile.browser-test.js.map