The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/datasource/cloud-monitoring/annotationSupport.test.ts

102 lines
3.2 KiB

import { AnnotationQuery } from '@grafana/data';
import { createMockDatasource } from './__mocks__/cloudMonitoringDatasource';
import { CloudMonitoringAnnotationSupport } from './annotationSupport';
import {
AlignmentTypes,
CloudMonitoringQuery,
QueryType,
MetricKind,
LegacyCloudMonitoringAnnotationQuery,
} from './types/query';
const query: CloudMonitoringQuery = {
refId: 'query',
queryType: QueryType.ANNOTATION,
intervalMs: 0,
timeSeriesList: {
projectName: 'project-name',
filters: [],
title: '',
text: '',
crossSeriesReducer: 'REDUCE_NONE',
perSeriesAligner: AlignmentTypes.ALIGN_NONE,
},
};
const legacyQuery: LegacyCloudMonitoringAnnotationQuery = {
projectName: 'project-name',
metricType: 'metric-type',
filters: ['filter1', 'filter2'],
metricKind: MetricKind.CUMULATIVE,
valueType: 'value-type',
refId: 'annotationQuery',
title: 'title',
text: 'text',
};
const annotationQuery: AnnotationQuery<CloudMonitoringQuery> = {
name: 'Anno',
enable: false,
iconColor: '',
target: query,
};
const legacyAnnotationQuery: AnnotationQuery<LegacyCloudMonitoringAnnotationQuery> = {
name: 'Anno',
enable: false,
iconColor: '',
target: legacyQuery,
};
const ds = createMockDatasource();
const annotationSupport = CloudMonitoringAnnotationSupport(ds);
describe('CloudMonitoringAnnotationSupport', () => {
describe('prepareAnnotation', () => {
it('returns query if it is already a Cloud Monitoring annotation query', () => {
expect(annotationSupport.prepareAnnotation?.(annotationQuery)).toBe(annotationQuery);
});
it('returns an updated query if it is a legacy Cloud Monitoring annotation query', () => {
const expectedQuery = {
datasource: undefined,
enable: false,
iconColor: '',
name: 'Anno',
target: {
intervalMs: 0,
timeSeriesList: {
crossSeriesReducer: 'REDUCE_NONE',
filters: ['filter1', 'filter2'],
perSeriesAligner: 'ALIGN_NONE',
projectName: 'project-name',
text: 'text',
title: 'title',
},
queryType: 'annotation',
refId: 'annotationQuery',
},
};
expect(annotationSupport.prepareAnnotation?.(legacyAnnotationQuery)).toEqual(expectedQuery);
});
});
describe('prepareQuery', () => {
it('should ensure queryType is set to "annotation"', () => {
const queryWithoutMetricsQueryType = { ...annotationQuery, queryType: 'blah' };
expect(annotationSupport.prepareQuery?.(queryWithoutMetricsQueryType)).toEqual(
expect.objectContaining({ queryType: QueryType.ANNOTATION })
);
});
it('should ensure type is set "annotationQuery"', () => {
const queryWithoutAnnotationQueryType = { ...annotationQuery, type: 'blah' };
expect(annotationSupport.prepareQuery?.(queryWithoutAnnotationQueryType)).toEqual(
expect.objectContaining({ type: 'annotationQuery' })
);
});
it('should return undefined if there is no query', () => {
const queryWithUndefinedTarget = { ...annotationQuery, target: undefined };
expect(annotationSupport.prepareQuery?.(queryWithUndefinedTarget)).toBeUndefined();
});
});
});