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

93 lines
2.8 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 { createTheme } from '@grafana/data';
import traceGenerator from '../demo/trace-generators';
import transformTraceData from '../model/transform-trace-data';
import TraceTimelineViewer, { TProps } from './index';
jest.mock('@grafana/runtime', () => {
return {
...jest.requireActual('@grafana/runtime'),
reportInteraction: jest.fn(),
};
});
describe('<TraceTimelineViewer>', () => {
const trace = transformTraceData(traceGenerator.trace({}));
const props = {
trace,
textFilter: null,
viewRange: {
time: {
current: [0, 1],
},
},
traceTimeline: {
childrenHiddenIDs: new Set(),
hoverIndentGuideIds: new Set(),
spanNameColumnWidth: 0.5,
detailStates: new Map(),
},
expandAll: jest.fn(),
collapseAll: jest.fn(),
expandOne: jest.fn(),
registerAccessors: jest.fn(),
collapseOne: jest.fn(),
setTrace: jest.fn(),
theme: createTheme(),
history: {
replace: () => {},
},
location: {
search: null,
},
};
it('it does not explode', () => {
expect(() => render(<TraceTimelineViewer {...(props as unknown as TProps)} />)).not.toThrow();
});
it('it sets up actions', async () => {
render(<TraceTimelineViewer {...(props as unknown as TProps)} />);
const expandOne = screen.getByRole('button', { name: 'Expand +1' });
const collapseOne = screen.getByRole('button', { name: 'Collapse +1' });
const expandAll = screen.getByRole('button', { name: 'Expand All' });
const collapseAll = screen.getByRole('button', { name: 'Collapse All' });
expect(expandOne).toBeInTheDocument();
expect(collapseOne).toBeInTheDocument();
expect(expandAll).toBeInTheDocument();
expect(collapseAll).toBeInTheDocument();
await userEvent.click(expandOne);
expect(props.expandOne).toHaveBeenCalled();
await userEvent.click(collapseOne);
expect(props.collapseOne).toHaveBeenCalled();
await userEvent.click(expandAll);
expect(props.expandAll).toHaveBeenCalled();
await userEvent.click(collapseAll);
expect(props.collapseAll).toHaveBeenCalled();
});
});