|
| 1 | +import React from 'react'; |
| 2 | +import ReactTestUtils from 'react/lib/ReactTestUtils'; |
| 3 | +import SafeAnchor from '../src/SafeAnchor'; |
| 4 | + |
| 5 | +describe('SafeAnchor', function() { |
| 6 | + it('renders an anchor tag', function() { |
| 7 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor />); |
| 8 | + const node = React.findDOMNode(instance); |
| 9 | + |
| 10 | + node.tagName.should.equal('A'); |
| 11 | + }); |
| 12 | + |
| 13 | + it('forwards arbitrary props to the anchor', function() { |
| 14 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor herpa='derpa' />); |
| 15 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 16 | + |
| 17 | + anchor.props.herpa.should.equal('derpa'); |
| 18 | + }); |
| 19 | + |
| 20 | + it('forwards provided href', function() { |
| 21 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor href='http://google.com' />); |
| 22 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 23 | + |
| 24 | + anchor.props.href.should.equal('http://google.com'); |
| 25 | + }); |
| 26 | + |
| 27 | + it('ensures that an href is provided', function() { |
| 28 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor />); |
| 29 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 30 | + |
| 31 | + anchor.props.href.should.equal(''); |
| 32 | + }); |
| 33 | + |
| 34 | + it('forwards onClick handler', function(done) { |
| 35 | + const handleClick = (event) => { |
| 36 | + done(); |
| 37 | + }; |
| 38 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor onClick={handleClick} />); |
| 39 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 40 | + |
| 41 | + ReactTestUtils.Simulate.click(anchor); |
| 42 | + }); |
| 43 | + |
| 44 | + it('prevents default when no href is provided', function(done) { |
| 45 | + const handleClick = (event) => { |
| 46 | + event.defaultPrevented.should.be.true; |
| 47 | + done(); |
| 48 | + }; |
| 49 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor onClick={handleClick} />); |
| 50 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 51 | + |
| 52 | + ReactTestUtils.Simulate.click(anchor); |
| 53 | + }); |
| 54 | + |
| 55 | + it('does not prevent default when href is provided', function(done) { |
| 56 | + const handleClick = (event) => { |
| 57 | + expect(event.defaultPrevented).to.not.be.ok; |
| 58 | + done(); |
| 59 | + }; |
| 60 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor href='#' onClick={handleClick} />); |
| 61 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 62 | + |
| 63 | + ReactTestUtils.Simulate.click(anchor); |
| 64 | + }); |
| 65 | + |
| 66 | + it('forwards provided role', function () { |
| 67 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor role='test' />); |
| 68 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 69 | + |
| 70 | + anchor.props.role.should.equal('test'); |
| 71 | + }); |
| 72 | + |
| 73 | + it('forwards provided role with href', function () { |
| 74 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor role='test' href='http://google.com' />); |
| 75 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 76 | + |
| 77 | + anchor.props.role.should.equal('test'); |
| 78 | + }); |
| 79 | + |
| 80 | + it('set role=button with no provided href', function () { |
| 81 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor />); |
| 82 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 83 | + |
| 84 | + anchor.props.role.should.equal('button'); |
| 85 | + }); |
| 86 | + |
| 87 | + it('sets no role with provided href', function () { |
| 88 | + const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor href='http://google.com' />); |
| 89 | + const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A'); |
| 90 | + |
| 91 | + expect(anchor.props.role).to.be.undefined; |
| 92 | + }); |
| 93 | +}); |
0 commit comments