mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* add support for handling preprocessors in the backend * add preprocessor tests * use uppercase for constants * add super label component * remove error message from query editor since its not working (probably cause onDataError doesnt work anymore) * use cheat sheet instead of help * add return type annotation for projects * add support for preprocessing. replace segment comp with select. change components names and refactoring * cleanup * more pr feedback * fix annotations editor * rename aggregation component * fix broken test * remove unnecessary cast * fix strict errors * fix more strict errors * remove not used prop * update docs * use same inline label for annotation editor * fix react prop warning * disable preprocessing for distribution types * using new default values for reducer * auto select 'rate' if metric kind is not gauge * fix create label format * pr feedback * more pr feedback * update images
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { render, screen } from '@testing-library/react';
|
|
import { shallow } from 'enzyme';
|
|
import { Select } from '@grafana/ui';
|
|
import { Aggregation, Props } from './Aggregation';
|
|
import { ValueTypes, MetricKind } from '../types';
|
|
import { TemplateSrvStub } from 'test/specs/helpers';
|
|
|
|
const props: Props = {
|
|
onChange: () => {},
|
|
// @ts-ignore
|
|
templateSrv: new TemplateSrvStub(),
|
|
metricDescriptor: {
|
|
valueType: '',
|
|
metricKind: '',
|
|
} as any,
|
|
crossSeriesReducer: '',
|
|
groupBys: [],
|
|
templateVariableOptions: [],
|
|
};
|
|
|
|
describe('Aggregation', () => {
|
|
it('renders correctly', () => {
|
|
render(<Aggregation {...props} />);
|
|
expect(screen.getByTestId('cloud-monitoring-aggregation')).toBeInTheDocument();
|
|
});
|
|
|
|
describe('options', () => {
|
|
describe('when DOUBLE and GAUGE is passed as props', () => {
|
|
const nextProps = {
|
|
...props,
|
|
metricDescriptor: {
|
|
valueType: ValueTypes.DOUBLE,
|
|
metricKind: MetricKind.GAUGE,
|
|
} as any,
|
|
};
|
|
|
|
it('should not have the reduce values', () => {
|
|
const wrapper = shallow(<Aggregation {...nextProps} />);
|
|
const { options } = wrapper.find(Select).props() as any;
|
|
const [, aggGroup] = options;
|
|
|
|
expect(aggGroup.options.length).toEqual(11);
|
|
expect(aggGroup.options.map((o: any) => o.value)).toEqual(
|
|
expect.not.arrayContaining(['REDUCE_COUNT_TRUE', 'REDUCE_COUNT_FALSE'])
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('when MONEY and CUMULATIVE is passed as props', () => {
|
|
const nextProps = {
|
|
...props,
|
|
metricDescriptor: {
|
|
valueType: ValueTypes.MONEY,
|
|
metricKind: MetricKind.CUMULATIVE,
|
|
} as any,
|
|
};
|
|
|
|
it('should have the reduce values', () => {
|
|
const wrapper = shallow(<Aggregation {...nextProps} />);
|
|
const { options } = wrapper.find(Select).props() as any;
|
|
const [, aggGroup] = options;
|
|
|
|
expect(aggGroup.options.length).toEqual(11);
|
|
expect(aggGroup.options.map((o: any) => o.value)).toEqual(expect.arrayContaining(['REDUCE_NONE']));
|
|
});
|
|
});
|
|
});
|
|
});
|