mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Annotations: Adds DashboardQueryRunner (#32834)
* WIP: initial commit * Fix: Fixed $timeout call when testing snapshots * Chore: reverts changes to metrics_panel_ctrl.ts * Chore: reverts changes to annotations_srv * Refactor: adds DashboardQueryRunner.run to initdashboard * Refactor: adds run to dashboard model start refresh * Refactor: move to own folder and split up into smaller files * Tests: adds tests for LegacyAnnotationQueryRunner * Tests: adds tests for AnnotationsQueryRunner * Tests: adds tests for SnapshotWorker * Refactor: renames from canRun|run to canWork|work * Tests: adds tests for AlertStatesWorker * Tests: adds tests for AnnotationsWorker * Refactor: renames operators * Refactor: renames operators * Tests: adds tests for DashboardQueryRunner * Refactor: adds mergePanelAndDashboardData function * Tests: fixes broken tests * Chore: Fixes errors after merge with master * Chore: Removes usage of AnnotationSrv from event_editor and initDashboard * WIP: getting annotations and alerts working in graph (snapshot not working) * Refactor: fixes snapshot data for React panels * Refactor: Fixes so snapshots work for Graph * Refactor: moves alert types to grafana-data * Refactor: changes to some for readability * Tests: skipping tests for now, needs rewrite * Refactor: refactors out common static functions to utils * Refactor: fixes resolving annotations from dataframes * Refactor: removes getRunners/Workers functions * Docs: fixes docs errors * Docs: trying to fix doc error * Refactor: changes after PR comments * Refactor: hides everything behind a factory instead * Refactor: adds cancellation between runs and explicitly
This commit is contained in:
@@ -1,4 +1,16 @@
|
||||
const applyFieldOverridesMock = jest.fn();
|
||||
const applyFieldOverridesMock = jest.fn(); // needs to be first in this file
|
||||
|
||||
// Importing this way to be able to spy on grafana/data
|
||||
import * as grafanaData from '@grafana/data';
|
||||
import { DashboardModel } from '../../dashboard/state/index';
|
||||
import { setDataSourceSrv, setEchoSrv } from '@grafana/runtime';
|
||||
import { Echo } from '../../../core/services/echo/Echo';
|
||||
import { emptyResult } from './DashboardQueryRunner/utils';
|
||||
import {
|
||||
createDashboardQueryRunner,
|
||||
setDashboardQueryRunnerFactory,
|
||||
} from './DashboardQueryRunner/DashboardQueryRunner';
|
||||
import { PanelQueryRunner } from './PanelQueryRunner';
|
||||
|
||||
jest.mock('@grafana/data', () => ({
|
||||
__esModule: true,
|
||||
@@ -6,13 +18,6 @@ jest.mock('@grafana/data', () => ({
|
||||
applyFieldOverrides: applyFieldOverridesMock,
|
||||
}));
|
||||
|
||||
import { PanelQueryRunner } from './PanelQueryRunner';
|
||||
// Importing this way to be able to spy on grafana/data
|
||||
import * as grafanaData from '@grafana/data';
|
||||
import { DashboardModel } from '../../dashboard/state/index';
|
||||
import { setDataSourceSrv, setEchoSrv } from '@grafana/runtime';
|
||||
import { Echo } from '../../../core/services/echo/Echo';
|
||||
|
||||
jest.mock('app/core/services/backend_srv');
|
||||
jest.mock('app/core/config', () => ({
|
||||
config: { featureToggles: { transformations: true } },
|
||||
@@ -86,6 +91,13 @@ function describeQueryRunnerScenario(
|
||||
};
|
||||
|
||||
setDataSourceSrv({} as any);
|
||||
setDashboardQueryRunnerFactory(() => ({
|
||||
getResult: emptyResult,
|
||||
run: () => undefined,
|
||||
cancel: () => undefined,
|
||||
destroy: () => undefined,
|
||||
}));
|
||||
createDashboardQueryRunner({} as any);
|
||||
|
||||
beforeEach(async () => {
|
||||
setEchoSrv(new Echo());
|
||||
|
||||
Reference in New Issue
Block a user