File size: 2,275 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
 * @jest-environment jsdom
 */
import { render, screen } from '@testing-library/react';
import React from 'react';
import ReaderAuthorLink, { ReaderLinkAuthor } from '../index';

jest.mock( 'calypso/reader/stats', () => ( {
	recordAction: () => {},
	recordGaEvent: () => {},
	recordTrackForPost: () => {},
} ) );

describe( 'ReaderAuthorLink', () => {
	let author: ReaderLinkAuthor;

	beforeEach( () => {
		author = { URL: 'http://wpcalypso.wordpress.com', name: 'Barnaby Blogwit' };
	} );

	test( 'should render children', () => {
		const { container } = render(
			<ReaderAuthorLink author={ author }>Barnaby Blogwit</ReaderAuthorLink>
		);
		expect( container ).toHaveTextContent( 'Barnaby Blogwit' );
	} );

	test( 'should accept a custom class of `test__ace`', () => {
		const { container } = render(
			<ReaderAuthorLink author={ author } className="test__ace">
				xyz
			</ReaderAuthorLink>
		);
		expect( container.firstChild ).toHaveClass( 'test__ace' );
	} );

	test( 'should return null with a undefined author name', () => {
		author.name = undefined;
		const { container } = render( <ReaderAuthorLink author={ author }>xyz</ReaderAuthorLink> );
		expect( container ).toBeEmptyDOMElement();
	} );

	test( 'should return null with a blocked author name', () => {
		author.name = 'admin';
		const { container } = render( <ReaderAuthorLink author={ author }>xyz</ReaderAuthorLink> );
		expect( container ).toBeEmptyDOMElement();
	} );

	test( 'should use siteUrl if provided', () => {
		const siteUrl = 'http://discover.wordpress.com';
		render(
			<ReaderAuthorLink author={ author } siteUrl={ siteUrl }>
				xyz
			</ReaderAuthorLink>
		);
		expect( screen.getByRole( 'link' ) ).toHaveAttribute( 'href', siteUrl );
	} );

	test( 'should use author.URL if site URL is not provided', () => {
		render( <ReaderAuthorLink author={ author }>xyz</ReaderAuthorLink> );
		expect( screen.getByRole( 'link' ) ).toHaveAttribute( 'href', author.URL );
	} );

	test( 'should not return a link if siteUrl and author.URL are both missing', () => {
		author.URL = undefined;
		const { container } = render( <ReaderAuthorLink author={ author }>xyz</ReaderAuthorLink> );
		// Should just return children
		expect( container.firstChild?.nodeName ).toEqual( 'SPAN' );
	} );
} );