2020-05-25 18:43:49 +02:00
|
|
|
|
2021-04-15 17:11:00 +02:00
|
|
|
def junitVersion = project.hasProperty('junit.version')?project.property('junit.version'):'5.7.0'
|
2020-05-25 18:43:49 +02:00
|
|
|
def hamcrestVersion = project.hasProperty('hamcrest.version')?project.property('hamcrest.version'):'2.2'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
|
|
|
|
testImplementation "org.hamcrest:hamcrest-library:${hamcrestVersion}"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
// for Lucene to access jdk.internal.ref and jdk.internal.misc in Java 11+
|
|
|
|
jvmArgs = [
|
2021-04-15 17:11:00 +02:00
|
|
|
// gradle default of 512m is too less for ES bulk indexing
|
|
|
|
'-Xmx2g',
|
|
|
|
'-Xms2g',
|
|
|
|
// do we need tricks with G1GC and real memory circuit breaker?
|
|
|
|
/*'-XX:+UseG1GC',
|
|
|
|
'-XX:+ParallelRefProcEnabled',
|
|
|
|
'-XX:MaxGCPauseMillis=50',
|
|
|
|
'-XX:+UnlockExperimentalVMOptions',
|
|
|
|
'-XX:+DisableExplicitGC',
|
|
|
|
'-XX:+AlwaysPreTouch',
|
|
|
|
'-XX:G1NewSizePercent=30',
|
|
|
|
'-XX:G1MaxNewSizePercent=40',
|
|
|
|
'-XX:G1HeapRegionSize=8M',
|
|
|
|
'-XX:G1ReservePercent=20',
|
|
|
|
'-XX:G1HeapWastePercent=5',
|
|
|
|
'-XX:G1MixedGCCountTarget=4',
|
|
|
|
'-XX:InitiatingHeapOccupancyPercent=15',
|
|
|
|
'-XX:G1MixedGCLiveThresholdPercent=90',
|
|
|
|
'-XX:G1RSetUpdatingPauseTimePercent=5',
|
|
|
|
'-XX:SurvivorRatio=32',
|
|
|
|
'-XX:+PerfDisableSharedMem',
|
|
|
|
'-XX:MaxTenuringThreshold=1',*/
|
2020-05-25 18:43:49 +02:00
|
|
|
'--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED',
|
|
|
|
'--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED',
|
|
|
|
'--add-opens=java.base/java.nio=ALL-UNNAMED'
|
|
|
|
]
|
|
|
|
systemProperty 'java.util.logging.manager', 'org.apache.logging.log4j.jul.LogManager'
|
|
|
|
systemProperty 'jna.debug_load', 'true'
|
|
|
|
systemProperty 'path.home', "${project.buildDir}/"
|
|
|
|
failFast = true
|
|
|
|
testLogging {
|
|
|
|
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
|
|
|
|
}
|
|
|
|
afterSuite { desc, result ->
|
|
|
|
if (!desc.parent) {
|
|
|
|
println "\nTest result: ${result.resultType}"
|
|
|
|
println "Test summary: ${result.testCount} tests, " +
|
|
|
|
"${result.successfulTestCount} succeeded, " +
|
|
|
|
"${result.failedTestCount} failed, " +
|
|
|
|
"${result.skippedTestCount} skipped"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|