-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE: Added test code for changing default value notation of ConsumerGr…
…oups component.
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
frontend/src/components/ConsumerGroups/__test__/List.spec.tsx
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,55 @@ | ||
import React from 'react'; | ||
import { screen } from '@testing-library/react'; | ||
import { render } from 'lib/testHelpers'; | ||
import List from '../List'; | ||
import { useConsumerGroups } from 'lib/hooks/api/consumers'; | ||
|
||
// Mock hooks | ||
jest.mock('lib/hooks/api/consumers', () => ({ | ||
useConsumerGroups: jest.fn() | ||
})); | ||
|
||
jest.mock('react-router-dom', () => ({ | ||
...jest.requireActual('react-router-dom'), | ||
useSearchParams: () => [new URLSearchParams(), jest.fn()], | ||
useNavigate: () => jest.fn(), | ||
})); | ||
|
||
const mockUseConsumerGroups = useConsumerGroups as jest.Mock; | ||
|
||
describe('ConsumerGroups List', () => { | ||
beforeEach(() => { | ||
mockUseConsumerGroups.mockImplementation(() => ({ | ||
data: { | ||
consumerGroups: [ | ||
{ | ||
groupId: 'group1', | ||
consumerLag: 0, | ||
members: 1, | ||
topics: 1, | ||
coordinator: { id: 1 }, | ||
state: 'STABLE' | ||
}, | ||
{ | ||
groupId: 'group2', | ||
consumerLag: null, | ||
members: 1, | ||
topics: 1, | ||
coordinator: { id: 2 }, | ||
state: 'STABLE' | ||
} | ||
], | ||
pageCount: 1 | ||
}, | ||
isSuccess: true, | ||
isFetching: false | ||
})); | ||
}); | ||
|
||
it('renders consumer lag values correctly', () => { | ||
render(<List />); | ||
const tableRows = screen.getAllByRole('row'); | ||
expect(tableRows[1]).toHaveTextContent('0'); | ||
expect(tableRows[2]).toHaveTextContent('N/A'); | ||
}); | ||
}); |