Skip to content

Commit 04bb07a

Browse files
authoredMar 13, 2024
Display display names in gradle test output (#2578)
The default test output always uses the name, so you end up with: ``` LuceneHighlighterTest > highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String) > com.apple.foundationdb.record.lucene.highlight.LuceneHighlighterTest.highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String)[1] STARTED LuceneHighlighterTest > highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String) > com.apple.foundationdb.record.lucene.highlight.LuceneHighlighterTest.highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String)[1] PASSED ``` Which is not great, this adds our own logging that renders the display name. So the above would become something like: ``` LuceneHighlighterTest > highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String) > AlphaCjk-Synonyms,Ϲ STARTED LuceneHighlighterTest > highlightsSpecialCharacterTerm(String, Analyzer, Analyzer, String) > AlphaCjk-Synonyms,Ϲ SUCCESS (0ms) ``` As you may note, I took the liberty of adding the duration of the test in milliseconds.
1 parent a5e7be5 commit 04bb07a

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed
 

‎build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ allprojects {
9292
// Configure JUnit tests
9393
tasks.withType(Test) {
9494
reports.junitXml.destination = project.file("${->project.buildDir}/test-results")
95-
testLogging.events = ["passed", "skipped", "failed"]
9695
}
9796

9897
// Configure JAR generation

‎fdb-record-layer-lucene/fdb-record-layer-lucene.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tasks.withType(Test) { theTask ->
6666
theTask.systemProperties['tests.seed'] = "C185081D42F0F43C" // a fixed seed, should pass reliably in prb/release
6767
}
6868
if (project.hasProperty('tests.luceneIterations')) {
69-
theTask.systemProperties['tests.iters'] = project.getProperty('tests.iterations')
69+
theTask.systemProperties['tests.iters'] = project.getProperty('tests.luceneIterations') // TODO this is broken on main...
7070
}
7171
if (project.hasProperty('tests.luceneNightly')) {
7272
theTask.systemProperties['tests.nightly'] = 'true'

‎gradle/testing.gradle

+33-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,30 @@ task performanceTest(type: Test) {
5252
}
5353
}
5454

55+
def getFullDisplayName(descriptor) {
56+
def fullName = ""
57+
fullName = descriptor.displayName
58+
descriptor = descriptor.parent
59+
while (descriptor != null) {
60+
// don't display this or any of the parents. Let's assume that nobody ever
61+
// sets the display name in code to start with "Gradle Test Executor".
62+
// it appears to be suffixed with a number, but I didn't investigate why
63+
if (descriptor.displayName.startsWith("Gradle Test Executor")) {
64+
break
65+
}
66+
def openParen = descriptor.displayName.indexOf("(")
67+
// in the case where someone sets the display name to include the method name, it's best
68+
// to skip the method name itself, e.g.:
69+
// LuceneIndexMaintenanceTest > randomizedRepartitionTest(boolean, boolean, boolean, int, int, int, long) > randomizedRepartitionTest(true, false, false, 13, 3, 20, 9237590782644) STARTED
70+
// LuceneIndexMaintenanceTest > randomizedRepartitionTest(boolean, boolean, boolean, int, int, int, long) > randomizedRepartitionTest(true, false, false, 13, 3, 20, 9237590782644) SUCCESS (1985ms)
71+
if (openParen < 0 || !fullName.startsWith(descriptor.displayName.substring(0, openParen))) {
72+
fullName = "${descriptor.displayName}" + " > " + fullName
73+
}
74+
descriptor = descriptor.parent
75+
}
76+
return fullName
77+
}
78+
5579
def configureTestTask = { propertyPrefix, task ->
5680
def handled = [propertyPrefix + '.ignoreFailures',
5781
propertyPrefix + '.debug',
@@ -118,9 +142,17 @@ tasks.withType(Test) { theTask ->
118142
configureTestTask('allTest', theTask)
119143
configureTestTask(theTask.name, theTask)
120144
testLogging {
121-
events 'started', 'passed', 'failed', 'skipped'
145+
events 'failed'
122146
exceptionFormat = 'full'
123147
}
148+
beforeTest { descriptor ->
149+
println "${getFullDisplayName(descriptor)} STARTED"
150+
}
151+
afterTest { descriptor, result ->
152+
def duration = result.endTime - result.startTime
153+
println "${getFullDisplayName(descriptor)} ${result.resultType} (${duration}ms)"
154+
println()
155+
}
124156
reports {
125157
junitXml.outputPerTestCase = true
126158
}

0 commit comments

Comments
 (0)