mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
104 lines
3.9 KiB
TypeScript
104 lines
3.9 KiB
TypeScript
import { fireEvent, render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import React from 'react';
|
|
|
|
import { QueryEditor, Props } from './QueryEditor';
|
|
import { scenarios } from './__mocks__/scenarios';
|
|
import { defaultQuery } from './constants';
|
|
import { defaultStreamQuery } from './runStreams';
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
const mockOnChange = jest.fn();
|
|
const props = {
|
|
onRunQuery: jest.fn(),
|
|
query: defaultQuery,
|
|
onChange: mockOnChange,
|
|
datasource: {
|
|
getScenarios: () => Promise.resolve(scenarios),
|
|
} as any,
|
|
};
|
|
|
|
const setup = (testProps?: Partial<Props>) => {
|
|
const editorProps = { ...props, ...testProps };
|
|
return render(<QueryEditor {...editorProps} />);
|
|
};
|
|
|
|
describe('Test Datasource Query Editor', () => {
|
|
it('should render with default scenario', async () => {
|
|
setup();
|
|
|
|
expect(await screen.findByText(/random walk/i)).toBeInTheDocument();
|
|
expect(screen.getByRole('textbox', { name: 'Alias' })).toBeInTheDocument();
|
|
expect(screen.getByRole('textbox', { name: 'Labels' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('should switch scenario and display its default values', async () => {
|
|
const { rerender } = setup();
|
|
|
|
let select = (await screen.findByText('Scenario')).nextSibling!.firstChild!;
|
|
await fireEvent.keyDown(select, { keyCode: 40 });
|
|
const scs = screen.getAllByLabelText('Select option');
|
|
|
|
expect(scs).toHaveLength(scenarios.length);
|
|
|
|
await userEvent.click(screen.getByText('CSV Metric Values'));
|
|
expect(mockOnChange).toHaveBeenCalledWith(expect.objectContaining({ scenarioId: 'csv_metric_values' }));
|
|
await rerender(
|
|
<QueryEditor
|
|
{...props}
|
|
query={{ ...defaultQuery, scenarioId: 'csv_metric_values', stringInput: '1,20,90,30,5,0' }}
|
|
/>
|
|
);
|
|
expect(await screen.findByRole('textbox', { name: /string input/i })).toBeInTheDocument();
|
|
expect(screen.getByRole('textbox', { name: /string input/i })).toHaveValue('1,20,90,30,5,0');
|
|
|
|
await fireEvent.keyDown(select, { keyCode: 40 });
|
|
await userEvent.click(screen.getByText('Grafana API'));
|
|
expect(mockOnChange).toHaveBeenCalledWith(
|
|
expect.objectContaining({ scenarioId: 'grafana_api', stringInput: 'datasources' })
|
|
);
|
|
rerender(
|
|
<QueryEditor {...props} query={{ ...defaultQuery, scenarioId: 'grafana_api', stringInput: 'datasources' }} />
|
|
);
|
|
expect(await screen.findByText('Grafana API')).toBeInTheDocument();
|
|
expect(screen.getByText('Data Sources')).toBeInTheDocument();
|
|
|
|
await fireEvent.keyDown(select, { keyCode: 40 });
|
|
await userEvent.click(screen.getByText('Streaming Client'));
|
|
expect(mockOnChange).toHaveBeenCalledWith(
|
|
expect.objectContaining({ scenarioId: 'streaming_client', stream: defaultStreamQuery })
|
|
);
|
|
|
|
const streamQuery = { ...defaultQuery, stream: defaultStreamQuery, scenarioId: 'streaming_client' };
|
|
|
|
rerender(<QueryEditor {...props} query={streamQuery} />);
|
|
|
|
expect(await screen.findByText('Streaming Client')).toBeInTheDocument();
|
|
expect(screen.getByText('Type')).toBeInTheDocument();
|
|
expect(screen.getByLabelText('Noise')).toHaveValue(2.2);
|
|
expect(screen.getByLabelText('Speed (ms)')).toHaveValue(250);
|
|
expect(screen.getByLabelText('Spread')).toHaveValue(3.5);
|
|
expect(screen.getByLabelText('Bands')).toHaveValue(1);
|
|
});
|
|
|
|
it('persists the datasource from the query when switching scenario', async () => {
|
|
const mockDatasource = {
|
|
type: 'test',
|
|
uid: 'foo',
|
|
};
|
|
setup({
|
|
query: {
|
|
...defaultQuery,
|
|
datasource: mockDatasource,
|
|
},
|
|
});
|
|
let select = (await screen.findByText('Scenario')).nextSibling!.firstChild!;
|
|
await fireEvent.keyDown(select, { keyCode: 40 });
|
|
await userEvent.click(screen.getByText('Grafana API'));
|
|
expect(mockOnChange).toHaveBeenCalledWith(expect.objectContaining({ datasource: mockDatasource }));
|
|
});
|
|
});
|