grafana/public/app/features/explore/RichHistory/RichHistoryStarredTab.test.tsx

71 lines
1.9 KiB
TypeScript

import { render } from '@testing-library/react';
import React from 'react';
import { SortOrder } from 'app/core/utils/richHistory';
import { ExploreId } from '../../../types/explore';
import { RichHistoryStarredTab, Props } from './RichHistoryStarredTab';
jest.mock('../state/selectors', () => ({ getExploreDatasources: jest.fn() }));
jest.mock('@grafana/runtime', () => ({
...jest.requireActual('@grafana/runtime'),
getDataSourceSrv: () => {
return {
getList: () => [],
};
},
}));
const setup = (activeDatasourceOnly = false) => {
const props: Props = {
queries: [],
loading: false,
totalQueries: 0,
activeDatasourceInstance: {} as any,
updateFilters: jest.fn(),
loadMoreRichHistory: jest.fn(),
clearRichHistoryResults: jest.fn(),
exploreId: ExploreId.left,
richHistorySettings: {
retentionPeriod: 7,
starredTabAsFirstTab: false,
activeDatasourceOnly,
lastUsedDatasourceFilters: [],
},
richHistorySearchFilters: {
search: '',
sortOrder: SortOrder.Ascending,
datasourceFilters: [],
from: 0,
to: 7,
starred: false,
},
};
const container = render(<RichHistoryStarredTab {...props} />);
return container;
};
describe('RichHistoryStarredTab', () => {
describe('sorter', () => {
it('should render sorter', () => {
const container = setup();
expect(container.queryByLabelText('Sort queries')).toBeInTheDocument();
});
});
describe('select datasource', () => {
it('should render select datasource if activeDatasourceOnly is false', () => {
const container = setup();
expect(container.queryByLabelText('Filter queries for data sources(s)')).toBeInTheDocument();
});
it('should not render select datasource if activeDatasourceOnly is true', () => {
const container = setup(true);
expect(container.queryByLabelText('Filter queries for data sources(s)')).not.toBeInTheDocument();
});
});
});