12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {waitFor} from 'sentry-test/reactTestingLibrary';
- import type {RawSpanType} from 'sentry/components/events/interfaces/spans/types';
- import {EntryType, type Event} from 'sentry/types';
- import type {
- TraceFullDetailed,
- TraceSplitResults,
- } from 'sentry/utils/performance/quickTrace/types';
- import {TraceType} from '../traceDetails/newTraceDetailsContent';
- import {
- isAutogroupedNode,
- isMissingInstrumentationNode,
- isSpanNode,
- isTransactionNode,
- } from './guards';
- import {
- ParentAutogroupNode,
- type SiblingAutogroupNode,
- TraceTree,
- TraceTreeNode,
- } from './traceTree';
- function makeTrace(
- overrides: Partial<TraceSplitResults<TraceFullDetailed>>
- ): TraceSplitResults<TraceFullDetailed> {
- return {
- transactions: [],
- orphan_errors: [],
- ...overrides,
- } as TraceSplitResults<TraceFullDetailed>;
- }
- function makeTransaction(overrides: Partial<TraceFullDetailed> = {}): TraceFullDetailed {
- return {
- children: [],
- start_timestamp: 0,
- timestamp: 1,
- transaction: 'transaction',
- 'transaction.op': '',
- 'transaction.status': '',
- ...overrides,
- } as TraceFullDetailed;
- }
- function makeSpan(overrides: Partial<RawSpanType> = {}): RawSpanType {
- return {
- op: '',
- description: '',
- span_id: '',
- start_timestamp: 0,
- timestamp: 10,
- ...overrides,
- } as RawSpanType;
- }
- function makeTraceError(
- overrides: Partial<TraceTree.TraceError> = {}
- ): TraceTree.TraceError {
- return {
- title: 'MaybeEncodingError: Error sending result',
- level: 'error',
- data: {},
- ...overrides,
- } as TraceTree.TraceError;
- }
- function makeEvent(overrides: Partial<Event> = {}, spans: RawSpanType[] = []): Event {
- return {
- entries: [{type: EntryType.SPANS, data: spans}],
- ...overrides,
- } as Event;
- }
- function assertSpanNode(
- node: TraceTreeNode<TraceTree.NodeValue>
- ): asserts node is TraceTreeNode<TraceTree.Span> {
- if (!isSpanNode(node)) {
- throw new Error('node is not a span');
- }
- }
- // function assertTraceNode(
- // node: TraceTreeNode<TraceTree.NodeValue>
- // ): asserts node is TraceTreeNode<TraceTree.Trace> {
- // if (!isTraceNode(node)) {
- // throw new Error('node is not a trace');
- // }
- // }
- function assertTransactionNode(
- node: TraceTreeNode<TraceTree.NodeValue> | null
- ): asserts node is TraceTreeNode<TraceTree.Transaction> {
- if (!node || !isTransactionNode(node)) {
- throw new Error('node is not a transaction');
- }
- }
- function assertMissingInstrumentationNode(
- node: TraceTreeNode<TraceTree.NodeValue>
- ): asserts node is TraceTreeNode<TraceTree.MissingInstrumentationSpan> {
- if (!isMissingInstrumentationNode(node)) {
- throw new Error('node is not a missing instrumentation node');
- }
- }
- function assertAutogroupedNode(
- node: TraceTreeNode<TraceTree.NodeValue>
- ): asserts node is ParentAutogroupNode | SiblingAutogroupNode {
- if (!isAutogroupedNode(node)) {
- throw new Error('node is not a autogrouped node');
- }
- }
- function assertParentAutogroupedNode(
- node: TraceTreeNode<TraceTree.NodeValue>
- ): asserts node is ParentAutogroupNode {
- if (!(node instanceof ParentAutogroupNode)) {
- throw new Error('node is not a parent autogrouped node');
- }
- }
- // function _assertSiblingAutogroupedNode(
- // node: TraceTreeNode<TraceTree.NodeValue>
- // ): asserts node is ParentAutogroupNode {
- // if (!(node instanceof SiblingAutogroupNode)) {
- // throw new Error('node is not a parent node');
- // }
- // }
- describe('TreeNode', () => {
- it('expands transaction nodes by default', () => {
- const node = new TraceTreeNode(null, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- expect(node.expanded).toBe(true);
- });
- it('points parent to node', () => {
- const root = new TraceTreeNode(null, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- const child = new TraceTreeNode(root, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- expect(child.parent).toBe(root);
- });
- it('depth', () => {
- const root = new TraceTreeNode(null, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- const child = new TraceTreeNode(root, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- const grandChild = new TraceTreeNode(child, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- expect(grandChild.depth).toBe(1);
- });
- it('getVisibleChildren', () => {
- const root = new TraceTreeNode(null, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- const child = new TraceTreeNode(root, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- root.children.push(child);
- expect(root.getVisibleChildren()).toHaveLength(1);
- expect(root.getVisibleChildren()[0]).toBe(child);
- root.expanded = false;
- expect(root.getVisibleChildren()).toHaveLength(0);
- });
- it('getVisibleChildrenCount', () => {
- const root = new TraceTreeNode(null, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- const child = new TraceTreeNode(root, makeTransaction(), {
- project_slug: '',
- event_id: '',
- });
- root.children.push(child);
- expect(root.getVisibleChildrenCount()).toBe(1);
- root.expanded = false;
- expect(root.getVisibleChildrenCount()).toBe(0);
- });
- });
- describe('TraceTree', () => {
- beforeEach(() => {
- MockApiClient.clearMockResponses();
- });
- it('builds from transactions', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [],
- }),
- makeTransaction({
- children: [],
- }),
- ],
- })
- );
- expect(tree.list).toHaveLength(3);
- });
- it('builds orphan errors as well', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [],
- }),
- makeTransaction({
- children: [],
- }),
- ],
- orphan_errors: [makeTraceError()],
- })
- );
- expect(tree.list).toHaveLength(4);
- });
- it('calculates correct trace type', () => {
- let tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [],
- orphan_errors: [],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.EMPTY_TRACE);
- tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [],
- }),
- makeTransaction({
- children: [],
- }),
- ],
- orphan_errors: [],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.NO_ROOT);
- tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- parent_span_id: null,
- children: [],
- }),
- ],
- orphan_errors: [],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.ONE_ROOT);
- tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- parent_span_id: null,
- children: [],
- }),
- makeTransaction({
- children: [],
- }),
- ],
- orphan_errors: [],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.BROKEN_SUBTRACES);
- tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- parent_span_id: null,
- children: [],
- }),
- makeTransaction({
- parent_span_id: null,
- children: [],
- }),
- ],
- orphan_errors: [],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.MULTIPLE_ROOTS);
- tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [],
- orphan_errors: [makeTraceError()],
- })
- );
- expect(TraceTree.GetTraceType(tree.root)).toBe(TraceType.ONLY_ERRORS);
- });
- it('builds from spans when root is a transaction node', () => {
- const root = new TraceTreeNode(
- null,
- makeTransaction({
- children: [],
- }),
- {project_slug: '', event_id: ''}
- );
- const node = TraceTree.FromSpans(root, [
- makeSpan({start_timestamp: 0, op: '1', span_id: '1'}),
- makeSpan({start_timestamp: 1, op: '2', span_id: '2', parent_span_id: '1'}),
- makeSpan({start_timestamp: 2, op: '3', span_id: '3', parent_span_id: '2'}),
- makeSpan({start_timestamp: 3, op: '4', span_id: '4', parent_span_id: '1'}),
- ]);
- if (!isSpanNode(node.children[0])) {
- throw new Error('Child needs to be a span');
- }
- expect(node.children[0].value.span_id).toBe('1');
- expect(node.children[0].value.start_timestamp).toBe(0);
- expect(node.children.length).toBe(1);
- assertSpanNode(node.children[0].children[0]);
- assertSpanNode(node.children[0].children[0].children[0]);
- assertSpanNode(node.children[0].children[1]);
- expect(node.children[0].children[0].value.start_timestamp).toBe(1);
- expect(node.children[0].children[0].children[0].value.start_timestamp).toBe(2);
- expect(node.children[0].children[1].value.start_timestamp).toBe(3);
- });
- it('builds from spans and copies txn nodes', () => {
- // transaction transaction
- // - child transaction -> - span
- // - child-transaction
- // - span
- const root = new TraceTreeNode(
- null,
- makeTransaction({
- children: [],
- }),
- {project_slug: '', event_id: ''}
- );
- root.children.push(
- new TraceTreeNode(
- root,
- makeTransaction({
- parent_span_id: 'child-transaction',
- }),
- {project_slug: '', event_id: ''}
- )
- );
- const node = TraceTree.FromSpans(root, [
- makeSpan({start_timestamp: 0, timestamp: 0.1, op: 'span', span_id: 'none'}),
- makeSpan({
- start_timestamp: 0.1,
- timestamp: 0.2,
- op: 'child-transaction',
- span_id: 'child-transaction',
- }),
- makeSpan({start_timestamp: 0.2, timestamp: 0.25, op: 'span', span_id: 'none'}),
- ]);
- assertTransactionNode(node.children[1]);
- });
- it('builds from spans and copies txn nodes to nested children', () => {
- // parent transaction parent transaction
- // - child transaction -> - span
- // - grandchild transaction -> - child-transaction
- // - grandchild-transaction
- //
- const root = new TraceTreeNode(
- null,
- makeTransaction({
- span_id: 'parent-transaction',
- children: [],
- }),
- {project_slug: '', event_id: ''}
- );
- let start: TraceTreeNode<TraceTree.NodeValue> = root;
- for (let i = 0; i < 2; i++) {
- const node = new TraceTreeNode(
- start,
- makeTransaction({
- transaction: `${i === 0 ? 'child' : 'grandchild'}-transaction`,
- parent_span_id: `${i === 0 ? 'child' : 'grandchild'}-transaction`,
- }),
- {project_slug: '', event_id: ''}
- );
- start.children.push(node);
- start = node;
- }
- const node = TraceTree.FromSpans(root, [
- makeSpan({start_timestamp: 0, timestamp: 0.1, op: 'span', span_id: 'none'}),
- makeSpan({
- start_timestamp: 0.1,
- timestamp: 0.2,
- op: 'child-transaction',
- span_id: 'child-transaction',
- }),
- ]);
- assertTransactionNode(node.children[1]);
- assertTransactionNode(node.children[1].children[0]);
- });
- it('injects missing spans', () => {
- const root = new TraceTreeNode(
- null,
- makeTransaction({
- children: [],
- }),
- {project_slug: '', event_id: ''}
- );
- const date = new Date().getTime();
- const node = TraceTree.FromSpans(root, [
- makeSpan({
- start_timestamp: date,
- timestamp: date + 1,
- span_id: '1',
- op: 'span 1',
- }),
- makeSpan({
- start_timestamp: date + 2,
- timestamp: date + 4,
- op: 'span 2',
- span_id: '2',
- }),
- ]);
- assertSpanNode(node.children[0]);
- assertMissingInstrumentationNode(node.children[1]);
- assertSpanNode(node.children[2]);
- expect(node.children.length).toBe(3);
- expect(node.children[0].value.op).toBe('span 1');
- expect(node.children[1].value.type).toBe('missing_instrumentation');
- expect(node.children[2].value.op).toBe('span 2');
- });
- it('builds and preserves list order', async () => {
- const organization = OrganizationFixture();
- const api = new MockApiClient();
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- transaction: 'txn 1',
- start_timestamp: 0,
- children: [makeTransaction({start_timestamp: 1, transaction: 'txn 2'})],
- }),
- ],
- })
- );
- tree.expand(tree.list[0], true);
- const node = tree.list[1];
- const request = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/undefined:undefined/',
- method: 'GET',
- body: makeEvent({startTimestamp: 0}, [
- makeSpan({start_timestamp: 1, op: 'span 1', span_id: '1'}),
- makeSpan({
- start_timestamp: 2,
- op: 'span 2',
- span_id: '2',
- parent_span_id: '1',
- }),
- makeSpan({start_timestamp: 3, op: 'span 3', parent_span_id: '2'}),
- makeSpan({start_timestamp: 4, op: 'span 4', parent_span_id: '1'}),
- ]),
- });
- // 0
- // 1
- // 2
- // 3
- // 4
- tree.zoomIn(node, true, {api, organization});
- await waitFor(() => {
- expect(node.zoomedIn).toBe(true);
- });
- expect(request).toHaveBeenCalled();
- expect(tree.list.length).toBe(6);
- assertTransactionNode(tree.list[1]);
- assertSpanNode(tree.list[2]);
- assertSpanNode(tree.list[3]);
- expect(tree.list[1].value.start_timestamp).toBe(0);
- expect(tree.list[2].value.start_timestamp).toBe(1);
- expect(tree.list[3].value.start_timestamp).toBe(2);
- });
- it('preserves input order', () => {
- const firstChild = makeTransaction({
- start_timestamp: 0,
- timestamp: 1,
- children: [],
- });
- const secondChild = makeTransaction({
- start_timestamp: 1,
- timestamp: 2,
- children: [],
- });
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- start_timestamp: 0,
- timestamp: 2,
- children: [firstChild, secondChild],
- }),
- makeTransaction({
- start_timestamp: 2,
- timestamp: 4,
- }),
- ],
- })
- );
- expect(tree.list).toHaveLength(5);
- expect(tree.expand(tree.list[1], false)).toBe(true);
- expect(tree.list).toHaveLength(3);
- expect(tree.expand(tree.list[1], true)).toBe(true);
- expect(tree.list).toHaveLength(5);
- expect(tree.list[2].value).toBe(firstChild);
- expect(tree.list[3].value).toBe(secondChild);
- });
- it('creates children -> parent references', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- start_timestamp: 0,
- timestamp: 2,
- children: [makeTransaction({start_timestamp: 1, timestamp: 2})],
- }),
- makeTransaction({
- start_timestamp: 2,
- timestamp: 4,
- }),
- ],
- })
- );
- expect(tree.list).toHaveLength(4);
- expect(tree.list[2].parent?.value).toBe(tree.list[1].value);
- });
- it('establishes parent-child relationships', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [makeTransaction()],
- }),
- ],
- })
- );
- expect(tree.root.children).toHaveLength(1);
- expect(tree.root.children[0].children).toHaveLength(1);
- });
- it('isLastChild', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [makeTransaction(), makeTransaction()],
- }),
- makeTransaction(),
- ],
- orphan_errors: [],
- })
- );
- tree.expand(tree.list[1], true);
- expect(tree.list[0].isLastChild).toBe(true);
- expect(tree.list[1].isLastChild).toBe(false);
- expect(tree.list[2].isLastChild).toBe(false);
- expect(tree.list[3].isLastChild).toBe(true);
- expect(tree.list[4].isLastChild).toBe(true);
- });
- describe('connectors', () => {
- it('computes transaction connectors', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- transaction: 'sibling',
- children: [
- makeTransaction({transaction: 'child'}),
- makeTransaction({transaction: 'child'}),
- ],
- }),
- makeTransaction({transaction: 'sibling'}),
- ],
- })
- );
- // -1 root
- // ------ list begins here
- // 0 transaction
- // 0 |- sibling
- // -1, 2| | - child
- // -1| | - child
- // 0 |- sibling
- tree.expand(tree.list[1], true);
- expect(tree.list.length).toBe(5);
- expect(tree.list[0].connectors.length).toBe(0);
- expect(tree.list[1].connectors.length).toBe(1);
- expect(tree.list[1].connectors[0]).toBe(-1);
- expect(tree.list[2].connectors[0]).toBe(-1);
- expect(tree.list[2].connectors[1]).toBe(2);
- expect(tree.list[2].connectors.length).toBe(2);
- expect(tree.list[3].connectors[0]).toBe(-1);
- expect(tree.list[3].connectors.length).toBe(1);
- expect(tree.list[4].connectors.length).toBe(0);
- });
- it('computes span connectors', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- project_slug: 'project',
- event_id: 'event_id',
- transaction: 'transaction',
- children: [],
- }),
- ],
- })
- );
- // root
- // |- node1 []
- // |- node2 []
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [makeSpan({start_timestamp: 0, op: 'span', span_id: '1'})]),
- });
- expect(tree.list.length).toBe(2);
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list.length).toBe(3);
- });
- // root
- // |- node1 []
- // |- node2 []
- // |- span1 []
- const span = tree.list[tree.list.length - 1];
- expect(span.connectors.length).toBe(0);
- });
- });
- describe('expanding', () => {
- it('expands a node and updates the list', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({transactions: [makeTransaction({children: [makeTransaction()]})]})
- );
- const node = tree.list[1];
- expect(tree.expand(node, false)).toBe(true);
- expect(tree.list.length).toBe(2);
- expect(node.expanded).toBe(false);
- expect(tree.expand(node, true)).toBe(true);
- expect(node.expanded).toBe(true);
- // Assert that the list has been updated
- expect(tree.list).toHaveLength(3);
- expect(tree.list[2]).toBe(node.children[0]);
- });
- it('collapses a node and updates the list', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({transactions: [makeTransaction({children: [makeTransaction()]})]})
- );
- const node = tree.list[1];
- tree.expand(node, true);
- expect(tree.list.length).toBe(3);
- expect(tree.expand(node, false)).toBe(true);
- expect(node.expanded).toBe(false);
- // Assert that the list has been updated
- expect(tree.list).toHaveLength(2);
- expect(tree.list[1]).toBe(node);
- });
- it('preserves children expanded state', () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- children: [
- makeTransaction({children: [makeTransaction({start_timestamp: 1000})]}),
- makeTransaction({start_timestamp: 5}),
- ],
- }),
- ],
- })
- );
- expect(tree.expand(tree.list[2], false)).toBe(true);
- // Assert that the list has been updated
- expect(tree.list).toHaveLength(4);
- expect(tree.expand(tree.list[2], true)).toBe(true);
- expect(tree.list.length).toBe(5);
- expect(tree.list[tree.list.length - 1].value).toEqual(
- makeTransaction({start_timestamp: 5})
- );
- });
- it('expanding or collapsing a zoomed in node doesnt do anything', async () => {
- const organization = OrganizationFixture();
- const api = new MockApiClient();
- const tree = TraceTree.FromTrace(
- makeTrace({transactions: [makeTransaction({children: [makeTransaction()]})]})
- );
- const node = tree.list[0];
- const request = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/undefined:undefined/',
- method: 'GET',
- body: makeEvent(),
- });
- tree.zoomIn(node, true, {api, organization});
- await waitFor(() => {
- expect(node.zoomedIn).toBe(true);
- });
- expect(request).toHaveBeenCalled();
- expect(tree.expand(node, true)).toBe(false);
- });
- });
- describe('zooming', () => {
- it('marks node as zoomed in', async () => {
- const organization = OrganizationFixture();
- const api = new MockApiClient();
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({project_slug: 'project', event_id: 'event_id'}),
- ],
- })
- );
- const request = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent(),
- });
- const node = tree.list[1];
- expect(node.zoomedIn).toBe(false);
- tree.zoomIn(node, true, {api, organization});
- await waitFor(() => {
- expect(node.zoomedIn).toBe(true);
- });
- expect(request).toHaveBeenCalled();
- });
- it('fetches spans for node when zooming in', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- transaction: 'txn',
- project_slug: 'project',
- event_id: 'event_id',
- }),
- ],
- })
- );
- const request = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [makeSpan()]),
- });
- const node = tree.list[1];
- expect(node.children).toHaveLength(0);
- tree.zoomIn(node, true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- expect(request).toHaveBeenCalled();
- await waitFor(() => {
- expect(node.children).toHaveLength(1);
- });
- // Assert that the children have been updated
- assertTransactionNode(node.children[0].parent);
- expect(node.children[0].parent.value.transaction).toBe('txn');
- expect(node.children[0].depth).toBe(node.depth + 1);
- });
- it('zooms out', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({project_slug: 'project', event_id: 'event_id'}),
- ],
- })
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [makeSpan({span_id: 'span1', description: 'span1'})]),
- });
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- assertSpanNode(tree.list[1].children[0]);
- expect(tree.list[1].children[0].value.description).toBe('span1');
- });
- tree.zoomIn(tree.list[1], false, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- // Assert child no longer points to children
- expect(tree.list[1].zoomedIn).toBe(false);
- expect(tree.list[1].children[0]).toBe(undefined);
- expect(tree.list[2]).toBe(undefined);
- });
- });
- it('zooms in and out', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({project_slug: 'project', event_id: 'event_id'}),
- ],
- })
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [makeSpan({span_id: 'span 1', description: 'span1'})]),
- });
- // Zoom in
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- assertSpanNode(tree.list[1].children[0]);
- expect(tree.list[1].children[0].value.description).toBe('span1');
- });
- // Zoom out
- tree.zoomIn(tree.list[1], false, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list[2]).toBe(undefined);
- });
- // Zoom in
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- assertSpanNode(tree.list[1].children[0]);
- expect(tree.list[1].children[0].value?.description).toBe('span1');
- });
- });
- it('zooms in and out preserving siblings', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- project_slug: 'project',
- event_id: 'event_id',
- start_timestamp: 0,
- children: [
- makeTransaction({
- start_timestamp: 1,
- timestamp: 2,
- project_slug: 'other_project',
- event_id: 'event_id',
- }),
- makeTransaction({start_timestamp: 2, timestamp: 3}),
- ],
- }),
- ],
- })
- );
- const request = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/other_project:event_id/',
- method: 'GET',
- body: makeEvent({}, [makeSpan({description: 'span1'})]),
- });
- tree.expand(tree.list[1], true);
- tree.zoomIn(tree.list[2], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- expect(request).toHaveBeenCalled();
- // Zoom in
- await waitFor(() => {
- expect(tree.list.length).toBe(5);
- });
- // Zoom out
- tree.zoomIn(tree.list[2], false, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list.length).toBe(4);
- });
- });
- it('preserves expanded state when zooming in and out', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- project_slug: 'project',
- event_id: 'event_id',
- children: [
- makeTransaction({project_slug: 'other_project', event_id: 'event_id'}),
- ],
- }),
- ],
- })
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [
- makeSpan({description: 'span1'}),
- makeSpan({description: 'span2'}),
- ]),
- });
- tree.expand(tree.list[1], true);
- expect(tree.list.length).toBe(3);
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list.length).toBe(4);
- });
- tree.zoomIn(tree.list[1], false, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list.length).toBe(3);
- });
- expect(tree.list[1].expanded).toBe(true);
- });
- });
- describe('autogrouping', () => {
- it('auto groups sibling spans and preserves tail spans', () => {
- const root = new TraceTreeNode(null, makeSpan({description: 'span1'}), {
- project_slug: '',
- event_id: '',
- });
- for (let i = 0; i < 5; i++) {
- root.children.push(
- new TraceTreeNode(root, makeSpan({description: 'span', op: 'db'}), {
- project_slug: '',
- event_id: '',
- })
- );
- }
- root.children.push(
- new TraceTreeNode(root, makeSpan({description: 'span', op: 'http'}), {
- project_slug: '',
- event_id: '',
- })
- );
- expect(root.children.length).toBe(6);
- TraceTree.AutogroupSiblingSpanNodes(root);
- expect(root.children.length).toBe(2);
- });
- it('autogroups when number of children is exactly 5', () => {
- const root = new TraceTreeNode(null, makeSpan({description: 'span1'}), {
- project_slug: '',
- event_id: '',
- });
- for (let i = 0; i < 5; i++) {
- root.children.push(
- new TraceTreeNode(root, makeSpan({description: 'span', op: 'db'}), {
- project_slug: '',
- event_id: '',
- })
- );
- }
- expect(root.children.length).toBe(5);
- TraceTree.AutogroupSiblingSpanNodes(root);
- expect(root.children.length).toBe(1);
- });
- it('autogroups when number of children is > 5', () => {
- const root = new TraceTreeNode(null, makeSpan({description: 'span1'}), {
- project_slug: '',
- event_id: '',
- });
- for (let i = 0; i < 7; i++) {
- root.children.push(
- new TraceTreeNode(root, makeSpan({description: 'span', op: 'db'}), {
- project_slug: '',
- event_id: '',
- })
- );
- }
- expect(root.children.length).toBe(7);
- TraceTree.AutogroupSiblingSpanNodes(root);
- expect(root.children.length).toBe(1);
- });
- it('autogroups direct children case', () => {
- // db db db
- // http -> parent autogroup (3) -> parent autogroup (3)
- // http http
- // http http
- // http
- const root: TraceTreeNode<TraceTree.Span> = new TraceTreeNode(
- null,
- makeSpan({
- description: `span1`,
- span_id: `1`,
- op: 'db',
- }),
- {project_slug: '', event_id: ''}
- );
- let last: TraceTreeNode<any> = root;
- for (let i = 0; i < 3; i++) {
- const node = new TraceTreeNode(
- last,
- makeSpan({
- description: `span${i}`,
- span_id: `${i}`,
- op: 'http',
- }),
- {
- project_slug: '',
- event_id: '',
- }
- );
- last.children.push(node);
- last = node;
- }
- if (!root) {
- throw new Error('root is null');
- }
- expect(root.children.length).toBe(1);
- expect(root.children[0].children.length).toBe(1);
- TraceTree.AutogroupDirectChildrenSpanNodes(root);
- expect(root.children.length).toBe(1);
- assertAutogroupedNode(root.children[0]);
- expect(root.children[0].children.length).toBe(0);
- root.children[0].expanded = true;
- expect((root.children[0].children[0].value as RawSpanType).description).toBe(
- 'span0'
- );
- });
- it('autogrouping direct children skips rendering intermediary nodes', () => {
- // db db db
- // http autogrouped (3) autogrouped (3)
- // http -> db -> http
- // http http
- // db http
- // db
- const root = new TraceTreeNode(
- null,
- makeSpan({span_id: 'span1', description: 'span1', op: 'db'}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- let last = root;
- for (let i = 0; i < 4; i++) {
- const node = new TraceTreeNode(
- last,
- makeSpan({
- span_id: `span`,
- description: `span`,
- op: i === 3 ? 'db' : 'http',
- }),
- {
- project_slug: '',
- event_id: '',
- }
- );
- last.children.push(node);
- last = node;
- }
- TraceTree.AutogroupDirectChildrenSpanNodes(root);
- const autoGroupedNode = root.children[0];
- assertAutogroupedNode(autoGroupedNode);
- expect(autoGroupedNode.children.length).toBe(1);
- expect((autoGroupedNode.children[0].value as RawSpanType).op).toBe('db');
- autoGroupedNode.expanded = true;
- expect(autoGroupedNode.children.length).toBe(1);
- expect((autoGroupedNode.children[0].value as RawSpanType).op).toBe('http');
- });
- it('nested direct autogrouping', () => {
- // db db db
- // http -> parent autogroup (3) -> parent autogroup (3)
- // http db http
- // http parent autogroup (3) http
- // db http
- // http db
- // http parent autogrouped (3)
- // http http
- // http
- // http
- const root = new TraceTreeNode(
- null,
- makeSpan({span_id: 'span', description: 'span', op: 'db'}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- let last = root;
- for (let i = 0; i < 3; i++) {
- if (i === 1) {
- const autogroupBreakingSpan = new TraceTreeNode(
- last,
- makeSpan({span_id: 'span', description: 'span', op: 'db'}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- last.children.push(autogroupBreakingSpan);
- last = autogroupBreakingSpan;
- } else {
- for (let j = 0; j < 3; j++) {
- const node = new TraceTreeNode(
- last,
- makeSpan({span_id: `span${j}`, description: `span${j}`, op: 'http'}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- last.children.push(node);
- last = node;
- }
- }
- }
- TraceTree.AutogroupDirectChildrenSpanNodes(root);
- assertAutogroupedNode(root.children[0]);
- assertAutogroupedNode(root.children[0].children[0].children[0]);
- });
- it('sibling autogrouping', () => {
- // db db
- // http sibling autogrouped (5)
- // http
- // http ->
- // http
- // http
- const root = new TraceTreeNode(
- null,
- makeTransaction({start_timestamp: 0, timestamp: 10}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- for (let i = 0; i < 5; i++) {
- root.children.push(
- new TraceTreeNode(root, makeSpan({start_timestamp: i, timestamp: i + 1}), {
- project_slug: '',
- event_id: '',
- })
- );
- }
- TraceTree.AutogroupSiblingSpanNodes(root);
- expect(root.children.length).toBe(1);
- assertAutogroupedNode(root.children[0]);
- });
- it('multiple sibling autogrouping', () => {
- // db db
- // http sibling autogrouped (5)
- // http db
- // http -> sibling autogrouped (5)
- // http
- // http
- // db
- // http
- // http
- // http
- // http
- // http
- const root = new TraceTreeNode(
- null,
- makeTransaction({start_timestamp: 0, timestamp: 10}),
- {
- project_slug: '',
- event_id: '',
- }
- );
- for (let i = 0; i < 10; i++) {
- if (i === 5) {
- root.children.push(
- new TraceTreeNode(
- root,
- makeSpan({start_timestamp: i, timestamp: i + 1, op: 'db'}),
- {
- project_slug: '',
- event_id: '',
- }
- )
- );
- }
- root.children.push(
- new TraceTreeNode(
- root,
- makeSpan({start_timestamp: i, timestamp: i + 1, op: 'http'}),
- {
- project_slug: '',
- event_id: '',
- }
- )
- );
- }
- TraceTree.AutogroupSiblingSpanNodes(root);
- assertAutogroupedNode(root.children[0]);
- expect(root.children).toHaveLength(3);
- assertAutogroupedNode(root.children[2]);
- });
- it('renders children of autogrouped direct children nodes', async () => {
- const tree = TraceTree.FromTrace(
- makeTrace({
- transactions: [
- makeTransaction({
- transaction: '/',
- project_slug: 'project',
- event_id: 'event_id',
- }),
- ],
- })
- );
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events/project:event_id/',
- method: 'GET',
- body: makeEvent({}, [
- makeSpan({description: 'parent span', op: 'http', span_id: '1'}),
- makeSpan({description: 'span', op: 'db', span_id: '2', parent_span_id: '1'}),
- makeSpan({description: 'span', op: 'db', span_id: '3', parent_span_id: '2'}),
- makeSpan({description: 'span', op: 'db', span_id: '4', parent_span_id: '3'}),
- makeSpan({description: 'span', op: 'db', span_id: '5', parent_span_id: '4'}),
- makeSpan({
- description: 'span',
- op: 'redis',
- span_id: '6',
- parent_span_id: '5',
- }),
- makeSpan({description: 'span', op: 'https', parent_span_id: '1'}),
- ]),
- });
- expect(tree.list.length).toBe(2);
- tree.zoomIn(tree.list[1], true, {
- api: new MockApiClient(),
- organization: OrganizationFixture(),
- });
- await waitFor(() => {
- expect(tree.list.length).toBe(6);
- });
- const autogroupedNode = tree.list[tree.list.length - 3];
- assertParentAutogroupedNode(autogroupedNode);
- expect('autogrouped_by' in autogroupedNode?.value).toBeTruthy();
- expect(autogroupedNode.groupCount).toBe(4);
- expect(autogroupedNode.head.value.span_id).toBe('2');
- expect(autogroupedNode.tail.value.span_id).toBe('5');
- // Expand autogrouped node
- expect(tree.expand(autogroupedNode, true)).toBe(true);
- expect(tree.list.length).toBe(10);
- // Collapse autogrouped node
- expect(tree.expand(autogroupedNode, false)).toBe(true);
- expect(tree.list.length).toBe(6);
- expect(autogroupedNode.children[0].depth).toBe(4);
- });
- });
- });
|