log.go ×3

Frontier kind: Code frontier

unlabeled · c_a0ba0b9ae335

11 tests · 19 LOC · 1 file · introduces 0 tests · 4 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges4 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
7 ranges19 lines · 1 file · Browse complete extent
All tests (intent)
11 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Introduced files, introduced tests, and structurally relevant concept specializationsummary.go ×1 · 2 introduced LOCsummary.go ×1TestRenderSummaryFromReports_JSON · 0 introduced LOCTestRenderSummaryFromRep…TestNewSummaryFromReports_KeepsFailureAndAlertRows · 0 introduced LOCTestNewSummaryFromReport…TestRenderSummaryFromReports_Markdown_RendersTrimmedFailureBody · 0 introduced LOCTestRenderSummaryFromRep…TestNewSummaryFromReports_RendersTrimmedFailureBodyRow · 0 introduced LOCTestNewSummaryFromReport…TestMergeReports_IterationSuffixPreserved · 0 introduced LOCTestMergeReports_Iterati…TestMergeReports_PreservesOriginalFailureDataWhenExtractionFindsNothing · 0 introduced LOCTestMergeReports_Preserv…junit.go ×1 · 1 introduced LOCjunit.go ×1log.go ×2 · 7 introduced LOClog.go ×2log.go ×1 · 2 introduced LOClog.go ×1returns_sentinel_when_no_output_exists · 0 introduced LOCreturns_sentinel_when_no…log.go ×2 · 2 introduced LOClog.go ×2log.go ×4 · 15 introduced LOClog.go ×4TestOperatorServiceMetadata, TestWorkflowServiceMetadata · 0 introduced LOCTestOperatorServiceMetad…go.temporal.io/server/tools/testrunner/junit.go · 369 LOCtestrunner/junit.gogo.temporal.io/server/tools/testrunner/log.go · 444 LOCtestrunner/log.gogo.temporal.io/server/tools/testrunner/summary.go · 127 LOCtestrunner/summary.goTestOperatorServiceMetadata · introduced test · go.temporal.io/server/common/api/TestOperatorServiceMetadataTestOperatorServiceMetad…TestWorkflowServiceMetadata · introduced test · go.temporal.io/server/common/api/TestWorkflowServiceMetadataTestWorkflowServiceMetad…TestMergeReports_IterationSuffixPreserved · introduced test · go.temporal.io/server/tools/testrunner/TestMergeReports_IterationSuffixPreservedTestMergeReports_Iterati…TestMergeReports_PreservesAlertFailureMessage · introduced test · go.temporal.io/server/tools/testrunner/TestMergeReports_PreservesAlertFailureMessageTestMergeReports_Preserv…TestMergeReports_PreservesOriginalFailureDataWhenExtractionFindsNothing · introduced test · go.temporal.io/server/tools/testrunner/TestMergeReports_PreservesOriginalFailureDataWhenExtractionFindsNothingTestMergeReports_Preserv…TestNewSummaryFromReports_KeepsFailureAndAlertRows · introduced test · go.temporal.io/server/tools/testrunner/TestNewSummaryFromReports_KeepsFailureAndAlertRowsTestNewSummaryFromReport…TestNewSummaryFromReports_RendersTrimmedFailureBodyRow · introduced test · go.temporal.io/server/tools/testrunner/TestNewSummaryFromReports_RendersTrimmedFailureBodyRowTestNewSummaryFromReport…returns_sentinel_when_no_output_exists · introduced test · go.temporal.io/server/tools/testrunner/TestParseFailureDetails/returns_sentinel_when_no_output_existsreturns_sentinel_when_no…uses_last_failure_block_when_multiple_exist · introduced test · go.temporal.io/server/tools/testrunner/TestParseFailureDetails/uses_last_failure_block_when_multiple_existuses_last_failure_block_…uses_last_gomock_style_block · introduced test · go.temporal.io/server/tools/testrunner/TestParseFailureDetails/uses_last_gomock_style_blockuses_last_gomock_style_b…TestRenderSummaryFromReports_JSON · introduced test · go.temporal.io/server/tools/testrunner/TestRenderSummaryFromReports_JSONTestRenderSummaryFromRep…TestRenderSummaryFromReports_Markdown_RendersFailureRows · introduced test · go.temporal.io/server/tools/testrunner/TestRenderSummaryFromReports_Markdown_RendersFailureRowsTestRenderSummaryFromRep…TestRenderSummaryFromReports_Markdown_RendersTrimmedFailureBody · introduced test · go.temporal.io/server/tools/testrunner/TestRenderSummaryFromReports_Markdown_RendersTrimmedFailureBodyTestRenderSummaryFromRep…Focused concept · log.go ×3 · 4 introduced LOClog.go ×3

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 4 introduced LOC across 3 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/tools/testrunner/log.go 4 introduced LOC · 3 ranges

Open complete file

354 // Some failures, such as gomock errors, do not include an Error Trace.
355 // Fall back to the last Go test output block in those cases.
356 > if start, end, ok := findLastTestOutputFailureBlock(lines); ok { log.go
357 return strings.Join(lines[start:end], "\n")
358 }
400 return strings.Join(out, "\n"), true
401 }
402 > return "", false log.go
403 }
404
422 }
423
424 > func findLastTestOutputFailureBlock(lines []string) (start, end int, ok bool) { log.go
425 > for start := len(lines) - 1; start >= 0; start-- {
426 if !isTestOutputLine(lines[start]) {
427 continue