-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new software overview layout including highlights and reactive …
…filters in the filter panel. BREAKING CHANGE: bump version to v2.
- Loading branch information
1 parent
77e2ab7
commit 8bfa359
Showing
43 changed files
with
1,316 additions
and
1,550 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
// SPDX-FileCopyrightText: 2022 - 2023 Dusan Mijatovic (dv4all) | ||
// SPDX-FileCopyrightText: 2022 - 2023 dv4all | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import {render, screen, within} from '@testing-library/react' | ||
import {WithAppContext} from '~/utils/jest/WithAppContext' | ||
|
||
import SoftwareOverviewPage from '../pages/software/index' | ||
import {LayoutType} from '~/components/software/overview/SearchSection' | ||
|
||
// mocked data & props | ||
import mockData from './__mocks__/softwareOverviewData.json' | ||
const mockProps = { | ||
search:null, | ||
keywords:null, | ||
prog_lang: null, | ||
licenses:null, | ||
order:null, | ||
page: 1, | ||
rows: 12, | ||
count: 408, | ||
layout: 'masonry' as LayoutType, | ||
keywordsList: mockData.keywordsList, | ||
languagesList: mockData.languagesList, | ||
licensesList: mockData.licensesList, | ||
software: mockData.software as any, | ||
highlights: mockData.highlights as any | ||
} | ||
|
||
describe('pages/software/index.tsx', () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks() | ||
}) | ||
|
||
it('renders title All software', () => { | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const heading = screen.getByRole('heading',{ | ||
name: 'All software' | ||
}) | ||
expect(heading).toBeInTheDocument() | ||
}) | ||
it('renders highlights section with all (5) items', () => { | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const carousel = screen.getByTestId('highlights-carousel') | ||
const cards = screen.getAllByTestId('highlights-card') | ||
expect(cards.length).toEqual(mockData.highlights.length) | ||
}) | ||
|
||
it('renders software filter panel with orderBy and 3 filters (combobox)', () => { | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
// get reference to filter panel | ||
const panel = screen.getByTestId('software-filters-panel') | ||
// find order by testid | ||
const order = within(panel).getByTestId('filters-order-by') | ||
// should have 3 filters | ||
const filters = within(panel).getAllByRole('combobox') | ||
expect(filters.length).toEqual(3) | ||
// screen.debug(filters) | ||
}) | ||
|
||
it('renders searchbox with placeholder Find software', async () => { | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
screen.getByPlaceholderText('Find software') | ||
}) | ||
|
||
it('renders layout options (toggle button group)', async () => { | ||
mockProps.layout='masonry' | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const buttonGroup = screen.getByTestId('card-layout-options') | ||
}) | ||
|
||
it('renders (12) masonry cards', async () => { | ||
mockProps.layout='masonry' | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const cards = screen.getAllByTestId('software-masonry-card') | ||
expect(cards.length).toEqual(mockProps.software.length) | ||
}) | ||
|
||
it('renders (12) grid cards', async () => { | ||
mockProps.layout='grid' | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const cards = screen.getAllByTestId('software-grid-card') | ||
expect(cards.length).toEqual(mockProps.software.length) | ||
}) | ||
|
||
it('renders (12) list items', async () => { | ||
mockProps.layout='list' | ||
render( | ||
<WithAppContext> | ||
<SoftwareOverviewPage {...mockProps} /> | ||
</WithAppContext> | ||
) | ||
const cards = screen.getAllByTestId('software-list-item') | ||
expect(cards.length).toEqual(mockProps.software.length) | ||
}) | ||
|
||
}) |
Oops, something went wrong.