aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/posts-list.test.tsx
blob: fabf31fedec039d93f00164722544b86d78c48d7 (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
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '../../../../tests/utils';
import { PostsList } from './posts-list';
import { posts } from './posts-list.fixture';

describe('PostsList', () => {
  it('renders the correct number of posts', () => {
    render(<PostsList posts={posts} total={posts.length} />);
    expect(rtlScreen.getAllByRole('article')).toHaveLength(posts.length);
  });

  it('renders the number of loaded posts', () => {
    render(<PostsList posts={posts} total={posts.length} />);
    const info = `${posts.length} loaded articles out of a total of ${posts.length}`;
    expect(rtlScreen.getByText(info)).toBeInTheDocument();
  });

  it('renders a load more button', () => {
    render(
      <PostsList posts={posts} total={posts.length} showLoadMoreBtn={true} />
    );
    expect(
      rtlScreen.getByRole('button', { name: /Load more/i })
    ).toBeInTheDocument();
  });

  it('renders a search form if no results', () => {
    render(<PostsList posts={[]} total={0} showLoadMoreBtn={true} />);
    expect(rtlScreen.getByRole('searchbox')).toBeInTheDocument();
  });
});