-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE: Consumers: Fix lag is displayed as 'N/A' in case of null value (#720
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
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
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 { useConsumerGroups } from 'lib/hooks/api/consumers'; | ||
import List from 'components/ConsumerGroups/List'; | ||
|
||
// 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'); | ||
}); | ||
}); |