2019-01-03 16:00:42 +01:00
|
|
|
import React from 'react';
|
2020-09-21 15:33:50 +02:00
|
|
|
import { render, screen } from '@testing-library/react';
|
2019-01-03 16:00:42 +01:00
|
|
|
import { shallow } from 'enzyme';
|
2021-05-19 08:16:05 +02:00
|
|
|
import { Select } from '@grafana/ui';
|
|
|
|
|
import { Aggregation, Props } from './Aggregation';
|
|
|
|
|
import { ValueTypes, MetricKind } from '../types';
|
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: '',
|
2020-07-08 11:05:20 +02:00
|
|
|
} as any,
|
2019-01-03 16:00:42 +01:00
|
|
|
crossSeriesReducer: '',
|
|
|
|
|
groupBys: [],
|
2020-01-17 12:25:47 +01:00
|
|
|
templateVariableOptions: [],
|
2019-01-03 16:00:42 +01:00
|
|
|
};
|
|
|
|
|
|
2021-05-19 08:16:05 +02:00
|
|
|
describe('Aggregation', () => {
|
2019-01-03 16:00:42 +01:00
|
|
|
it('renders correctly', () => {
|
2021-05-19 08:16:05 +02:00
|
|
|
render(<Aggregation {...props} />);
|
|
|
|
|
expect(screen.getByTestId('cloud-monitoring-aggregation')).toBeInTheDocument();
|
2019-01-03 16:00:42 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('options', () => {
|
2020-05-18 19:03:29 +03:00
|
|
|
describe('when DOUBLE and GAUGE is passed as props', () => {
|
|
|
|
|
const nextProps = {
|
|
|
|
|
...props,
|
|
|
|
|
metricDescriptor: {
|
|
|
|
|
valueType: ValueTypes.DOUBLE,
|
|
|
|
|
metricKind: MetricKind.GAUGE,
|
2020-07-08 11:05:20 +02:00
|
|
|
} as any,
|
2020-05-18 19:03:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
it('should not have the reduce values', () => {
|
2021-05-19 08:16:05 +02:00
|
|
|
const wrapper = shallow(<Aggregation {...nextProps} />);
|
|
|
|
|
const { options } = wrapper.find(Select).props() as any;
|
2020-05-18 19:03:29 +03:00
|
|
|
const [, aggGroup] = options;
|
|
|
|
|
|
|
|
|
|
expect(aggGroup.options.length).toEqual(11);
|
|
|
|
|
expect(aggGroup.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', () => {
|
2020-05-18 19:03:29 +03:00
|
|
|
const nextProps = {
|
|
|
|
|
...props,
|
|
|
|
|
metricDescriptor: {
|
|
|
|
|
valueType: ValueTypes.MONEY,
|
|
|
|
|
metricKind: MetricKind.CUMULATIVE,
|
2020-07-08 11:05:20 +02:00
|
|
|
} as any,
|
2020-05-18 19:03:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
it('should have the reduce values', () => {
|
2021-05-19 08:16:05 +02:00
|
|
|
const wrapper = shallow(<Aggregation {...nextProps} />);
|
|
|
|
|
const { options } = wrapper.find(Select).props() as any;
|
2020-05-18 19:03:29 +03:00
|
|
|
const [, aggGroup] = options;
|
|
|
|
|
|
2020-10-12 15:28:18 +03:00
|
|
|
expect(aggGroup.options.length).toEqual(11);
|
2020-05-18 19:03:29 +03:00
|
|
|
expect(aggGroup.options.map((o: any) => o.value)).toEqual(expect.arrayContaining(['REDUCE_NONE']));
|
2019-01-03 16:00:42 +01:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|