mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 05:23:15 +08:00

* update FolderDTO to match backend struct * hacky way to get folder page breadcrumbs working * hacky way to get dashboard nested breadcrumbs working * undo route changes, get url from folder * fix breadcrumbs in dashboard settings * add parent pages to navIndex * adjust getRootSectionForNode to just return the parent of a leaf node * undo changes to generated files * undo changes to toggles_gen.go * feature toggle dashboardInit code * remove unnecessary code in home dashboard * build navModel directly, don't use getNavModel * don't need fallback here * remove getLoadingNav since it's not used anymore * don't need to hide tabs from breadcrumbs anymore * use id to find dashboards tab
171 lines
5.6 KiB
TypeScript
171 lines
5.6 KiB
TypeScript
import { render, screen, waitFor } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { DataFrame, DataFrameView, FieldType } from '@grafana/data';
|
|
import { config } from '@grafana/runtime';
|
|
|
|
import { DashboardQueryResult, getGrafanaSearcher, QueryResponse } from '../../service';
|
|
import { getSearchStateManager, initialState } from '../../state/SearchStateManager';
|
|
import { DashboardSearchItemType, SearchLayout, SearchState } from '../../types';
|
|
|
|
import { SearchView, SearchViewProps } from './SearchView';
|
|
|
|
jest.mock('@grafana/runtime', () => {
|
|
const originalModule = jest.requireActual('@grafana/runtime');
|
|
return {
|
|
...originalModule,
|
|
reportInteraction: jest.fn(),
|
|
};
|
|
});
|
|
|
|
const stateManager = getSearchStateManager();
|
|
|
|
const setup = (propOverrides?: Partial<SearchViewProps>, stateOverrides?: Partial<SearchState>) => {
|
|
const props: SearchViewProps = {
|
|
showManage: false,
|
|
keyboardEvents: {} as Observable<React.KeyboardEvent>,
|
|
...propOverrides,
|
|
};
|
|
|
|
stateManager.setState({ ...initialState, ...stateOverrides });
|
|
|
|
const mockStore = configureMockStore();
|
|
const store = mockStore({ searchQuery: { ...initialState } });
|
|
|
|
render(
|
|
<Provider store={store}>
|
|
<SearchView {...props} />
|
|
</Provider>
|
|
);
|
|
};
|
|
|
|
describe('SearchView', () => {
|
|
const folderData: DataFrame = {
|
|
fields: [
|
|
{
|
|
name: 'kind',
|
|
type: FieldType.string,
|
|
config: {},
|
|
values: [DashboardSearchItemType.DashFolder],
|
|
},
|
|
{ name: 'name', type: FieldType.string, config: {}, values: ['My folder 1'] },
|
|
{ name: 'uid', type: FieldType.string, config: {}, values: ['my-folder-1'] },
|
|
{ name: 'url', type: FieldType.string, config: {}, values: ['/my-folder-1'] },
|
|
],
|
|
length: 1,
|
|
};
|
|
|
|
const mockSearchResult: QueryResponse = {
|
|
isItemLoaded: jest.fn(),
|
|
loadMoreItems: jest.fn(),
|
|
totalRows: folderData.length,
|
|
view: new DataFrameView<DashboardQueryResult>(folderData),
|
|
};
|
|
|
|
beforeAll(() => {
|
|
jest.spyOn(getGrafanaSearcher(), 'search').mockResolvedValue(mockSearchResult);
|
|
});
|
|
|
|
beforeEach(() => {
|
|
config.featureToggles.panelTitleSearch = false;
|
|
});
|
|
|
|
it('does not show checkboxes or manage actions if showManage is false', async () => {
|
|
setup();
|
|
await waitFor(() => expect(screen.queryAllByRole('checkbox')).toHaveLength(0));
|
|
expect(screen.queryByTestId('manage-actions')).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('shows checkboxes if showManage is true', async () => {
|
|
setup({ showManage: true });
|
|
await waitFor(() => expect(screen.queryAllByRole('checkbox')).toHaveLength(2));
|
|
});
|
|
|
|
it('shows the manage actions if show manage is true and the user clicked a checkbox', async () => {
|
|
setup({ showManage: true });
|
|
await waitFor(() => userEvent.click(screen.getAllByRole('checkbox')[0]));
|
|
|
|
expect(screen.queryByTestId('manage-actions')).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows an empty state if no data returned', async () => {
|
|
jest.spyOn(getGrafanaSearcher(), 'search').mockResolvedValue({
|
|
...mockSearchResult,
|
|
totalRows: 0,
|
|
view: new DataFrameView<DashboardQueryResult>({ fields: [], length: 0 }),
|
|
});
|
|
|
|
setup(undefined, { query: 'asdfasdfasdf' });
|
|
|
|
await waitFor(() => expect(screen.queryByText('No results found for your query.')).toBeInTheDocument());
|
|
expect(screen.getByRole('button', { name: 'Clear search and filters' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows an empty state if no starred dashboard returned', async () => {
|
|
jest.spyOn(getGrafanaSearcher(), 'search').mockResolvedValue({
|
|
...mockSearchResult,
|
|
totalRows: 0,
|
|
view: new DataFrameView<DashboardQueryResult>({ fields: [], length: 0 }),
|
|
});
|
|
|
|
setup(undefined, { starred: true });
|
|
|
|
await waitFor(() => expect(screen.queryByText('No results found for your query.')).toBeInTheDocument());
|
|
expect(screen.getByRole('button', { name: 'Clear search and filters' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('shows empty folder cta for empty folder', async () => {
|
|
jest.spyOn(getGrafanaSearcher(), 'search').mockResolvedValue({
|
|
...mockSearchResult,
|
|
totalRows: 0,
|
|
view: new DataFrameView<DashboardQueryResult>({ fields: [], length: 0 }),
|
|
});
|
|
|
|
setup(
|
|
{
|
|
folderDTO: {
|
|
id: 1,
|
|
uid: 'abc',
|
|
title: 'morning coffee',
|
|
url: '/morningcoffee',
|
|
version: 1,
|
|
canSave: true,
|
|
canEdit: true,
|
|
canAdmin: true,
|
|
canDelete: true,
|
|
created: '',
|
|
createdBy: '',
|
|
hasAcl: false,
|
|
updated: '',
|
|
updatedBy: '',
|
|
},
|
|
},
|
|
undefined
|
|
);
|
|
|
|
await waitFor(() => expect(screen.queryByText("This folder doesn't have any dashboards yet")).toBeInTheDocument());
|
|
});
|
|
|
|
describe('include panels', () => {
|
|
it('should be enabled when layout is list', async () => {
|
|
config.featureToggles.panelTitleSearch = true;
|
|
setup({}, { layout: SearchLayout.List });
|
|
|
|
await waitFor(() => expect(screen.getByLabelText(/include panels/i)).toBeInTheDocument());
|
|
expect(screen.getByTestId('include-panels')).toBeEnabled();
|
|
});
|
|
|
|
it('should be disabled when layout is folder', async () => {
|
|
config.featureToggles.panelTitleSearch = true;
|
|
setup({}, { layout: SearchLayout.Folders });
|
|
|
|
await waitFor(() => expect(screen.getByLabelText(/include panels/i)).toBeInTheDocument());
|
|
expect(screen.getByTestId('include-panels')).toBeDisabled();
|
|
});
|
|
});
|
|
});
|