mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { ExploreId } from '../../../types/explore';
|
|
import { RichHistory, RichHistoryProps } from './RichHistory';
|
|
import { Tabs } from './RichHistory';
|
|
import { Tab } from '@grafana/ui';
|
|
|
|
jest.mock('../state/selectors', () => ({ getExploreDatasources: jest.fn() }));
|
|
|
|
const setup = (propOverrides?: Partial<RichHistoryProps>) => {
|
|
const props: RichHistoryProps = {
|
|
theme: {} as GrafanaTheme,
|
|
exploreId: ExploreId.left,
|
|
height: 100,
|
|
activeDatasourceInstance: 'Test datasource',
|
|
richHistory: [],
|
|
firstTab: Tabs.RichHistory,
|
|
deleteRichHistory: jest.fn(),
|
|
onClose: jest.fn(),
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const wrapper = mount(<RichHistory {...props} />);
|
|
return wrapper;
|
|
};
|
|
|
|
describe('RichHistory', () => {
|
|
it('should render all tabs in tab bar', () => {
|
|
const wrapper = setup();
|
|
expect(wrapper.find(Tab)).toHaveLength(3);
|
|
});
|
|
|
|
it('should render correct lebels of tabs in tab bar', () => {
|
|
const wrapper = setup();
|
|
expect(
|
|
wrapper
|
|
.find(Tab)
|
|
.at(0)
|
|
.text()
|
|
).toEqual('Query history');
|
|
expect(
|
|
wrapper
|
|
.find(Tab)
|
|
.at(1)
|
|
.text()
|
|
).toEqual('Starred');
|
|
expect(
|
|
wrapper
|
|
.find(Tab)
|
|
.at(2)
|
|
.text()
|
|
).toEqual('Settings');
|
|
});
|
|
|
|
it('should correctly render query history tab as active tab', () => {
|
|
const wrapper = setup();
|
|
expect(wrapper.find('RichHistoryQueriesTab')).toHaveLength(1);
|
|
});
|
|
|
|
it('should correctly render starred tab as active tab', () => {
|
|
const wrapper = setup({ firstTab: Tabs.Starred });
|
|
expect(wrapper.find('RichHistoryStarredTab')).toHaveLength(1);
|
|
});
|
|
});
|