mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Initial commit for loki builder options * Loki query options * Added some basic tests * Update public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.test.tsx Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> * Updated options * All option changes should trigger query * Fixed ts issue Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com>
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import { fireEvent, render, screen } from '@testing-library/react';
|
|
import { LokiQuery, LokiQueryType } from '../../types';
|
|
import { LokiQueryBuilderOptions } from './LokiQueryBuilderOptions';
|
|
import userEvent from '@testing-library/user-event';
|
|
|
|
describe('LokiQueryBuilderOptions', () => {
|
|
it('Can change query type', async () => {
|
|
const { props } = setup();
|
|
|
|
screen.getByTitle('Click to edit options').click();
|
|
expect(screen.getByLabelText('Range')).toBeChecked();
|
|
|
|
screen.getByLabelText('Instant').click();
|
|
|
|
expect(props.onChange).toHaveBeenCalledWith({
|
|
...props.query,
|
|
queryType: LokiQueryType.Instant,
|
|
});
|
|
});
|
|
|
|
it('Can change legend format', async () => {
|
|
const { props } = setup();
|
|
|
|
screen.getByTitle('Click to edit options').click();
|
|
|
|
const element = screen.getByLabelText('Legend');
|
|
userEvent.type(element, 'asd');
|
|
fireEvent.keyDown(element, { key: 'Enter', code: 'Enter', charCode: 13 });
|
|
|
|
expect(props.onChange).toHaveBeenCalledWith({
|
|
...props.query,
|
|
legendFormat: 'asd',
|
|
});
|
|
});
|
|
});
|
|
|
|
function setup(queryOverrides: Partial<LokiQuery> = {}) {
|
|
const props = {
|
|
query: {
|
|
refId: 'A',
|
|
expr: '',
|
|
...queryOverrides,
|
|
},
|
|
onRunQuery: jest.fn(),
|
|
onChange: jest.fn(),
|
|
};
|
|
|
|
const { container } = render(<LokiQueryBuilderOptions {...props} />);
|
|
return { container, props };
|
|
}
|