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/TracePageHeader/TracePageHeader.test.tsx

163 lines
4.7 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 React from 'react';
import { getTraceName } from '../model/trace-viewer';
import TracePageHeader, { TracePageHeaderEmbedProps } from './TracePageHeader';
export const trace = {
services: [{ name: 'serviceA', numberOfSpans: 1 }],
spans: [
{
traceID: '164afda25df92413',
spanID: '164afda25df92413',
operationName: 'HTTP Client',
serviceName: 'serviceA',
subsidiarilyReferencedBy: [],
startTime: 1675602037286989,
duration: 5685,
logs: [],
references: [],
tags: [],
processID: '164afda25df92413',
flags: 0,
process: {
serviceName: 'lb',
tags: [],
},
relativeStartTime: 0,
depth: 0,
hasChildren: false,
childSpanCount: 0,
warnings: [],
},
{
traceID: '164afda25df92413',
spanID: '164afda25df92413',
operationName: 'HTTP Client',
serviceName: 'serviceB',
subsidiarilyReferencedBy: [],
startTime: 1675602037286989,
duration: 5685,
logs: [],
references: [],
tags: [
{
key: 'http.url',
type: 'String',
value: `/v2/gamma/792edh2w897y2huehd2h89`,
},
{
key: 'http.method',
type: 'String',
value: `POST`,
},
{
key: 'http.status_code',
type: 'String',
value: `200`,
},
],
processID: '164afda25df92413',
flags: 0,
process: {
serviceName: 'lb',
tags: [],
},
relativeStartTime: 0,
depth: 0,
hasChildren: false,
childSpanCount: 0,
warnings: [],
},
],
traceID: '8bb35a31-eb64-512d-aaed-ddd61887bb2b',
traceName: 'serviceA: GET',
processes: {},
duration: 2355515,
startTime: 1675605056289000,
endTime: 1675605058644515,
};
const setup = (propOverrides?: TracePageHeaderEmbedProps) => {
const defaultProps = {
trace,
timeZone: '',
viewRange: { time: { current: [10, 20] as [number, number] } },
updateNextViewRangeTime: () => {},
updateViewRangeTime: () => {},
...propOverrides,
};
return render(<TracePageHeader {...defaultProps} />);
};
describe('TracePageHeader test', () => {
it('should render a header ', () => {
setup();
expect(screen.getByRole('banner')).toBeInTheDocument();
});
it('should render nothing if a trace is not present', () => {
setup({ trace: null } as TracePageHeaderEmbedProps);
expect(screen.queryByRole('banner')).not.toBeInTheDocument();
expect(screen.queryAllByRole('listitem')).toHaveLength(0);
expect(screen.queryByText(/Reset Selection/)).not.toBeInTheDocument();
});
it('should render the trace title', () => {
setup();
expect(
screen.getByRole('heading', {
name: (content) => content.replace(/ /g, '').startsWith(getTraceName(trace!.spans).replace(/ /g, '')),
})
).toBeInTheDocument();
});
it('should render the header items', () => {
setup();
const headerItems = screen.queryAllByRole('listitem');
expect(headerItems).toHaveLength(5);
// Year-month-day hour-minute-second
expect(headerItems[0].textContent?.match(/Trace Start:\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}\.\d{3}/g)).toBeTruthy();
expect(headerItems[1].textContent?.match(/Duration:[\d|\.][\.|\d|s][\.|\d|s]?[\d]?/)).toBeTruthy();
expect(headerItems[2].textContent?.match(/Services:\d\d?/g)).toBeTruthy();
expect(headerItems[3].textContent?.match(/Depth:\d\d?/)).toBeTruthy();
expect(headerItems[4].textContent?.match(/Total Spans:\d\d?\d?\d?/)).toBeTruthy();
});
it('should render a <SpanGraph>', () => {
setup();
expect(screen.getByText(/Reset Selection/)).toBeInTheDocument();
});
it('shows the summary', () => {
const { rerender } = setup();
rerender(
<TracePageHeader
{...({
trace: trace,
viewRange: { time: { current: [10, 20] } },
} as unknown as TracePageHeaderEmbedProps)}
/>
);
expect(screen.queryAllByRole('listitem')).toHaveLength(5);
});
});