48 lines
2.1 KiB
TypeScript
48 lines
2.1 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
|
|
import { LOG_LINE_BODY_FIELD_NAME } from './LogDetailsBody';
|
|
import { LogLabels, LogLabelsList } from './LogLabels';
|
|
|
|
describe('<LogLabels />', () => {
|
|
it('renders notice when no labels are found', () => {
|
|
render(<LogLabels labels={{}} emptyMessage="(no unique labels)" />);
|
|
expect(screen.queryByText('(no unique labels)')).toBeInTheDocument();
|
|
});
|
|
it('renders labels', () => {
|
|
render(<LogLabels labels={{ foo: 'bar', baz: '42' }} />);
|
|
expect(screen.queryByText('foo=bar')).toBeInTheDocument();
|
|
expect(screen.queryByText('baz=42')).toBeInTheDocument();
|
|
});
|
|
it('excludes labels with certain names or labels starting with underscore', () => {
|
|
render(<LogLabels labels={{ foo: 'bar', level: '42', _private: '13' }} />);
|
|
expect(screen.queryByText('foo=bar')).toBeInTheDocument();
|
|
expect(screen.queryByText('level=42')).not.toBeInTheDocument();
|
|
expect(screen.queryByText('13')).not.toBeInTheDocument();
|
|
});
|
|
it('excludes labels with empty string values', () => {
|
|
render(<LogLabels labels={{ foo: 'bar', baz: '' }} />);
|
|
expect(screen.queryByText('foo=bar')).toBeInTheDocument();
|
|
expect(screen.queryByText(/baz/)).not.toBeInTheDocument();
|
|
});
|
|
it('shows a tooltip', async () => {
|
|
render(<LogLabels labels={{ foo: 'bar' }} />);
|
|
await userEvent.hover(screen.getByText('foo=bar'));
|
|
expect(screen.getAllByText('foo=bar')).toHaveLength(2);
|
|
});
|
|
it('disables the tooltip', async () => {
|
|
render(<LogLabels labels={{ foo: 'bar' }} addTooltip={false} />);
|
|
await userEvent.hover(screen.getByText('foo=bar'));
|
|
expect(screen.getAllByText('foo=bar')).toHaveLength(1);
|
|
});
|
|
});
|
|
|
|
describe('<LogLabelsList />', () => {
|
|
it('renders labels', () => {
|
|
render(<LogLabelsList labels={['bar', '42', LOG_LINE_BODY_FIELD_NAME]} />);
|
|
expect(screen.queryByText('bar')).toBeInTheDocument();
|
|
expect(screen.queryByText('42')).toBeInTheDocument();
|
|
expect(screen.queryByText('log line')).toBeInTheDocument();
|
|
});
|
|
});
|