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/cloudwatch/metric-math/completion/CompletionItemProvider.test.ts

72 lines
3.3 KiB

import MonacoMock from '../../__mocks__/monarch/Monaco';
import TextModel from '../../__mocks__/monarch/TextModel';
import { MetricMathCompletionItemProvider } from './CompletionItemProvider';
import { getTemplateSrv } from '@grafana/runtime';
import { CloudWatchDatasource } from '../../datasource';
import cloudWatchMetricMathLanguageDefinition from '../definition';
import { Monaco, monacoTypes } from '@grafana/ui';
import { IPosition } from 'monaco-editor';
import {
METRIC_MATH_FNS,
METRIC_MATH_KEYWORDS,
METRIC_MATH_OPERATORS,
METRIC_MATH_PERIODS,
METRIC_MATH_STATISTIC_KEYWORD_STRINGS,
} from '../language';
import * as MetricMathTestData from '../../__mocks__/metric-math-test-data';
const getSuggestions = async (value: string, position: IPosition) => {
const setup = new MetricMathCompletionItemProvider(
({
getVariables: () => [],
getActualRegion: () => 'us-east-2',
} as any) as CloudWatchDatasource,
getTemplateSrv()
);
const monaco = MonacoMock as Monaco;
const provider = setup.getCompletionProvider(monaco, cloudWatchMetricMathLanguageDefinition);
const { suggestions } = await provider.provideCompletionItems(
TextModel(value) as monacoTypes.editor.ITextModel,
position
);
return suggestions;
};
describe('MetricMath: CompletionItemProvider', () => {
describe('getSuggestions', () => {
it('returns a suggestion for every metric math function when the input field is empty', async () => {
const { query, position } = MetricMathTestData.singleLineEmptyQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(METRIC_MATH_FNS.length);
});
it('returns a suggestion for every metric math operator when at the end of a function', async () => {
const { query, position } = MetricMathTestData.afterFunctionQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(METRIC_MATH_OPERATORS.length);
});
it('returns a suggestion for every metric math function and keyword if at the start of the second argument of a function', async () => {
const { query, position } = MetricMathTestData.secondArgQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(METRIC_MATH_FNS.length + METRIC_MATH_KEYWORDS.length);
});
it('does not have any particular suggestions if within a string', async () => {
const { query, position } = MetricMathTestData.withinStringQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(0);
});
it('returns a suggestion for every statistic if the second arg of a search function', async () => {
const { query, position } = MetricMathTestData.secondArgAfterSearchQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(METRIC_MATH_STATISTIC_KEYWORD_STRINGS.length);
});
it('returns a suggestion for every period if the third arg of a search function', async () => {
const { query, position } = MetricMathTestData.thirdArgAfterSearchQuery;
const suggestions = await getSuggestions(query, position);
expect(suggestions.length).toEqual(METRIC_MATH_PERIODS.length);
});
});
});