public class Test extends org.gradle.api.internal.ConventionTask implements JavaForkOptions, PatternFilterable, VerificationTask
An example with a blend of various settings
apply plugin: 'java' //so that 'test' task is added
test {
//configuring a system property for tests
systemProperty 'some.prop', 'value'
//tuning the included/excluded tests
include 'org/foo/**'
exclude 'org/boo/**'
//makes the standard streams (err and out) visible at console when running tests
testLogging.showStandardStreams = true
//tweaking memory settings for the forked vm that runs tests
jvmArgs '-Xms128m', '-Xmx512m', '-XX:MaxPermSize=128m'
//listening to test execution events
beforeTest { descriptor ->
logger.lifecycle("Running test: " + descriptor)
}
onOutput { descriptor, event ->
logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message )
}
}
Task.NamerTASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE| Constructor and Description |
|---|
Test() |
| Modifier and Type | Method and Description |
|---|---|
void |
addTestListener(TestListener listener)
Registers a test listener with this task.
|
void |
addTestOutputListener(TestOutputListener listener)
Registers a output listener with this task.
|
void |
afterSuite(Closure closure)
Adds a closure to be notified after a test suite has executed.
|
void |
afterTest(Closure closure)
Adds a closure to be notified after a test has executed.
|
void |
beforeSuite(Closure closure)
Adds a closure to be notified before a test suite is executed.
|
void |
beforeTest(Closure closure)
Adds a closure to be notified before a test is executed.
|
Test |
bootstrapClasspath(Object... classpath)
Adds the given values to the end of the bootstrap classpath for the process.
|
Test |
copyTo(JavaForkOptions target)
Copies these options to the given options.
|
Test |
copyTo(ProcessForkOptions target)
Copies these options to the given target options.
|
void |
disableTestReport() |
void |
enableTestReport() |
Test |
environment(Map<String,?> environmentVariables)
Adds some environment variables to the environment for this process.
|
Test |
environment(String name,
Object value)
Adds an environment variable to the environment for this process.
|
Test |
exclude(Closure excludeSpec)
Adds an exclude spec.
|
Test |
exclude(Iterable<String> excludes)
Adds exclude patterns for the files in the test classes directory (e.g.
|
Test |
exclude(Spec<FileTreeElement> excludeSpec)
Adds an exclude spec.
|
Test |
exclude(String... excludes)
Adds exclude patterns for the files in the test classes directory (e.g.
|
Test |
executable(Object executable)
Sets the name of the executable to use.
|
void |
executeTests() |
List<String> |
getAllJvmArgs()
Returns the full set of arguments to use to launch the JVM for the process.
|
FileCollection |
getBootstrapClasspath()
Returns the bootstrap classpath to use for the process.
|
FileTree |
getCandidateClassFiles()
Returns the classes files to scan for test classes.
|
FileCollection |
getClasspath()
Returns the classpath to use to execute the tests.
|
boolean |
getDebug()
Returns true if debugging is enabled for the process.
|
String |
getDefaultCharacterEncoding()
Returns the default character encoding to use.
|
boolean |
getEnableAssertions()
Returns true if assertions are enabled for the process.
|
Map<String,Object> |
getEnvironment()
The environment variables to use for the process.
|
Set<String> |
getExcludes()
Returns the exclude patterns for test execution.
|
String |
getExecutable()
Returns the name of the executable to use.
|
long |
getForkEvery()
Returns the maximum number of test classes to execute in a forked test process.
|
boolean |
getIgnoreFailures()
Specifies whether the build should break when the verifications performed by this task fail.
|
Set<String> |
getIncludes()
Returns the include patterns for test execution.
|
List<String> |
getJvmArgs()
Returns the extra arguments to use to launch the JVM for the process.
|
String |
getMaxHeapSize()
Returns the maximum heap size for the process, if any.
|
int |
getMaxParallelForks()
Returns the maximum number of forked test processes to execute in parallel.
|
String |
getMinHeapSize()
Returns the minimum heap size for the process, if any.
|
TestFrameworkOptions |
getOptions()
Returns the test options options.
|
Map<String,Object> |
getSystemProperties()
Returns the system properties which will be used for the process.
|
File |
getTestClassesDir()
Returns the root folder for the compiled test sources.
|
org.gradle.api.internal.tasks.testing.TestFramework |
getTestFramework() |
TestLogging |
getTestLogging()
Allows configuring the logging of the test execution, for example log eagerly the standard output, etc.
|
File |
getTestReportDir()
Returns the root folder for the test reports.
|
File |
getTestResultsDir()
Returns the root folder for the test results.
|
List<File> |
getTestSrcDirs()
Returns the directories containing the test source.
|
File |
getWorkingDir()
Returns the working directory for the process.
|
Test |
include(Closure includeSpec)
Adds an include spec.
|
Test |
include(Iterable<String> includes)
Adds include patterns for the files in the test classes directory (e.g.
|
Test |
include(Spec<FileTreeElement> includeSpec)
Adds an include spec.
|
Test |
include(String... includes)
Adds include patterns for the files in the test classes directory (e.g.
|
boolean |
isScanForTestClasses()
Specifies whether test classes should be detected.
|
boolean |
isTestReport()
Specifies whether the test report should be generated.
|
Test |
jvmArgs(Iterable<?> arguments)
Adds some arguments to use to launch the JVM for the process.
|
Test |
jvmArgs(Object... arguments)
Adds some arguments to use to launch the JVM for the process.
|
void |
onOutput(Closure closure)
Adds a closure to be notified when output from the test received.
|
TestFrameworkOptions |
options(Closure testFrameworkConfigure) |
void |
removeTestListener(TestListener listener)
Unregisters a test listener with this task.
|
void |
removeTestOutputListener(TestOutputListener listener)
Unregisters a test output listener with this task.
|
void |
setAllJvmArgs(Iterable<?> arguments)
Sets the full set of arguments to use to launch the JVM for the process.
|
void |
setBootstrapClasspath(FileCollection classpath)
Sets the bootstrap classpath to use for the process.
|
void |
setClasspath(FileCollection classpath) |
void |
setDebug(boolean enabled)
Enable or disable debugging for the process.
|
void |
setDefaultCharacterEncoding(String defaultCharacterEncoding)
Sets the default character encoding to use.
|
void |
setEnableAssertions(boolean enabled)
Enable or disable assertions for the process.
|
void |
setEnvironment(Map<String,?> environmentVariables)
Sets the environment variable to use for the process.
|
Test |
setExcludes(Iterable<String> excludes)
Sets the exclude patterns for test execution.
|
void |
setExecutable(Object executable)
Sets the name of the executable to use.
|
void |
setForkEvery(Long forkEvery)
Sets the maximum number of test classes to execute in a forked test process.
|
void |
setIgnoreFailures(boolean ignoreFailures)
Specifies whether the build should break when the verifications performed by this task fail.
|
Test |
setIncludes(Iterable<String> includes)
Sets the include patterns for test execution.
|
void |
setJvmArgs(Iterable<?> arguments)
Sets the extra arguments to use to launch the JVM for the process.
|
void |
setMaxHeapSize(String heapSize)
Sets the maximum heap size for the process.
|
void |
setMaxParallelForks(int maxParallelForks)
Sets the maximum number of forked test processes to execute in parallel.
|
void |
setMinHeapSize(String heapSize)
Sets the minimum heap size for the process.
|
void |
setScanForTestClasses(boolean scanForTestClasses) |
void |
setSystemProperties(Map<String,?> properties)
Sets the system properties to use for the process.
|
void |
setTestClassesDir(File testClassesDir)
Sets the root folder for the compiled test sources.
|
void |
setTestReport(boolean testReport) |
void |
setTestReportDir(File testReportDir)
Sets the root folder for the test reports.
|
void |
setTestResultsDir(File testResultsDir)
Sets the root folder for the test results.
|
void |
setTestSrcDirs(List<File> testSrcDir) |
void |
setWorkingDir(Object dir)
Sets the working directory for the process.
|
Test |
systemProperties(Map<String,?> properties)
Adds some system properties to use for the process.
|
Test |
systemProperty(String name,
Object value)
Adds a system property to use for the process.
|
org.gradle.api.internal.tasks.testing.TestFramework |
testFramework(Closure testFrameworkConfigure) |
void |
testLogging(Closure closure)
Allows configuring the logging of the test execution, for example log eagerly the standard output, etc.
|
void |
useJUnit()
Specifies that JUnit should be used to execute the tests.
|
void |
useJUnit(Closure testFrameworkConfigure)
Specifies that JUnit should be used to execute the tests.
|
void |
useTestNG()
Specifies that TestNG should be used to execute the tests.
|
void |
useTestNG(Closure testFrameworkConfigure)
Specifies that TestNG should be used to execute the tests.
|
Test |
workingDir(Object dir)
Sets the working directory for the process.
|
conventionMapping, conventionMapping, getConventionMappingaddValidator, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doLast, doLast, execute, executeWithoutThrowingTaskFailure, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getDynamicObjectHelper, getEnabled, getExecuter, getExtensions, getGroup, getInputs, getLogger, getLogging, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getStandardOutputCapture, getState, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setGroup, setName, setOnlyIf, setOnlyIf, setProject, setProperty, toStringpublic File getWorkingDir()
getWorkingDir in interface ProcessForkOptionspublic void setWorkingDir(Object dir)
Project.file(Object).setWorkingDir in interface ProcessForkOptionsdir - The working directory. Must not be null.public Test workingDir(Object dir)
Project.file(Object).workingDir in interface ProcessForkOptionsdir - The working directory. Must not be null.public String getExecutable()
getExecutable in interface ProcessForkOptionspublic Test executable(Object executable)
executable in interface ProcessForkOptionsexecutable - The executable. Must not be null.public void setExecutable(Object executable)
setExecutable in interface ProcessForkOptionsexecutable - The executable. Must not be null.public Map<String,Object> getSystemProperties()
getSystemProperties in interface JavaForkOptionspublic void setSystemProperties(Map<String,?> properties)
setSystemProperties in interface JavaForkOptionsproperties - The system properties. Must not be null.public Test systemProperties(Map<String,?> properties)
systemProperties in interface JavaForkOptionsproperties - The system properties. Must not be null.public Test systemProperty(String name, Object value)
systemProperty in interface JavaForkOptionsname - The name of the propertyvalue - The value for the property. May be null.public FileCollection getBootstrapClasspath()
getBootstrapClasspath in interface JavaForkOptionspublic void setBootstrapClasspath(FileCollection classpath)
setBootstrapClasspath in interface JavaForkOptionsclasspath - The classpath. Must not be null. Can be empty.public Test bootstrapClasspath(Object... classpath)
bootstrapClasspath in interface JavaForkOptionsclasspath - The classpath.public String getMinHeapSize()
getMinHeapSize in interface JavaForkOptionspublic String getDefaultCharacterEncoding()
getDefaultCharacterEncoding in interface JavaForkOptionsdefault character encoding of this JVM should be used.public void setDefaultCharacterEncoding(String defaultCharacterEncoding)
file.encoding property). For JVMs
where this is the case, setting the file.encoding property via JavaForkOptions.setSystemProperties(java.util.Map) or similar will have no effect as
this value will be overridden by the value specified by JavaForkOptions.getDefaultCharacterEncoding().setDefaultCharacterEncoding in interface JavaForkOptionsdefaultCharacterEncoding - The default character encoding. Use null to use this JVM's default charsetpublic void setMinHeapSize(String heapSize)
setMinHeapSize in interface JavaForkOptionsheapSize - The minimum heap size. Use null for the default minimum heap size.public String getMaxHeapSize()
getMaxHeapSize in interface JavaForkOptionspublic void setMaxHeapSize(String heapSize)
setMaxHeapSize in interface JavaForkOptionsheapSize - The heap size. Use null for the default maximum heap size.public List<String> getJvmArgs()
getJvmArgs in interface JavaForkOptionspublic void setJvmArgs(Iterable<?> arguments)
setJvmArgs in interface JavaForkOptionsarguments - The arguments. Must not be null.public Test jvmArgs(Iterable<?> arguments)
jvmArgs in interface JavaForkOptionsarguments - The arguments. Must not be null.public Test jvmArgs(Object... arguments)
jvmArgs in interface JavaForkOptionsarguments - The arguments.public boolean getEnableAssertions()
getEnableAssertions in interface JavaForkOptionspublic void setEnableAssertions(boolean enabled)
setEnableAssertions in interface JavaForkOptionsenabled - true to enable assertions, false to disable.public boolean getDebug()
getDebug in interface JavaForkOptionspublic void setDebug(boolean enabled)
setDebug in interface JavaForkOptionsenabled - true to enable debugging, false to disable.public List<String> getAllJvmArgs()
getAllJvmArgs in interface JavaForkOptionspublic void setAllJvmArgs(Iterable<?> arguments)
setAllJvmArgs in interface JavaForkOptionsarguments - The arguments. Must not be null.public Map<String,Object> getEnvironment()
getEnvironment in interface ProcessForkOptionspublic Test environment(Map<String,?> environmentVariables)
environment in interface ProcessForkOptionsenvironmentVariables - The environment variables. Must not be null.public Test environment(String name, Object value)
environment in interface ProcessForkOptionsname - The name of the variable.value - The value for the variable. Must not be null.public void setEnvironment(Map<String,?> environmentVariables)
setEnvironment in interface ProcessForkOptionsenvironmentVariables - The environment variables. Must not be null.public Test copyTo(ProcessForkOptions target)
copyTo in interface ProcessForkOptionstarget - The target optionspublic Test copyTo(JavaForkOptions target)
copyTo in interface JavaForkOptionstarget - The target options.public void executeTests()
public void addTestListener(TestListener listener)
beforeTest(groovy.lang.Closure), afterTest(groovy.lang.Closure),
beforeSuite(groovy.lang.Closure), afterSuite(groovy.lang.Closure)
This listener will NOT be notified of tests executed by other tasks.
To get that behavior, use Gradle.addListener(Object).
listener - The listener to add.public void addTestOutputListener(TestOutputListener listener)
onOutput(groovy.lang.Closure) method.listener - The listener to add.public void removeTestListener(TestListener listener)
addTestListener(org.gradle.api.tasks.testing.TestListener) on this task. If the listener was registered
with Gradle using Gradle.addListener(Object) this method will not do anything.
Instead, use Gradle.removeListener(Object).listener - The listener to remove.public void removeTestOutputListener(TestOutputListener listener)
addTestOutputListener(org.gradle.api.tasks.testing.TestOutputListener) on this task. If the listener was registered
with Gradle using Gradle.addListener(Object) this method will not do anything.
Instead, use Gradle.removeListener(Object).listener - The listener to remove.public void beforeSuite(Closure closure)
Adds a closure to be notified before a test suite is executed. A TestDescriptor
instance is passed to the closure as a parameter.
This method is also called before any test suites are executed. The provided descriptor will have a null parent suite.
closure - The closure to call.public void afterSuite(Closure closure)
Adds a closure to be notified after a test suite has executed. A TestDescriptor
and TestResult instance are passed to the closure as a parameter.
This method is also called after all test suites are executed. The provided descriptor will have a null parent suite.
closure - The closure to call.public void beforeTest(Closure closure)
TestDescriptor
instance is passed to the closure as a parameter.closure - The closure to call.public void afterTest(Closure closure)
TestDescriptor
and TestResult instance are passed to the closure as a parameter.closure - The closure to call.public void onOutput(Closure closure)
TestDescriptor
and TestOutputEvent instance are passed to the closure as a parameter.
apply plugin: 'java'
test {
onOutput { descriptor, event ->
if (event.destination == TestOutputEvent.Destination.StdErr) {
logger.error("Test: " + descriptor + ", error: " + event.message)
}
}
}
closure - The closure to call.public Test include(String... includes)
include in interface PatternFilterableincludes - a vararg list of include patternssetIncludes(Iterable)public Test include(Iterable<String> includes)
include in interface PatternFilterableincludes - a Iterable providing more include patternssetIncludes(Iterable)public Test include(Spec<FileTreeElement> includeSpec)
include in interface PatternFilterableincludeSpec - the spec to addPattern Formatpublic Test include(Closure includeSpec)
FileTreeElement as its parameter.
If includes are not provided, then all files in this container will be included. If includes are provided, then a
file must match at least one of the include patterns or specs to be included.include in interface PatternFilterableincludeSpec - the spec to addPattern Formatpublic Test exclude(String... excludes)
exclude in interface PatternFilterableexcludes - a vararg list of exclude patternssetExcludes(Iterable)public Test exclude(Iterable<String> excludes)
exclude in interface PatternFilterableexcludes - a Iterable providing new exclude patternssetExcludes(Iterable)public Test exclude(Spec<FileTreeElement> excludeSpec)
exclude in interface PatternFilterableexcludeSpec - the spec to addPattern Formatpublic Test exclude(Closure excludeSpec)
FileTreeElement as its parameter.
If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match
any exclude pattern to be processed.exclude in interface PatternFilterableexcludeSpec - the spec to addPattern Formatpublic File getTestClassesDir()
public void setTestClassesDir(File testClassesDir)
testClassesDir - The root folderpublic File getTestResultsDir()
public void setTestResultsDir(File testResultsDir)
testResultsDir - The root folderpublic File getTestReportDir()
public void setTestReportDir(File testReportDir)
testReportDir - The root folderpublic Set<String> getIncludes()
getIncludes in interface PatternFilterableinclude(String...)public Test setIncludes(Iterable<String> includes)
setIncludes in interface PatternFilterableincludes - The patterns listinclude(String...)public Set<String> getExcludes()
getExcludes in interface PatternFilterableexclude(String...)public Test setExcludes(Iterable<String> excludes)
setExcludes in interface PatternFilterableexcludes - The patterns listexclude(String...)public boolean getIgnoreFailures()
getIgnoreFailures in interface VerificationTaskpublic void setIgnoreFailures(boolean ignoreFailures)
setIgnoreFailures in interface VerificationTaskignoreFailures - false to break the build on failure, true to ignore the failures. The default is false.public org.gradle.api.internal.tasks.testing.TestFramework getTestFramework()
public org.gradle.api.internal.tasks.testing.TestFramework testFramework(Closure testFrameworkConfigure)
public TestFrameworkOptions getOptions()
Returns the test options options.
Be sure to call the appropriate useJUnit() or useTestNG() method before using this method.
public TestFrameworkOptions options(Closure testFrameworkConfigure)
public void useJUnit()
public void useJUnit(Closure testFrameworkConfigure)
testFrameworkConfigure - A closure used to configure the JUnit options. This closure is passed an instance
of type JUnitOptions.public void useTestNG()
public void useTestNG(Closure testFrameworkConfigure)
testFrameworkConfigure - A closure used to configure the TestNG options. This closure is passed an instance
of type TestNGOptions.public FileCollection getClasspath()
public void setClasspath(FileCollection classpath)
public boolean isTestReport()
public void setTestReport(boolean testReport)
public void enableTestReport()
public void disableTestReport()
public List<File> getTestSrcDirs()
public boolean isScanForTestClasses()
true the classes which match the include and
exclude patterns are scanned for test classes, and any found are executed. When false the classes which
match the include and exclude patterns are executed.public void setScanForTestClasses(boolean scanForTestClasses)
public long getForkEvery()
public void setForkEvery(Long forkEvery)
forkEvery - The maximum number of test classes. Use null or 0 to specify no maximum.public int getMaxParallelForks()
public void setMaxParallelForks(int maxParallelForks)
maxParallelForks - The maximum number of forked test processes.public FileTree getCandidateClassFiles()
public TestLogging getTestLogging()
apply plugin: 'java' //makes the standard streams (err and out) visible at console when running tests test.testLogging.showStandardStreams = true
public void testLogging(Closure closure)
apply plugin: 'java'
//makes the standard streams (err and out) visible at console when running tests
test.testLogging {
showStandardStreams = true
}
closure - configure closure