mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
125 lines
4.8 KiB
TypeScript
125 lines
4.8 KiB
TypeScript
import { render, screen, within } from '@testing-library/react';
|
|
import React from 'react';
|
|
|
|
import { Field, LogLevel, LogRowModel, MutableDataFrame, createTheme, FieldType } from '@grafana/data';
|
|
|
|
import { LogDetails, Props } from './LogDetails';
|
|
import { createLogRow } from './__mocks__/logRow';
|
|
import { getLogRowStyles } from './getLogRowStyles';
|
|
|
|
const setup = (propOverrides?: Partial<Props>, rowOverrides?: Partial<LogRowModel>) => {
|
|
const theme = createTheme();
|
|
const styles = getLogRowStyles(theme);
|
|
const props: Props = {
|
|
displayedFields: [],
|
|
showDuplicates: false,
|
|
wrapLogMessage: false,
|
|
row: createLogRow({ logLevel: LogLevel.error, timeEpochMs: 1546297200000, ...rowOverrides }),
|
|
getRows: () => [],
|
|
onClickFilterLabel: () => {},
|
|
onClickFilterOutLabel: () => {},
|
|
onClickShowField: () => {},
|
|
onClickHideField: () => {},
|
|
theme,
|
|
styles,
|
|
...(propOverrides || {}),
|
|
};
|
|
|
|
render(
|
|
<table>
|
|
<tbody>
|
|
<LogDetails {...props} />
|
|
</tbody>
|
|
</table>
|
|
);
|
|
};
|
|
|
|
describe('LogDetails', () => {
|
|
describe('when labels are present', () => {
|
|
it('should render heading', () => {
|
|
setup(undefined, { labels: { key1: 'label1', key2: 'label2' } });
|
|
expect(screen.getAllByLabelText('Fields')).toHaveLength(1);
|
|
});
|
|
it('should render labels', () => {
|
|
setup(undefined, { labels: { key1: 'label1', key2: 'label2' } });
|
|
expect(screen.getByRole('cell', { name: 'key1' })).toBeInTheDocument();
|
|
expect(screen.getByRole('cell', { name: 'label1' })).toBeInTheDocument();
|
|
expect(screen.getByRole('cell', { name: 'key2' })).toBeInTheDocument();
|
|
expect(screen.getByRole('cell', { name: 'label2' })).toBeInTheDocument();
|
|
});
|
|
});
|
|
describe('when log row has error', () => {
|
|
it('should not render log level border', () => {
|
|
// Is this a good test case for RTL??
|
|
setup({ hasError: true }, undefined);
|
|
expect(screen.getByLabelText('Log level').classList.toString()).not.toContain('logs-row__level');
|
|
});
|
|
});
|
|
describe('when row entry have parsable fields and labels are present', () => {
|
|
it('should render all headings', () => {
|
|
setup(undefined, { entry: 'test=successful', labels: { key: 'label' } });
|
|
expect(screen.getAllByLabelText('Fields')).toHaveLength(1);
|
|
});
|
|
it('should render all labels and detected fields', () => {
|
|
setup(undefined, { entry: 'test=successful', labels: { key: 'label' } });
|
|
expect(screen.getByRole('cell', { name: 'key' })).toBeInTheDocument();
|
|
expect(screen.getByRole('cell', { name: 'label' })).toBeInTheDocument();
|
|
});
|
|
});
|
|
describe('when row entry and labels are not present', () => {
|
|
it('should render no details available message', () => {
|
|
setup(undefined, { entry: '' });
|
|
expect(screen.getByText('No details available')).toBeInTheDocument();
|
|
});
|
|
it('should not render headings', () => {
|
|
setup(undefined, { entry: '' });
|
|
expect(screen.queryAllByLabelText('Log labels')).toHaveLength(0);
|
|
expect(screen.queryAllByLabelText('Detected fields')).toHaveLength(0);
|
|
});
|
|
});
|
|
|
|
it('should render fields from dataframe with links', () => {
|
|
const entry = 'traceId=1234 msg="some message"';
|
|
const dataFrame = new MutableDataFrame({
|
|
fields: [
|
|
{ name: 'timestamp', config: {}, type: FieldType.time, values: [1] },
|
|
{ name: 'entry', values: [entry] },
|
|
// As we have traceId in message already this will shadow it.
|
|
{
|
|
name: 'traceId',
|
|
values: ['1234'],
|
|
config: { links: [{ title: 'link', url: 'localhost:3210/${__value.text}' }] },
|
|
},
|
|
{ name: 'userId', values: ['5678'] },
|
|
],
|
|
});
|
|
setup(
|
|
{
|
|
getFieldLinks: (field: Field, rowIndex: number) => {
|
|
if (field.config && field.config.links) {
|
|
return field.config.links.map((link) => {
|
|
return {
|
|
href: link.url.replace('${__value.text}', field.values[rowIndex]),
|
|
title: link.title,
|
|
target: '_blank',
|
|
origin: field,
|
|
};
|
|
});
|
|
}
|
|
return [];
|
|
},
|
|
},
|
|
{ entry, dataFrame, entryFieldIndex: 0, rowIndex: 0 }
|
|
);
|
|
expect(screen.getAllByRole('table')).toHaveLength(2);
|
|
const rowDetailsTable = screen.getAllByRole('table')[1];
|
|
const rowDetailRows = within(rowDetailsTable).getAllByRole('row');
|
|
expect(rowDetailRows).toHaveLength(4); // 3 LogDetailsRow + 1 header
|
|
const traceIdRow = within(rowDetailsTable).getByRole('cell', { name: 'traceId' }).closest('tr');
|
|
expect(traceIdRow).toBeInTheDocument();
|
|
const link = within(traceIdRow!).getByRole('link', { name: 'link' });
|
|
expect(link).toBeInTheDocument();
|
|
expect(link).toHaveAttribute('href', 'localhost:3210/1234');
|
|
});
|
|
});
|