-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
571 additions
and
218 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,102 @@ | ||
import React from 'react'; | ||
import { render, screen, fireEvent, waitFor } from '@testing-library/react'; | ||
import { Provider } from 'react-redux'; | ||
import { configureStore } from '@reduxjs/toolkit'; | ||
import { MemoryRouter } from 'react-router-dom'; | ||
import axios from 'axios'; | ||
import MockAdapter from 'axios-mock-adapter'; | ||
import Category from '@/components/dashBoard/Category'; | ||
import categoriesReducer from '@/features/Products/categorySlice'; | ||
|
||
const renderWithProviders = (ui: React.ReactElement) => { | ||
const store = configureStore({ reducer: { categories: categoriesReducer } }); | ||
return render( | ||
<Provider store={store}> | ||
<MemoryRouter>{ui}</MemoryRouter> | ||
</Provider> | ||
); | ||
}; | ||
|
||
describe('Category Component', () => { | ||
let mock: MockAdapter; | ||
|
||
beforeEach(() => { | ||
mock = new MockAdapter(axios); | ||
}); | ||
|
||
afterEach(() => { | ||
mock.restore(); | ||
}); | ||
|
||
it('should render the component with initial state', () => { | ||
renderWithProviders(<Category />); | ||
expect(screen.getByText(/Categories/i)).toBeInTheDocument(); | ||
}); | ||
|
||
it('renders Categories component with category icons', async () => { | ||
mock.onGet('/api/categories').reply(200, [ | ||
{ | ||
id: 1, | ||
name: 'Category 1', | ||
description: 'Description 1', | ||
icon: 'https://example.com/icon1.png', | ||
}, | ||
{ | ||
id: 2, | ||
name: 'Category 2', | ||
description: 'Description 2', | ||
icon: 'https://example.com/icon2.png', | ||
}, | ||
]); | ||
|
||
renderWithProviders(<Category />); | ||
|
||
const icons = await screen.findAllByRole('img'); | ||
icons.forEach((icon) => { | ||
expect(icon).toHaveAttribute('alt'); | ||
}); | ||
}); | ||
|
||
it('paginates categories', async () => { | ||
mock.onGet('/api/categories').reply( | ||
200, | ||
Array.from({ length: 20 }, (_, i) => ({ | ||
id: i + 1, | ||
name: `Category ${i + 1}`, | ||
description: `Description ${i + 1}`, | ||
icon: `https://example.com/icon${i + 1}.png`, | ||
})) | ||
); | ||
|
||
renderWithProviders(<Category />); | ||
|
||
const nextPageButton = await screen.findByRole('button', { name: /next/i }); | ||
fireEvent.click(nextPageButton); | ||
expect(nextPageButton).toBeInTheDocument(); | ||
}); | ||
|
||
it('should render the component with initial state', async () => { | ||
renderWithProviders(<Category />); | ||
await waitFor(() => | ||
expect(screen.getByText(/Categories/i)).toBeInTheDocument() | ||
); | ||
}); | ||
|
||
it('paginates categories', async () => { | ||
mock.onGet('/api/categories').reply( | ||
200, | ||
Array.from({ length: 20 }, (_, i) => ({ | ||
id: i + 1, | ||
name: `Category ${i + 1}`, | ||
description: `Description ${i + 1}`, | ||
icon: `https://example.com/icon${i + 1}.png`, | ||
})) | ||
); | ||
|
||
renderWithProviders(<Category />); | ||
|
||
const nextPageButton = await screen.findByRole('button', { name: /next/i }); | ||
fireEvent.click(nextPageButton); | ||
expect(nextPageButton).toBeInTheDocument(); | ||
}); | ||
}); |
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
Oops, something went wrong.