mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 15:23:44 +08:00
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
import { openMenu } from 'react-select-event';
|
|
import { TemplateSrvStub } from 'test/specs/helpers';
|
|
|
|
import { ValueTypes, MetricKind } from '../types';
|
|
|
|
import { Aggregation, Props } from './Aggregation';
|
|
|
|
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', () => {
|
|
render(<Aggregation {...nextProps} />);
|
|
const label = screen.getByLabelText('Group by function');
|
|
openMenu(label);
|
|
expect(screen.queryByText('count true')).not.toBeInTheDocument();
|
|
expect(screen.queryByText('count false')).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
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', () => {
|
|
render(<Aggregation {...nextProps} />);
|
|
const label = screen.getByLabelText('Group by function');
|
|
openMenu(label);
|
|
expect(screen.getByText('none')).toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|
|
});
|