Files
grafana/public/app/features/inspector/InspectDataTab.test.tsx
Sven Grossmann 336449c169 Explore: Add hide_logs_download and hide button to download logs (#99512)
* Explore: Add `disableLogsDownload` and hide button to download logs

* change copy

* Explore: Change `disableLogsDownload` to `hide_logs_download`

* change casing in frontend

* also hide from inspector

* add test

* lint
2025-01-29 11:53:52 +01:00

218 lines
8.1 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { ComponentProps } from 'react';
import { Props } from 'react-virtualized-auto-sizer';
import { DataFrame, FieldType } from '@grafana/data';
import { config } from '@grafana/runtime';
import { InspectDataTab } from './InspectDataTab';
jest.mock('react-virtualized-auto-sizer', () => {
return ({ children }: Props) =>
children({
height: 1,
scaledHeight: 1,
scaledWidth: 1,
width: 1,
});
});
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], config: {} },
{ name: 'name', type: FieldType.string, values: ['uniqueA', 'b', 'c'], config: {} },
{ name: 'value', type: FieldType.number, values: [1, 2, 3], config: {} },
],
length: 3,
},
{
name: 'Second data frame',
fields: [
{ name: 'time', type: FieldType.time, values: [400, 500, 600], config: {} },
{ name: 'name', type: FieldType.string, values: ['d', 'e', 'g'], config: {} },
{ name: 'value', type: FieldType.number, values: [4, 5, 6], config: {} },
],
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', async () => {
render(<InspectDataTab {...createProps()} />);
const dataOptions = screen.getByText(/Data options/i);
await 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', async () => {
render(<InspectDataTab {...createProps()} />);
const dataOptions = screen.getByText(/Data options/i);
await userEvent.click(dataOptions);
const dataFrameInput = screen.getByRole('combobox', { name: /Select dataframe/i });
await userEvent.click(dataFrameInput);
expect(screen.getByText(/Second data frame/i)).toBeInTheDocument();
});
it('should show download logs button if logs data', () => {
const oldConfig = config.exploreHideLogsDownload;
config.exploreHideLogsDownload = false;
const dataWithLogs = [
{
name: 'Data frame with logs',
fields: [
{ name: 'time', type: FieldType.time, values: [100, 200, 300], config: {} },
{ name: 'name', type: FieldType.string, values: ['uniqueA', 'b', 'c'], config: {} },
{ name: 'value', type: FieldType.number, values: [1, 2, 3], config: {} },
],
length: 3,
meta: {
preferredVisualisationType: 'logs',
},
},
] as unknown as DataFrame[];
render(<InspectDataTab {...createProps({ data: dataWithLogs })} />);
expect(screen.getByText(/Download logs/i)).toBeInTheDocument();
config.exploreHideLogsDownload = oldConfig;
});
it('should not show download logs button if logs data but config disabled', () => {
const oldConfig = config.exploreHideLogsDownload;
config.exploreHideLogsDownload = true;
const dataWithLogs = [
{
name: 'Data frame with logs',
fields: [
{ name: 'time', type: FieldType.time, values: [100, 200, 300], config: {} },
{ name: 'name', type: FieldType.string, values: ['uniqueA', 'b', 'c'], config: {} },
{ name: 'value', type: FieldType.number, values: [1, 2, 3], config: {} },
],
length: 3,
meta: {
preferredVisualisationType: 'logs',
},
},
] as unknown as DataFrame[];
render(<InspectDataTab {...createProps({ data: dataWithLogs })} />);
expect(screen.queryByText(/Download logs/i)).not.toBeInTheDocument();
config.exploreHideLogsDownload = oldConfig;
});
it('should not show download logs button if no logs data', () => {
render(<InspectDataTab {...createProps()} />);
expect(screen.queryByText(/Download logs/i)).not.toBeInTheDocument();
});
it('should show download traces button if traces data', () => {
const dataWithtraces = [
{
name: 'Data frame with traces',
fields: [
{ name: 'traceID', values: ['3fa414edcef6ad90', '3fa414edcef6ad90'], config: {} },
{ name: 'spanID', values: ['3fa414edcef6ad90', '0f5c1808567e4403'], config: {} },
{ name: 'parentSpanID', values: [undefined, '3fa414edcef6ad90'], config: {} },
{
name: 'operationName',
values: ['HTTP GET - api_traces_traceid', '/tempopb.Querier/FindTraceByID'],
config: {},
},
{ name: 'serviceName', values: ['tempo-querier', 'tempo-querier'], config: {} },
{
name: 'serviceTags',
values: [
[
{ key: 'cluster', type: 'string', value: 'ops-tools1' },
{ key: 'container', type: 'string', value: 'tempo-query' },
],
[
{ key: 'cluster', type: 'string', value: 'ops-tools1' },
{ key: 'container', type: 'string', value: 'tempo-query' },
],
],
config: {},
},
{ name: 'startTime', values: [1605873894680.409, 1605873894680.587], config: {} },
{ name: 'duration', values: [1049.141, 1.847], config: {} },
{ name: 'logs', values: [[], []], config: {} },
{
name: 'tags',
values: [
[
{ key: 'sampler.type', type: 'string', value: 'probabilistic' },
{ key: 'sampler.param', type: 'float64', value: 1 },
],
[
{ key: 'component', type: 'string', value: 'gRPC' },
{ key: 'span.kind', type: 'string', value: 'client' },
],
],
config: {},
},
{ name: 'warnings', values: [undefined, undefined], config: {} },
{ name: 'stackTraces', values: [undefined, undefined], config: {} },
],
length: 2,
meta: {
preferredVisualisationType: 'trace',
custom: {
traceFormat: 'jaeger',
},
},
},
] as unknown as DataFrame[];
render(<InspectDataTab {...createProps({ data: dataWithtraces })} />);
expect(screen.getByText(/Download traces/i)).toBeInTheDocument();
});
it('should not show download traces button if no traces data', () => {
render(<InspectDataTab {...createProps()} />);
expect(screen.queryByText(/Download traces/i)).not.toBeInTheDocument();
});
it('should show download service graph button', () => {
const sgFrames = [
{
name: 'Nodes',
fields: [],
meta: {
preferredVisualisationType: 'nodeGraph',
},
config: {},
},
{
name: 'Edges',
fields: [],
meta: {
preferredVisualisationType: 'nodeGraph',
},
config: {},
},
] as unknown as DataFrame[];
render(
<InspectDataTab
{...createProps({
data: sgFrames,
})}
/>
);
expect(screen.getByText(/Download service graph/i)).toBeInTheDocument();
});
});
});