Files
grafana/public/app/features/query/state/DashboardQueryRunner/LegacyAnnotationQueryRunner.test.ts
Josh Hunt 3c6e0e8ef8 Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

123 lines
4.2 KiB
TypeScript

import { getDefaultTimeRange } from '@grafana/data';
import { silenceConsoleOutput } from '../../../../../test/core/utils/silenceConsoleOutput';
import * as store from '../../../../store/store';
import { LegacyAnnotationQueryRunner } from './LegacyAnnotationQueryRunner';
import { AnnotationQueryRunnerOptions } from './types';
function getDefaultOptions(annotationQuery?: jest.Mock): AnnotationQueryRunnerOptions {
const annotation: any = {};
const dashboard: any = {};
const datasource: any = {
annotationQuery: annotationQuery ?? jest.fn().mockResolvedValue([{ id: '1' }]),
};
const range = getDefaultTimeRange();
return { annotation, datasource, dashboard, range };
}
function getTestContext(annotationQuery?: jest.Mock) {
jest.clearAllMocks();
const dispatchMock = jest.spyOn(store, 'dispatch');
const options = getDefaultOptions(annotationQuery);
const annotationQueryMock = options.datasource!.annotationQuery;
return { options, dispatchMock, annotationQueryMock };
}
describe('LegacyAnnotationQueryRunner', () => {
const runner = new LegacyAnnotationQueryRunner();
describe('when canWork is called with correct props', () => {
it('then it should return true', () => {
const datasource: any = {
annotationQuery: jest.fn(),
};
expect(runner.canRun(datasource)).toBe(true);
});
});
describe('when canWork is called without datasource', () => {
it('then it should return false', () => {
const datasource: any = undefined;
expect(runner.canRun(datasource)).toBe(false);
});
});
describe('when canWork is called with incorrect props', () => {
it('then it should return false', () => {
const datasource: any = {
annotationQuery: jest.fn(),
annotations: {},
};
expect(runner.canRun(datasource)).toBe(false);
});
});
describe('when run is called with unsupported props', () => {
it('then it should return the correct results', async () => {
const datasource: any = {
annotationQuery: jest.fn(),
annotations: {},
};
const options = { ...getDefaultOptions(), datasource };
await expect(runner.run(options)).toEmitValuesWith((received) => {
expect(received).toHaveLength(1);
const results = received[0];
expect(results).toEqual([]);
expect(datasource.annotationQuery).not.toHaveBeenCalled();
});
});
});
describe('when run is called and the request is successful', () => {
it('then it should return the correct results', async () => {
const { options, annotationQueryMock } = getTestContext();
await expect(runner.run(options)).toEmitValuesWith((received) => {
expect(received).toHaveLength(1);
const results = received[0];
expect(results).toEqual([{ id: '1' }]);
expect(annotationQueryMock).toHaveBeenCalledTimes(1);
});
});
});
describe('when run is called and the request fails', () => {
silenceConsoleOutput();
it('then it should return the correct results', async () => {
const annotationQuery = jest.fn().mockRejectedValue({ message: 'An error' });
const { options, annotationQueryMock, dispatchMock } = getTestContext(annotationQuery);
await expect(runner.run(options)).toEmitValuesWith((received) => {
expect(received).toHaveLength(1);
const results = received[0];
expect(results).toEqual([]);
expect(annotationQueryMock).toHaveBeenCalledTimes(1);
expect(dispatchMock).toHaveBeenCalledTimes(1);
});
});
});
describe('when run is called and the request is cancelled', () => {
silenceConsoleOutput();
it('then it should return the correct results', async () => {
const annotationQuery = jest.fn().mockRejectedValue({ cancelled: true });
const { options, annotationQueryMock, dispatchMock } = getTestContext(annotationQuery);
await expect(runner.run(options)).toEmitValuesWith((received) => {
expect(received).toHaveLength(1);
const results = received[0];
expect(results).toEqual([]);
expect(annotationQueryMock).toHaveBeenCalledTimes(1);
expect(dispatchMock).not.toHaveBeenCalled();
});
});
});
});