2019-01-03 16:00:42 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
import renderer from 'react-test-renderer';
|
|
|
|
|
import { Aggregations, Props } from './Aggregations';
|
|
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
|
import { ValueTypes, MetricKind } from '../constants';
|
2019-01-14 23:43:31 +01:00
|
|
|
import { TemplateSrvStub } from 'test/specs/helpers';
|
2019-01-03 16:00:42 +01:00
|
|
|
|
|
|
|
|
const props: Props = {
|
|
|
|
|
onChange: () => {},
|
2019-07-01 11:11:57 +02:00
|
|
|
// @ts-ignore
|
2019-01-14 23:43:31 +01:00
|
|
|
templateSrv: new TemplateSrvStub(),
|
2019-01-03 16:00:42 +01:00
|
|
|
metricDescriptor: {
|
|
|
|
|
valueType: '',
|
|
|
|
|
metricKind: '',
|
|
|
|
|
},
|
|
|
|
|
crossSeriesReducer: '',
|
|
|
|
|
groupBys: [],
|
|
|
|
|
children: renderProps => <div />,
|
2020-01-17 12:25:47 +01:00
|
|
|
templateVariableOptions: [],
|
2019-01-03 16:00:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
describe('Aggregations', () => {
|
2019-07-01 11:11:57 +02:00
|
|
|
let wrapper: any;
|
2019-01-03 16:00:42 +01:00
|
|
|
it('renders correctly', () => {
|
|
|
|
|
const tree = renderer.create(<Aggregations {...props} />).toJSON();
|
|
|
|
|
expect(tree).toMatchSnapshot();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('options', () => {
|
|
|
|
|
describe('when DOUBLE and DELTA is passed as props', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
const newProps = { ...props, metricDescriptor: { valueType: ValueTypes.DOUBLE, metricKind: MetricKind.GAUGE } };
|
|
|
|
|
wrapper = shallow(<Aggregations {...newProps} />);
|
|
|
|
|
});
|
|
|
|
|
it('', () => {
|
2020-01-17 12:25:47 +01:00
|
|
|
const options = wrapper.state().aggOptions;
|
2019-01-03 16:00:42 +01:00
|
|
|
expect(options.length).toEqual(11);
|
2019-07-01 11:11:57 +02:00
|
|
|
expect(options.map((o: any) => o.value)).toEqual(
|
2019-01-03 16:00:42 +01:00
|
|
|
expect.not.arrayContaining(['REDUCE_COUNT_TRUE', 'REDUCE_COUNT_FALSE'])
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('when MONEY and CUMULATIVE is passed as props', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
const newProps = {
|
|
|
|
|
...props,
|
|
|
|
|
metricDescriptor: { valueType: ValueTypes.MONEY, metricKind: MetricKind.CUMULATIVE },
|
|
|
|
|
};
|
|
|
|
|
wrapper = shallow(<Aggregations {...newProps} />);
|
|
|
|
|
});
|
|
|
|
|
it('', () => {
|
2020-01-17 12:25:47 +01:00
|
|
|
const options = wrapper.state().aggOptions;
|
2019-02-23 15:52:40 +01:00
|
|
|
expect(options.length).toEqual(10);
|
2019-07-01 11:11:57 +02:00
|
|
|
expect(options.map((o: any) => o.value)).toEqual(expect.arrayContaining(['REDUCE_NONE']));
|
2019-01-03 16:00:42 +01:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|