grafana/public/app/plugins/datasource/dashboard/DashboardQueryEditor.test.tsx
Ashley Harrison f8d89eff56
Chore: fix type errors in tests (#63270)
* 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
2023-02-14 16:46:42 +01:00

122 lines
3.4 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { getDefaultTimeRange, LoadingState } from '@grafana/data';
import { setDataSourceSrv } from '@grafana/runtime';
import { mockDataSource, MockDataSourceSrv } from 'app/features/alerting/unified/mocks';
import { getDashboardSrv } from 'app/features/dashboard/services/DashboardSrv';
import { DashboardModel } from 'app/features/dashboard/state';
import {
createDashboardModelFixture,
createPanelJSONFixture,
} from '../../../features/dashboard/state/__fixtures__/dashboardFixtures';
import { DashboardQueryEditor } from './DashboardQueryEditor';
import { SHARED_DASHBOARD_QUERY } from './types';
jest.mock('app/core/config', () => ({
...jest.requireActual('app/core/config'),
panels: {
timeseries: {
info: {
logos: {
small: '',
},
},
},
},
}));
setDataSourceSrv(
new MockDataSourceSrv({
test: mockDataSource({ isDefault: true }),
})
);
describe('DashboardQueryEditor', () => {
const mockOnChange = jest.fn();
const mockOnRunQueries = jest.fn();
const mockPanelData = {
state: LoadingState.Done,
series: [],
timeRange: getDefaultTimeRange(),
};
const mockQueries = [{ refId: 'A' }];
let mockDashboard: DashboardModel;
beforeEach(() => {
mockDashboard = createDashboardModelFixture({
panels: [
createPanelJSONFixture({
targets: [],
type: 'timeseries',
id: 1,
title: 'My first panel',
}),
createPanelJSONFixture({
targets: [],
id: 2,
type: 'timeseries',
title: 'Another panel',
}),
createPanelJSONFixture({
datasource: {
uid: SHARED_DASHBOARD_QUERY,
},
targets: [],
id: 3,
type: 'timeseries',
title: 'A dashboard query panel',
}),
],
});
jest.spyOn(getDashboardSrv(), 'getCurrent').mockImplementation(() => mockDashboard);
});
it('does not show a panel with the SHARED_DASHBOARD_QUERY datasource as an option in the dropdown', async () => {
render(
<DashboardQueryEditor
queries={mockQueries}
panelData={mockPanelData}
onChange={mockOnChange}
onRunQueries={mockOnRunQueries}
/>
);
const select = screen.getByText('Choose panel');
await userEvent.click(select);
const myFirstPanel = await screen.findByText('My first panel');
expect(myFirstPanel).toBeInTheDocument();
const anotherPanel = await screen.findByText('Another panel');
expect(anotherPanel).toBeInTheDocument();
expect(screen.queryByText('A dashboard query panel')).not.toBeInTheDocument();
});
it('does not show the current panelInEdit as an option in the dropdown', async () => {
mockDashboard.initEditPanel(mockDashboard.panels[0]);
render(
<DashboardQueryEditor
queries={mockQueries}
panelData={mockPanelData}
onChange={mockOnChange}
onRunQueries={mockOnRunQueries}
/>
);
const select = screen.getByText('Choose panel');
await userEvent.click(select);
expect(screen.queryByText('My first panel')).not.toBeInTheDocument();
const anotherPanel = await screen.findByText('Another panel');
expect(anotherPanel).toBeInTheDocument();
expect(screen.queryByText('A dashboard query panel')).not.toBeInTheDocument();
});
});