mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* fix any's in tests * fix more any's in tests * more test type fixes * fixing any's in tests part 3 * more test type fixes * fixing test any's p5 * some tidy up * fix template_srv
71 lines
1.9 KiB
TypeScript
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: '',
|
|
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();
|
|
});
|
|
});
|
|
});
|