SearchV2: Add unit test to SearchResultsGrid (#51296)

* SearchResultsGrid add unit test

* Fix linting issues
This commit is contained in:
Maria Alexandra 2022-06-23 12:14:30 +02:00 committed by GitHub
parent b9bb0513e3
commit 81dc9ef725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 67 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export function SearchCard({ editable, item, onTagSelected, onToggleChecked }: P
<div className={styles.imageContainer}>
<SearchCheckbox
className={styles.checkbox}
aria-label="Select dashboard"
aria-label={`Select dashboard ${item.title}`}
editable={editable}
checked={item.checked}
onClick={onCheckboxClick}

View File

@ -0,0 +1,66 @@
import { fireEvent, render, screen, waitFor } from '@testing-library/react';
import React from 'react';
import { Observable } from 'rxjs';
import { ArrayVector, DataFrame, DataFrameView, FieldType } from '@grafana/data';
import { selectors } from '@grafana/e2e-selectors';
import { DashboardQueryResult, QueryResponse } from '../../service';
import { DashboardSearchItemType } from '../../types';
import { SearchResultsGrid } from './SearchResultsGrid';
describe('SearchResultsGrid', () => {
const dashboardsData: DataFrame = {
fields: [
{
name: 'kind',
type: FieldType.string,
config: {},
values: new ArrayVector([DashboardSearchItemType.DashDB]),
},
{ name: 'name', type: FieldType.string, config: {}, values: new ArrayVector(['My dashboard 1', 'dash2']) },
{ name: 'uid', type: FieldType.string, config: {}, values: new ArrayVector(['my-dashboard-1', 'dash-2']) },
{ name: 'url', type: FieldType.string, config: {}, values: new ArrayVector(['/my-dashbaord-1', '/dash-2']) },
],
length: 2,
};
const mockSearchResult: QueryResponse = {
isItemLoaded: jest.fn(),
loadMoreItems: jest.fn(),
totalRows: dashboardsData.length,
view: new DataFrameView<DashboardQueryResult>(dashboardsData),
};
const baseProps = {
response: mockSearchResult,
width: 800,
height: 600,
clearSelection: jest.fn(),
onTagSelected: jest.fn(),
keyboardEvents: new Observable<any>(),
};
it('should render grid of dashboards', () => {
render(<SearchResultsGrid {...baseProps} />);
expect(screen.getByTestId(selectors.components.Search.dashboardCard('My dashboard 1'))).toBeInTheDocument();
expect(screen.getByTestId(selectors.components.Search.dashboardCard('dash2'))).toBeInTheDocument();
});
it('should not render checkboxes for non-editable results', async () => {
render(<SearchResultsGrid {...baseProps} />);
expect(screen.queryByRole('checkbox')).toBeNull();
await waitFor(() => expect(screen.queryAllByRole('checkbox')).toHaveLength(0));
});
it('should render checkboxes for editable results ', async () => {
const mockSelectionToggle = jest.fn();
const mockSelection = jest.fn();
render(<SearchResultsGrid {...baseProps} selection={mockSelection} selectionToggle={mockSelectionToggle} />);
await waitFor(() => expect(screen.queryAllByRole('checkbox')).toHaveLength(2));
fireEvent.click(await screen.findByRole('checkbox', { name: /Select dashboard dash2/i }));
expect(mockSelectionToggle).toHaveBeenCalledWith('dashboard', 'dash-2');
expect(mockSelectionToggle).toHaveBeenCalledTimes(1);
});
});