/usr/share/grafana/public/app/features/explore/TraceView/components/TraceTimelineViewer/SpanDetail
// 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 KeyValuesTable, { LinkValue, KeyValuesTableProps } from './KeyValuesTable'; const data = [ { key: 'span.kind', value: 'client' }, { key: 'omg', value: 'mos-def' }, { key: 'numericString', value: '12345678901234567890' }, { key: 'jsonkey', value: JSON.stringify({ hello: 'world' }) }, ]; const setup = (propOverrides?: Partial<KeyValuesTableProps>) => { const props = { data: data, ...propOverrides, }; return render(<KeyValuesTable {...(props as KeyValuesTableProps)} />); }; describe('LinkValue', () => { it('renders as expected', () => { const link = { title: 'titleValue', path: 'hrefValue', }; const childrenText = 'childrenTextValue'; render(<LinkValue link={link}>{childrenText}</LinkValue>); expect(screen.getByRole('link', { name: 'titleValue' })).toBeInTheDocument(); expect(screen.getByText(/^childrenTextValue$/)).toBeInTheDocument(); }); }); describe('KeyValuesTable tests', () => { it('renders without exploding', () => { expect(() => setup()).not.toThrow(); }); it('renders a table', () => { setup(); expect(screen.getByTestId('KeyValueTable')).toBeInTheDocument(); expect(screen.getByRole('table')).toBeInTheDocument(); }); it('renders a table row for each data element', () => { setup(); expect(screen.getByRole('table')).toBeInTheDocument(); expect(screen.getAllByRole('cell')).toHaveLength(12); expect(screen.getAllByTestId('KeyValueTable--keyColumn')).toHaveLength(4); expect(screen.getByRole('row', { name: 'span.kind "client"' })).toBeInTheDocument(); expect(screen.getByRole('row', { name: 'jsonkey { "hello": "world" }' })).toBeInTheDocument(); }); it('renders a single link correctly', () => { setup({ linksGetter: (array, i) => array[i].key === 'span.kind' ? [ { path: `http://example.com/?kind=${encodeURIComponent(array[i].value)}`, title: `More info about ${array[i].value}`, }, ] : [], } as KeyValuesTableProps); expect(screen.getByRole('row', { name: 'span.kind More info about client' })).toBeInTheDocument(); }); it('renders a <CopyIcon /> for each data element', () => { setup(); expect(screen.getAllByRole('button')).toHaveLength(4); }); it('renders a link in json and properly escapes it', () => { setup({ data: [ { key: 'jsonkey', value: JSON.stringify({ hello: 'https://example.com"id=x tabindex=1 onfocus=alert(1)' }) }, ], }); const link = screen.getByText(/https:\/\/example.com/); expect(link.tagName).toBe('A'); expect(link.attributes.getNamedItem('href')?.value).toBe( 'https://example.com%22id=x%20tabindex=1%20onfocus=alert(1)' ); }); it('properly escapes json values', () => { setup({ data: [ { key: 'jsonkey', value: JSON.stringify({ '<img src=x onerror=alert(1)>': '<img src=x onerror=alert(1)>' }) }, ], }); const values = screen.getAllByText(/onerror=alert/); expect(values[0].innerHTML).toBe('"<img src=x onerror=alert(1)>":'); expect(values[1].innerHTML).toBe('"<img src=x onerror=alert(1)>"'); }); });
.
Edit
..
Edit
AccordianKeyValues.markers.tsx
Edit
AccordianKeyValues.test.tsx
Edit
AccordianKeyValues.tsx
Edit
AccordianLogs.test.tsx
Edit
AccordianLogs.tsx
Edit
AccordianReferences.test.tsx
Edit
AccordianReferences.tsx
Edit
DetailState.tsx
Edit
KeyValuesTable.test.tsx
Edit
KeyValuesTable.tsx
Edit
ShareSpanButton.tsx
Edit
SpanDetailLinkButtons.test.tsx
Edit
SpanDetailLinkButtons.tsx
Edit
SpanFlameGraph.tsx
Edit
TextList.test.tsx
Edit
TextList.tsx
Edit
index.test.tsx
Edit
index.tsx
Edit
jsonMarkup.js
Edit