mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
0a56527ed9
* Add download logs functionality * Refactor InspectDataTab to be smaller * Add test * Remove console log * Add metedata info * Add metedata info
88 lines
3.4 KiB
TypeScript
88 lines
3.4 KiB
TypeScript
import React, { ComponentProps } from 'react';
|
|
import { FieldType, DataFrame } from '@grafana/data';
|
|
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { InspectDataTab } from './InspectDataTab';
|
|
|
|
const createProps = (propsOverride?: Partial<ComponentProps<typeof InspectDataTab>>) => {
|
|
const defaultProps = {
|
|
isLoading: false,
|
|
options: {
|
|
withTransforms: false,
|
|
withFieldConfig: false,
|
|
},
|
|
data: [
|
|
{
|
|
name: 'First data frame',
|
|
fields: [
|
|
{ name: 'time', type: FieldType.time, values: [100, 200, 300] },
|
|
{ name: 'name', type: FieldType.string, values: ['uniqueA', 'b', 'c'] },
|
|
{ name: 'value', type: FieldType.number, values: [1, 2, 3] },
|
|
],
|
|
length: 3,
|
|
},
|
|
{
|
|
name: 'Second data frame',
|
|
fields: [
|
|
{ name: 'time', type: FieldType.time, values: [400, 500, 600] },
|
|
{ name: 'name', type: FieldType.string, values: ['d', 'e', 'g'] },
|
|
{ name: 'value', type: FieldType.number, values: [4, 5, 6] },
|
|
],
|
|
length: 3,
|
|
},
|
|
],
|
|
};
|
|
|
|
return Object.assign(defaultProps, propsOverride) as ComponentProps<typeof InspectDataTab>;
|
|
};
|
|
|
|
describe('InspectDataTab', () => {
|
|
describe('when panel is not passed as prop (Explore)', () => {
|
|
it('should render InspectDataTab', () => {
|
|
render(<InspectDataTab {...createProps()} />);
|
|
expect(screen.getByLabelText(/Panel inspector Data content/i)).toBeInTheDocument();
|
|
});
|
|
it('should render Data Option row', () => {
|
|
render(<InspectDataTab {...createProps()} />);
|
|
expect(screen.getByText(/Data options/i)).toBeInTheDocument();
|
|
});
|
|
it('should show available options', () => {
|
|
render(<InspectDataTab {...createProps()} />);
|
|
const dataOptions = screen.getByText(/Data options/i);
|
|
userEvent.click(dataOptions);
|
|
expect(screen.getByText(/Show data frame/i)).toBeInTheDocument();
|
|
expect(screen.getByText(/Download for Excel/i)).toBeInTheDocument();
|
|
});
|
|
it('should show available dataFrame options', () => {
|
|
render(<InspectDataTab {...createProps()} />);
|
|
const dataOptions = screen.getByText(/Data options/i);
|
|
userEvent.click(dataOptions);
|
|
const dataFrameInput = screen.getByRole('textbox', { name: /Select dataframe/i });
|
|
userEvent.click(dataFrameInput);
|
|
expect(screen.getByText(/Second data frame/i)).toBeInTheDocument();
|
|
});
|
|
it('should show download logs button if logs data', () => {
|
|
const dataWithLogs = ([
|
|
{
|
|
name: 'Data frame with logs',
|
|
fields: [
|
|
{ name: 'time', type: FieldType.time, values: [100, 200, 300] },
|
|
{ name: 'name', type: FieldType.string, values: ['uniqueA', 'b', 'c'] },
|
|
{ name: 'value', type: FieldType.number, values: [1, 2, 3] },
|
|
],
|
|
length: 3,
|
|
meta: {
|
|
preferredVisualisationType: 'logs',
|
|
},
|
|
},
|
|
] as unknown) as DataFrame[];
|
|
render(<InspectDataTab {...createProps({ data: dataWithLogs })} />);
|
|
expect(screen.getByText(/Download logs/i)).toBeInTheDocument();
|
|
});
|
|
it('should not show download logs button if no logs data', () => {
|
|
render(<InspectDataTab {...createProps()} />);
|
|
expect(screen.queryByText(/Download logs/i)).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|