aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/copyright.test.tsx
blob: 3aa04d0d41844718179278dd080db4b841c1aad2 (plain)
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
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '../../../../tests/utils';
import { Icon } from '../images';
import { Copyright } from './copyright';

const dates = {
  start: '2012',
  end: '2022',
};
const iconHeading = 'CC BY SA';
const icon = <Icon heading={iconHeading} shape="cc-by-sa" />;
const owner = 'Your name';

describe('Copyright', () => {
  it('renders the copyright owner', () => {
    render(<Copyright dates={dates} icon={icon} owner={owner} />);
    expect(rtlScreen.getByText(owner)).toBeInTheDocument();
  });

  it('renders the copyright start date', () => {
    render(<Copyright dates={dates} icon={icon} owner={owner} />);
    expect(rtlScreen.getByText(dates.start)).toBeInTheDocument();
  });

  it('renders the copyright end date', () => {
    render(<Copyright dates={dates} icon={icon} owner={owner} />);
    expect(rtlScreen.getByText(dates.end)).toBeInTheDocument();
  });

  it('renders the copyright icon', () => {
    render(<Copyright dates={dates} icon={icon} owner={owner} />);
    expect(rtlScreen.getByTitle(iconHeading)).toBeInTheDocument();
  });
});