grafana/public/app/features/explore/QueryRow.test.tsx
Dominik Prokop 8d339a279b
Eslint: no-duplicate-imports rule (bump grafana-eslint-config) (#30989)
* Eslint: no-duplicate-imports rule (bump grafana-eslint-config)

* Chore: Fix duplicate imports (#31041)

* Rebased this branch into eslint-no-duplicate-imports

* updated some changes

* merged uncaught duplicate imports

* fixes frontend test- I hope

* fixes e2e test- I hope

Co-authored-by: Uchechukwu Obasi <obasiuche62@gmail.com>
2021-02-11 13:45:25 +01:00

48 lines
1.5 KiB
TypeScript

import React from 'react';
import { QueryRow, QueryRowProps } from './QueryRow';
import { shallow } from 'enzyme';
import { ExploreId } from 'app/types/explore';
import { DataSourceApi, TimeRange, AbsoluteTimeRange, PanelData, EventBusExtended } from '@grafana/data';
const setup = (propOverrides?: object) => {
const props: QueryRowProps = {
exploreId: ExploreId.left,
index: 1,
exploreEvents: {} as EventBusExtended,
changeQuery: jest.fn(),
datasourceInstance: {} as DataSourceApi,
highlightLogsExpressionAction: jest.fn() as any,
history: [],
query: {
refId: 'A',
},
modifyQueries: jest.fn(),
range: {} as TimeRange,
absoluteRange: {} as AbsoluteTimeRange,
removeQueryRowAction: jest.fn() as any,
runQueries: jest.fn(),
queryResponse: {} as PanelData,
latency: 1,
};
Object.assign(props, propOverrides);
const wrapper = shallow(<QueryRow {...props} />);
return wrapper;
};
const QueryEditor = () => <div />;
describe('QueryRow', () => {
describe('if datasource does not have Explore query fields ', () => {
it('it should render QueryEditor if datasource has it', () => {
const wrapper = setup({ datasourceInstance: { components: { QueryEditor } } });
expect(wrapper.find(QueryEditor)).toHaveLength(1);
});
it('it should not render QueryEditor if datasource does not have it', () => {
const wrapper = setup({ datasourceInstance: { components: {} } });
expect(wrapper.find(QueryEditor)).toHaveLength(0);
});
});
});