mirror of https://github.com/apache/lucene.git
231 lines
8.9 KiB
Groovy
231 lines
8.9 KiB
Groovy
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You 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 org.apache.tools.ant.taskdefs.condition.Os
|
|
import org.apache.tools.ant.types.Commandline
|
|
import org.gradle.api.tasks.testing.logging.*
|
|
|
|
def resources = scriptResources(buildscript)
|
|
def verboseModeHookInstalled = false
|
|
|
|
allprojects {
|
|
plugins.withType(JavaPlugin) {
|
|
project.ext {
|
|
// This array will collect all test options, including default values and option description.
|
|
// The actual values of these properties (defaults, project properties) are resolved lazily after evaluation
|
|
// completes.
|
|
// [propName: 'tests.foo', value: "bar", description: "Sets foo in tests."],
|
|
testOptions = [
|
|
// asserts, debug output.
|
|
[propName: 'tests.verbose', value: false, description: "Enables verbose mode (emits full test outputs immediately)."],
|
|
[propName: 'tests.workDir',
|
|
value: { -> project.relativePath(file("${buildDir}/tmp/tests-tmp")) },
|
|
description: "Working directory for forked test JVMs",
|
|
includeInReproLine: false
|
|
],
|
|
// JVM settings
|
|
[propName: 'tests.minheapsize', value: "256m", description: "Minimum heap size for test JVMs"],
|
|
[propName: 'tests.heapsize', value: "512m", description: "Heap size for test JVMs"],
|
|
// Test forks
|
|
[propName: 'tests.jvms',
|
|
value: { -> ((int) Math.max(1, Math.min(Runtime.runtime.availableProcessors() / 2.0, 4.0))) },
|
|
description: "Number of forked test JVMs"],
|
|
[propName: 'tests.haltonfailure',
|
|
value: true,
|
|
description: "Halt processing on test failure.",
|
|
includeInReproLine: false
|
|
],
|
|
[propName: 'tests.jvmargs',
|
|
value: { -> envOrDefault("TEST_JVM_ARGS", (isCIBuild || testsDefaultVectorizationRequested()) ? "" : "-XX:TieredStopAtLevel=1 -XX:+UseParallelGC -XX:ActiveProcessorCount=1") },
|
|
description: "Arguments passed to each forked JVM."],
|
|
// Other settings.
|
|
[propName: 'tests.neverUpToDate', value: true,
|
|
description: "Make test tasks always fail the up-to-date checks (rerun) even if the inputs have not changed."],
|
|
]
|
|
|
|
// Resolves test option's value.
|
|
resolvedTestOption = { propName ->
|
|
def option = testOptions.find { entry -> entry.propName == propName }
|
|
if (option == null) {
|
|
throw new GradleException("No such test option: " + propName)
|
|
}
|
|
return propertyOrDefault(option.propName, option.value)
|
|
}
|
|
|
|
testsDefaultVectorizationRequested = { -> Boolean.parseBoolean(resolvedTestOption('tests.defaultvectorization') as String) }
|
|
|
|
testsCwd = file("${buildDir}/tmp/tests-cwd")
|
|
testsTmpDir = file(resolvedTestOption("tests.workDir"))
|
|
|
|
commonDir = project(":lucene").projectDir
|
|
}
|
|
|
|
def verboseMode = resolvedTestOption("tests.verbose").toBoolean()
|
|
|
|
// If we're running in verbose mode and:
|
|
// 1) worker count > 1
|
|
// 2) number of 'test' tasks in the build is > 1
|
|
// then the output would very likely be mangled on the
|
|
// console. Fail and let the user know what to do.
|
|
if (verboseMode && !verboseModeHookInstalled) {
|
|
verboseModeHookInstalled = true
|
|
if (gradle.startParameter.maxWorkerCount > 1) {
|
|
gradle.taskGraph.whenReady { graph ->
|
|
def testTasks = graph.allTasks.findAll { task -> task instanceof Test }
|
|
if (testTasks.size() > 1) {
|
|
throw new GradleException("Run your tests in verbose mode only with --max-workers=1 option passed to gradle.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
ext {
|
|
testOutputsDir = file("${reports.junitXml.outputLocation.get()}/outputs")
|
|
}
|
|
|
|
// LUCENE-9660: Make it possible to always rerun tests, even if they're incrementally up-to-date.
|
|
if (resolvedTestOption("tests.neverUpToDate").toBoolean()) {
|
|
outputs.upToDateWhen { false }
|
|
}
|
|
|
|
maxParallelForks = resolvedTestOption("tests.jvms") as Integer
|
|
if (verboseMode && maxParallelForks != 1) {
|
|
logger.lifecycle("tests.jvm forced to 1 in verbose mode.")
|
|
maxParallelForks = 1
|
|
}
|
|
|
|
workingDir testsCwd
|
|
useJUnit()
|
|
|
|
minHeapSize = resolvedTestOption("tests.minheapsize")
|
|
maxHeapSize = resolvedTestOption("tests.heapsize")
|
|
|
|
ignoreFailures = resolvedTestOption("tests.haltonfailure").toBoolean() == false
|
|
|
|
// Up to JDK-15 we have to enforce --illegal-access=deny, because we want no code to access
|
|
// JDK internals; JDK-16 and later will default to deny, see https://openjdk.java.net/jeps/396:
|
|
if (rootProject.runtimeJavaVersion < JavaVersion.VERSION_16) {
|
|
jvmArgs '--illegal-access=deny'
|
|
}
|
|
|
|
// Lucene needs to optional modules at runtime, which we want to enforce for testing
|
|
// (if the runner JVM does not support them, it will fail tests):
|
|
jvmArgs '--add-modules', 'jdk.management'
|
|
|
|
// Enable the vector incubator module on supported Java versions:
|
|
if (rootProject.vectorIncubatorJavaVersions.contains(rootProject.runtimeJavaVersion)) {
|
|
jvmArgs '--add-modules', 'jdk.incubator.vector'
|
|
}
|
|
|
|
jvmArgs '--enable-native-access=' + (project.path in [
|
|
':lucene:core',
|
|
':lucene:codecs',
|
|
":lucene:distribution.tests",
|
|
":lucene:test-framework"
|
|
] ? 'ALL-UNNAMED' : 'org.apache.lucene.core')
|
|
|
|
def loggingConfigFile = layout.projectDirectory.file("${resources}/logging.properties")
|
|
def tempDir = layout.projectDirectory.dir(testsTmpDir.toString())
|
|
jvmArgumentProviders.add(
|
|
new LoggingFileArgumentProvider(
|
|
loggingConfigFile: loggingConfigFile,
|
|
tempDir: tempDir
|
|
)
|
|
)
|
|
|
|
systemProperty 'java.awt.headless', 'true'
|
|
systemProperty 'jdk.map.althashing.threshold', '0'
|
|
|
|
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
systemProperty 'java.security.egd', 'file:/dev/./urandom'
|
|
}
|
|
|
|
// jetty-related.
|
|
systemProperty 'jetty.testMode', '1'
|
|
systemProperty 'jetty.insecurerandom', '1'
|
|
|
|
// Turn jenkins blood red for hashmap bugs, even on jdk7
|
|
systemProperty 'jdk.map.althashing.threshold', '0'
|
|
|
|
// Pass these to RandomizedRunner so that it doesn't attempt to set them.
|
|
systemProperty 'junit4.childvm.count', '1'
|
|
systemProperty 'junit4.childvm.id', '0'
|
|
|
|
// Set up cwd and temp locations.
|
|
systemProperty("java.io.tmpdir", testsTmpDir)
|
|
doFirst {
|
|
testsCwd.mkdirs()
|
|
testsTmpDir.mkdirs()
|
|
}
|
|
|
|
// Disable HTML report generation. The reports are big and slow to generate.
|
|
reports.html.required = false
|
|
|
|
// Set up logging.
|
|
testLogging {
|
|
events TestLogEvent.FAILED
|
|
exceptionFormat TestExceptionFormat.FULL
|
|
showExceptions true
|
|
showCauses true
|
|
showStackTraces true
|
|
stackTraceFilters.clear()
|
|
showStandardStreams false
|
|
}
|
|
|
|
// Disable automatic test class detection, rely on class names only. This is needed for testing
|
|
// against JDKs where the bytecode is unparseable by Gradle, for example.
|
|
// We require all tests to start with Test*, this simplifies include patterns greatly.
|
|
scanForTestClasses = false
|
|
include '**/Test*.class'
|
|
exclude '**/*$*'
|
|
|
|
// Set up custom test output handler.
|
|
doFirst {
|
|
project.delete testOutputsDir
|
|
}
|
|
|
|
def spillDir = getTemporaryDir().toPath()
|
|
def listener = buildinfra.newErrorReportingTestListener(test.testLogging, spillDir, testOutputsDir.toPath(), verboseMode)
|
|
addTestOutputListener(listener)
|
|
addTestListener(listener)
|
|
|
|
doFirst {
|
|
// Print some diagnostics about locations used.
|
|
logger.info("Test folders for {}: cwd={}, tmp={}", project.path, testsCwd, testsTmpDir)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class LoggingFileArgumentProvider implements CommandLineArgumentProvider {
|
|
@InputFile
|
|
@PathSensitive(PathSensitivity.RELATIVE)
|
|
RegularFile loggingConfigFile
|
|
|
|
@Internal
|
|
Directory tempDir
|
|
|
|
@Override
|
|
Iterable<String> asArguments() {
|
|
[
|
|
"-Djava.util.logging.config.file=${loggingConfigFile.getAsFile()}",
|
|
"-DtempDir=${tempDir.getAsFile()}"
|
|
]
|
|
}
|
|
}
|