The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/explore/TraceView/components/TraceTimelineViewer/SpanBarRow.test.tsx

278 lines
7.5 KiB

// Copyright (c) 2017 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { NONE, DURATION, TAG } from '../settings/SpanBarSettings';
import { TraceSpan } from '../types';
import { SpanLinks } from '../types/links';
import SpanBarRow, { SpanBarRowProps } from './SpanBarRow';
describe('<SpanBarRow>', () => {
const spanID = 'some-id';
const props = {
addHoverIndentGuideId: jest.fn(),
className: 'a-class-name',
color: 'color-a',
columnDivision: '0.5',
hoverIndentGuideIds: new Set(),
isChildrenExpanded: true,
isDetailExpanded: false,
isFilteredOut: false,
onDetailToggled: jest.fn(),
onChildrenToggled: jest.fn(),
operationName: 'op-name',
numTicks: 5,
rpc: {
viewStart: 0.25,
viewEnd: 0.75,
color: 'color-b',
operationName: 'rpc-op-name',
serviceName: 'rpc-service-name',
},
showErrorIcon: false,
getViewedBounds: () => ({ start: 0, end: 1 }),
span: {
duration: 9000,
hasChildren: true,
process: {
serviceName: 'service-name',
},
spanID,
logs: [],
references: [],
},
};
beforeEach(() => {
props.onDetailToggled.mockReset();
props.onChildrenToggled.mockReset();
});
it('renders without exploding', () => {
expect(() => render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />)).not.toThrow();
});
it('escalates detail toggling', async () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
const { onDetailToggled } = props;
expect(onDetailToggled.mock.calls.length).toBe(0);
await userEvent.click(screen.getByTestId('span-view'));
expect(onDetailToggled.mock.calls).toEqual([[spanID]]);
});
it('escalates children toggling', async () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
const { onChildrenToggled } = props;
expect(onChildrenToggled.mock.calls.length).toBe(0);
await userEvent.click(screen.getByTestId('icon-wrapper'));
expect(onChildrenToggled.mock.calls.length).toBe(1);
});
it('render references button', () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
const newSpan = Object.assign({}, props.span);
const span = Object.assign(newSpan, {
references: [
{
refType: 'FOLLOWS_FROM',
traceID: 'trace1',
spanID: 'span0',
span: {
spanID: 'span0',
},
},
{
refType: 'FOLLOWS_FROM',
traceID: 'otherTrace',
spanID: 'span1',
span: {
spanID: 'span1',
},
},
],
}) as unknown as TraceSpan;
render(
<SpanBarRow
{...(props as unknown as SpanBarRowProps)}
span={span}
createSpanLink={() =>
({
traceLinks: [{ href: 'href' }, { href: 'href' }],
} as SpanLinks)
}
/>
);
expect(screen.getAllByTestId('SpanLinksMenu')).toHaveLength(1);
});
it('render referenced to by single span', () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
const span = Object.assign(
{
subsidiarilyReferencedBy: [
{
refType: 'FOLLOWS_FROM',
traceID: 'trace1',
spanID: 'span0',
span: {
spanID: 'span0',
},
},
],
},
props.span
) as unknown as TraceSpan;
render(
<SpanBarRow
{...(props as unknown as SpanBarRowProps)}
span={span}
createSpanLink={() =>
({
traceLinks: [{ content: 'This span is referenced by another span', href: 'href' }],
} as SpanLinks)
}
/>
);
expect(screen.getByRole('link', { name: 'This span is referenced by another span' })).toBeInTheDocument();
});
it('render referenced to by multiple span', () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
const span = Object.assign(
{
subsidiarilyReferencedBy: [
{
refType: 'FOLLOWS_FROM',
traceID: 'trace1',
spanID: 'span0',
span: {
spanID: 'span0',
},
},
{
refType: 'FOLLOWS_FROM',
traceID: 'trace1',
spanID: 'span1',
span: {
spanID: 'span1',
},
},
],
},
props.span
) as unknown as TraceSpan;
render(
<SpanBarRow
{...(props as unknown as SpanBarRowProps)}
span={span}
createSpanLink={() =>
({
traceLinks: [{ href: 'href' }, { href: 'href' }],
} as SpanLinks)
}
/>
);
expect(screen.getAllByTestId('SpanLinksMenu')).toHaveLength(1);
});
describe('render span bar label', () => {
it('with default value', () => {
render(<SpanBarRow {...(props as unknown as SpanBarRowProps)} />);
expect(screen.getByText('(9ms)')).toBeInTheDocument();
});
it('with none value', () => {
const testProps = Object.assign(
{
spanBarOptions: {
type: NONE,
},
},
props
);
render(<SpanBarRow {...(testProps as unknown as SpanBarRowProps)} />);
expect(screen.queryByText('(9ms)')).not.toBeInTheDocument();
});
it('with duration value', () => {
const testProps = Object.assign(
{
spanBarOptions: {
type: DURATION,
},
},
props
);
render(<SpanBarRow {...(testProps as unknown as SpanBarRowProps)} />);
expect(screen.getByText('(9ms)')).toBeInTheDocument();
});
it('with tag value', () => {
const testProps = Object.assign(
{
spanBarOptions: {
type: TAG,
tag: 'tag',
},
},
{
...props,
span: {
process: {},
tags: [
{
key: 'tag',
value: 'tag-value',
},
],
},
}
);
render(<SpanBarRow {...(testProps as unknown as SpanBarRowProps)} />);
expect(screen.getByText('(tag-value)')).toBeInTheDocument();
});
it('with process value', () => {
let testProps = Object.assign(
{
spanBarOptions: {
type: TAG,
tag: 'tag',
},
},
{
...props,
span: {
process: {
tags: [
{
key: 'tag',
value: 'process-value',
},
],
},
tags: [],
},
}
);
render(<SpanBarRow {...(testProps as unknown as SpanBarRowProps)} />);
expect(screen.getByText('(process-value)')).toBeInTheDocument();
});
});
});