|
| 1 | +import React from 'react'; |
| 2 | +import ReactTestUtils from 'react/lib/ReactTestUtils'; |
| 3 | +import BreadcrumbItem from '../src/BreadcrumbItem'; |
| 4 | + |
| 5 | +describe('BreadcrumbItem', function () { |
| 6 | + it('Should add active class', function () { |
| 7 | + let instance = ReactTestUtils.renderIntoDocument( |
| 8 | + <BreadcrumbItem active> |
| 9 | + Active Crumb |
| 10 | + </BreadcrumbItem> |
| 11 | + ); |
| 12 | + |
| 13 | + assert.ok(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'active')); |
| 14 | + }); |
| 15 | + |
| 16 | + it('Should not add active class', function () { |
| 17 | + let instance = ReactTestUtils.renderIntoDocument( |
| 18 | + <BreadcrumbItem> |
| 19 | + Crumb |
| 20 | + </BreadcrumbItem> |
| 21 | + ); |
| 22 | + |
| 23 | + let liNode = React.findDOMNode(instance); |
| 24 | + assert.notInclude(liNode.className, 'active'); |
| 25 | + }); |
| 26 | + |
| 27 | + it('Should add custom classes', function () { |
| 28 | + let instance = ReactTestUtils.renderIntoDocument( |
| 29 | + <BreadcrumbItem className="custom-one custom-two" active> |
| 30 | + Active Crumb |
| 31 | + </BreadcrumbItem> |
| 32 | + ); |
| 33 | + |
| 34 | + let liNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithClass(instance, 'active')); |
| 35 | + |
| 36 | + let classes = liNode.className; |
| 37 | + assert.include(classes, 'active'); |
| 38 | + assert.include(classes, 'custom-one'); |
| 39 | + assert.include(classes, 'custom-two'); |
| 40 | + }); |
| 41 | + |
| 42 | + it('Should spread props onto an active item', function() { |
| 43 | + let instance = ReactTestUtils.renderIntoDocument( |
| 44 | + <BreadcrumbItem herpa='derpa' active> |
| 45 | + Active Crumb |
| 46 | + </BreadcrumbItem> |
| 47 | + ); |
| 48 | + |
| 49 | + let spanNode = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'span'); |
| 50 | + |
| 51 | + spanNode.props.herpa.should.equal('derpa'); |
| 52 | + }); |
| 53 | + |
| 54 | + it('Should spread props onto anchor', function(done) { |
| 55 | + const handleClick = () => { |
| 56 | + done(); |
| 57 | + }; |
| 58 | + |
| 59 | + let instance = ReactTestUtils.renderIntoDocument( |
| 60 | + <BreadcrumbItem href='#' onClick={handleClick} herpa='derpa'> |
| 61 | + Crumb 1 |
| 62 | + </BreadcrumbItem> |
| 63 | + ); |
| 64 | + |
| 65 | + let anchorNode = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a'); |
| 66 | + ReactTestUtils.Simulate.click(anchorNode); |
| 67 | + |
| 68 | + anchorNode.props.herpa.should.equal('derpa'); |
| 69 | + }); |
| 70 | + |
| 71 | + it('Should add id for li element', function() { |
| 72 | + let instance = ReactTestUtils.renderIntoDocument( |
| 73 | + <BreadcrumbItem href='#' id='test-li-id'> |
| 74 | + Crumb 1 |
| 75 | + </BreadcrumbItem> |
| 76 | + ); |
| 77 | + |
| 78 | + let liNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'li')); |
| 79 | + assert.equal(liNode.id, 'test-li-id'); |
| 80 | + }); |
| 81 | + |
| 82 | + it('Should add linkId', function() { |
| 83 | + let instance = ReactTestUtils.renderIntoDocument( |
| 84 | + <BreadcrumbItem href='#' linkId='test-link-id'> |
| 85 | + Crumb 1 |
| 86 | + </BreadcrumbItem> |
| 87 | + ); |
| 88 | + |
| 89 | + let linkNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a')); |
| 90 | + assert.equal(linkNode.id, 'test-link-id'); |
| 91 | + }); |
| 92 | + |
| 93 | + it('Should add href', function() { |
| 94 | + let instance = ReactTestUtils.renderIntoDocument( |
| 95 | + <BreadcrumbItem href='http://getbootstrap.com/components/#breadcrumbs'> |
| 96 | + Crumb 1 |
| 97 | + </BreadcrumbItem> |
| 98 | + ); |
| 99 | + |
| 100 | + let linkNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a')); |
| 101 | + assert.equal(linkNode.href, 'http://getbootstrap.com/components/#breadcrumbs'); |
| 102 | + }); |
| 103 | + |
| 104 | + it('Should have a title', function() { |
| 105 | + let instance = ReactTestUtils.renderIntoDocument( |
| 106 | + <BreadcrumbItem title='test-title' href='http://getbootstrap.com/components/#breadcrumbs'> |
| 107 | + Crumb 1 |
| 108 | + </BreadcrumbItem> |
| 109 | + ); |
| 110 | + |
| 111 | + let linkNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a')); |
| 112 | + assert.equal(linkNode.title, 'test-title'); |
| 113 | + }); |
| 114 | + |
| 115 | + it('Should not add anchor properties to li', function() { |
| 116 | + let instance = ReactTestUtils.renderIntoDocument( |
| 117 | + <BreadcrumbItem title='test-title' href='/hi'> |
| 118 | + Crumb 1 |
| 119 | + </BreadcrumbItem> |
| 120 | + ); |
| 121 | + |
| 122 | + let liNode = React.findDOMNode(instance); |
| 123 | + assert.notOk(liNode.hasAttribute('href')); |
| 124 | + assert.notOk(liNode.hasAttribute('title')); |
| 125 | + }); |
| 126 | + |
| 127 | + it('Should set target attribute on anchor', function () { |
| 128 | + let instance = ReactTestUtils.renderIntoDocument( |
| 129 | + <BreadcrumbItem target='_blank' href='http://getbootstrap.com/components/#breadcrumbs'> |
| 130 | + Crumb 1 |
| 131 | + </BreadcrumbItem> |
| 132 | + ); |
| 133 | + |
| 134 | + let linkNode = React.findDOMNode(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a')); |
| 135 | + assert.equal(linkNode.target, '_blank'); |
| 136 | + }); |
| 137 | +}); |
0 commit comments