mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Update dependency prettier to v2.5.1 * prettier fixes * chore(toolkit): bump prettier to 2.5.1 * style(eslint): bump grafana config to 2.5.2 in core and toolkit * style(mssql-datasource): fix no-inferrable-types eslint errors Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com> Co-authored-by: Jack Westbrook <jack.westbrook@gmail.com>
229 lines
6.8 KiB
TypeScript
229 lines
6.8 KiB
TypeScript
import { Dispatch } from 'react';
|
|
import { renderHook } from '@testing-library/react-hooks';
|
|
|
|
import * as useSearch from './useSearch';
|
|
import { DashboardQuery, DashboardSearchItemType, DashboardSection, SearchAction } from '../types';
|
|
import { ManageDashboardsState } from '../reducers/manageDashboards';
|
|
import { useManageDashboards } from './useManageDashboards';
|
|
import { GENERAL_FOLDER_ID } from '../constants';
|
|
import { setEchoSrv } from '@grafana/runtime/src';
|
|
import { Echo } from 'app/core/services/echo/Echo';
|
|
|
|
describe('useManageDashboards', () => {
|
|
const useSearchMock = jest.spyOn(useSearch, 'useSearch');
|
|
const toggle = async (section: DashboardSection) => section;
|
|
|
|
beforeAll(() => {
|
|
setEchoSrv(new Echo());
|
|
});
|
|
|
|
function setupTestContext({ results = [] }: { results?: DashboardSection[] } = {}) {
|
|
jest.clearAllMocks();
|
|
|
|
const state: ManageDashboardsState = {
|
|
results,
|
|
loading: false,
|
|
selectedIndex: 0,
|
|
initialLoading: false,
|
|
allChecked: false,
|
|
};
|
|
const dispatch: Dispatch<SearchAction> = null as unknown as Dispatch<SearchAction>;
|
|
useSearchMock.mockReturnValue({ state, dispatch, onToggleSection: toggle });
|
|
const dashboardQuery: DashboardQuery = {} as unknown as DashboardQuery;
|
|
|
|
const { result } = renderHook(() => useManageDashboards(dashboardQuery, {}));
|
|
|
|
return { result };
|
|
}
|
|
|
|
describe('when called and only General folder is selected', () => {
|
|
it('then canDelete should be false', () => {
|
|
const results: DashboardSection[] = [
|
|
{ id: 1, checked: false, items: [], title: 'One', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: true,
|
|
items: [],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{ id: 2, checked: false, items: [], title: 'Two', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('when called and General folder and another folder are selected', () => {
|
|
it('then canDelete should be false', () => {
|
|
const results: DashboardSection[] = [
|
|
{
|
|
id: 1,
|
|
checked: true,
|
|
items: [
|
|
{
|
|
id: 11,
|
|
checked: true,
|
|
title: 'Eleven',
|
|
type: DashboardSearchItemType.DashDB,
|
|
url: '/',
|
|
isStarred: false,
|
|
tags: [],
|
|
uri: '',
|
|
},
|
|
],
|
|
title: 'One',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: true,
|
|
items: [
|
|
{
|
|
id: 10,
|
|
checked: true,
|
|
title: 'Ten',
|
|
type: DashboardSearchItemType.DashDB,
|
|
url: '/',
|
|
isStarred: false,
|
|
tags: [],
|
|
uri: '',
|
|
},
|
|
],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{ id: 2, checked: false, items: [], title: 'Two', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('when called on an empty General folder that is not selected but another folder is selected', () => {
|
|
it('then canDelete should be true', () => {
|
|
const results: DashboardSection[] = [
|
|
{
|
|
id: 1,
|
|
checked: true,
|
|
items: [
|
|
{
|
|
id: 11,
|
|
checked: true,
|
|
title: 'Eleven',
|
|
type: DashboardSearchItemType.DashDB,
|
|
url: '/',
|
|
isStarred: false,
|
|
tags: [],
|
|
uri: '',
|
|
},
|
|
],
|
|
title: 'One',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: false,
|
|
items: [],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{ id: 2, checked: false, items: [], title: 'Two', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe('when called on a non empty General folder that is not selected dashboard in General folder is selected', () => {
|
|
it('then canDelete should be true', () => {
|
|
const results: DashboardSection[] = [
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: false,
|
|
items: [
|
|
{
|
|
id: 10,
|
|
checked: true,
|
|
title: 'Ten',
|
|
type: DashboardSearchItemType.DashDB,
|
|
url: '/',
|
|
isStarred: false,
|
|
tags: [],
|
|
uri: '',
|
|
},
|
|
],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe('when called and no folder is selected', () => {
|
|
it('then canDelete should be false', () => {
|
|
const results: DashboardSection[] = [
|
|
{ id: 1, checked: false, items: [], title: 'One', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: false,
|
|
items: [],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{ id: 2, checked: false, items: [], title: 'Two', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('when called on an empty folder', () => {
|
|
it('then canDelete should be true', () => {
|
|
const results: DashboardSection[] = [
|
|
{ id: 1, checked: true, items: [], title: 'One', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
{
|
|
id: GENERAL_FOLDER_ID,
|
|
checked: false,
|
|
items: [],
|
|
title: 'General',
|
|
type: DashboardSearchItemType.DashFolder,
|
|
toggle,
|
|
url: '/',
|
|
},
|
|
{ id: 2, checked: false, items: [], title: 'Two', type: DashboardSearchItemType.DashFolder, toggle, url: '/' },
|
|
];
|
|
|
|
const { result } = setupTestContext({ results });
|
|
|
|
expect(result.current.canDelete).toBe(true);
|
|
});
|
|
});
|
|
});
|