All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.surefire.SurefirePlugin Maven / Gradle / Ivy

package org.apache.maven.plugin.surefire;

/*
 * 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 java.io.File;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.surefire.suite.RunResult;

/**
 * Run tests using Surefire.
 *
 * @author Jason van Zyl
 * @noinspection JavaDoc
 */
@Mojo( name = "test", defaultPhase = LifecyclePhase.TEST, threadSafe = true,
       requiresDependencyResolution = ResolutionScope.TEST )
public class SurefirePlugin
    extends AbstractSurefireMojo
    implements SurefireReportParameters
{

    /**
     * The directory containing generated classes of the project being tested. This will be included after the test
     * classes in the test classpath.
     */
    @Parameter( defaultValue = "${project.build.outputDirectory}" )
    private File classesDirectory;

    /**
     * Set this to "true" to ignore a failure during testing. Its use is NOT RECOMMENDED, but quite convenient on
     * occasion.
     */
    @Parameter( property = "maven.test.failure.ignore", defaultValue = "false" )
    private boolean testFailureIgnore;

    /**
     * Base directory where all reports are written to.
     */
    @Parameter( defaultValue = "${project.build.directory}/surefire-reports" )
    private File reportsDirectory;

    /**
     * Specify this parameter to run individual tests by file name, overriding the includes/excludes
     * parameters. Each pattern you specify here will be used to create an include pattern formatted like
     * **/${test}.java, so you can just type "-Dtest=MyTest" to run a single test called
     * "foo/MyTest.java". The test patterns prefixed with a ! will be excluded.
* This parameter overrides the includes/excludes parameters, and the TestNG suiteXmlFiles * parameter. *

* Since 2.7.3, you can execute a limited number of methods in the test by adding #myMethod or #my*ethod. For * example, "-Dtest=MyTest#myMethod". This is supported for junit 4.x and testNg.
*
* Since 2.19 a complex syntax is supported in one parameter (JUnit 4, JUnit 4.7+, TestNG):
* "-Dtest=???Test, !Unstable*, pkg/**/Ci*leTest.java, *Test#test*One+testTwo?????, #fast*+slowTest"
* "-Dtest=Basic*, !%regex[.*.Unstable.*], !%regex[.*.MyTest.class#one.*|two.*], %regex[#fast.*|slow.*]"
*
* The Parameterized JUnit runner describes test methods using an index in brackets, so the non-regex * method pattern would become: #testMethod[*]. If using @Parameters(name="{index}: fib({0})={1}") * and selecting the index e.g. 5 in pattern, the non-regex method pattern would become #testMethod[5:*]. *
*/ @Parameter( property = "test" ) private String test; /** * Option to print summary of test suites or just print the test cases that have errors. */ @Parameter( property = "surefire.printSummary", defaultValue = "true" ) private boolean printSummary; /** * Selects the formatting for the test report to be generated. Can be set as "brief" or "plain". * Only applies to the output format of the output files (target/surefire-reports/testName.txt) */ @Parameter( property = "surefire.reportFormat", defaultValue = "brief" ) private String reportFormat; /** * Option to generate a file test report or just output the test report to the console. */ @Parameter( property = "surefire.useFile", defaultValue = "true" ) private boolean useFile; /** * Set this to "true" to cause a failure if the none of the tests specified in -Dtest=... are run. Defaults to * "true". * * @since 2.12 */ @Parameter( property = "surefire.failIfNoSpecifiedTests" ) private Boolean failIfNoSpecifiedTests; /** * Attach a debugger to the forked JVM. If set to "true", the process will suspend and wait for a debugger to attach * on port 5005. If set to some other string, that string will be appended to the argLine, allowing you to configure * arbitrary debuggability options (without overwriting the other options specified through the argLine * parameter). * * @since 2.4 */ @Parameter( property = "maven.surefire.debug" ) private String debugForkedProcess; /** * Kill the forked test process after a certain number of seconds. If set to 0, wait forever for the process, never * timing out. * * @since 2.4 */ @Parameter( property = "surefire.timeout" ) private int forkedProcessTimeoutInSeconds; /** * Stop executing queued parallel JUnit tests after a certain number of seconds. *
* Example values: "3.5", "4"
*
* If set to 0, wait forever, never timing out. * Makes sense with specified parallel different from "none". * * @since 2.16 */ @Parameter( property = "surefire.parallel.timeout" ) private double parallelTestsTimeoutInSeconds; /** * Stop executing queued parallel JUnit tests * and interrupt currently running tests after a certain number of seconds. *
* Example values: "3.5", "4"
*
* If set to 0, wait forever, never timing out. * Makes sense with specified parallel different from "none". * * @since 2.16 */ @Parameter( property = "surefire.parallel.forcedTimeout" ) private double parallelTestsTimeoutForcedInSeconds; /** * A list of <include> elements specifying the tests (by pattern) that should be included in testing. When not * specified and when the test parameter is not specified, the default includes will be
* <includes>
*  <include>**/Test*.java</include>
*  <include>**/*Test.java</include>
*  <include>**/*TestCase.java</include>
* </includes>
*
*

* Each include item may also contain a comma-separated sublist of items, which will be treated as multiple *  <include> entries.
* Since 2.19 a complex syntax is supported in one parameter (JUnit 4, JUnit 4.7+, TestNG):
*  <include>%regex[.*[Cat|Dog].*], Basic????, !Unstable*</include>
*  <include>%regex[.*[Cat|Dog].*], !%regex[pkg.*Slow.*.class], pkg/**/*Fast*.java</include>
*

* This parameter is ignored if the TestNG suiteXmlFiles parameter is specified.
*
* Notice that these values are relative to the directory containing generated test classes of the project * being tested. This directory is declared by the parameter testClassesDirectory which defaults * to the POM property ${project.build.testOutputDirectory}, typically src/test/java * unless overridden. */ @Parameter private List includes; /** * Option to pass dependencies to the system's classloader instead of using an isolated class loader when forking. * Prevents problems with JDKs which implement the service provider lookup mechanism by using the system's * classloader. * * @since 2.3 */ @Parameter( property = "surefire.useSystemClassLoader", defaultValue = "true" ) private boolean useSystemClassLoader; /** * By default, Surefire forks your tests using a manifest-only JAR; set this parameter to "false" to force it to * launch your tests with a plain old Java classpath. (See the * * http://maven.apache.org/plugins/maven-surefire-plugin/examples/class-loading.html * for a more detailed explanation of manifest-only JARs and their benefits.) *
* Beware, setting this to "false" may cause your tests to fail on Windows if your classpath is too long. * * @since 2.4.3 */ @Parameter( property = "surefire.useManifestOnlyJar", defaultValue = "true" ) private boolean useManifestOnlyJar; /** * (JUnit 4+ providers) * The number of times each failing test will be rerun. If set larger than 0, rerun failing tests immediately after * they fail. If a failing test passes in any of those reruns, it will be marked as pass and reported as a "flake". * However, all the failing attempts will be recorded. */ @Parameter( property = "surefire.rerunFailingTestsCount", defaultValue = "0" ) private int rerunFailingTestsCount; /** * (TestNG) List of <suiteXmlFile> elements specifying TestNG suite xml file locations. Note that * suiteXmlFiles is incompatible with several other parameters of this plugin, like * includes/excludes.
* This parameter is ignored if the test parameter is specified (allowing you to run a single test * instead of an entire suite). * * @since 2.2 */ @Parameter( property = "surefire.suiteXmlFiles" ) private File[] suiteXmlFiles; /** * Defines the order the tests will be run in. Supported values are "alphabetical", "reversealphabetical", "random", * "hourly" (alphabetical on even hours, reverse alphabetical on odd hours), "failedfirst", "balanced" and * "filesystem". *
*
* Odd/Even for hourly is determined at the time the of scanning the classpath, meaning it could change during a * multi-module build. *
*
* Failed first will run tests that failed on previous run first, as well as new tests for this run. *
*
* Balanced is only relevant with parallel=classes, and will try to optimize the run-order of the tests reducing the * overall execution time. Initially a statistics file is created and every next test run will reorder classes. *
*
* Note that the statistics are stored in a file named .surefire-XXXXXXXXX beside pom.xml, and should not be checked * into version control. The "XXXXX" is the SHA1 checksum of the entire surefire configuration, so different * configurations will have different statistics files, meaning if you change any config settings you will re-run * once before new statistics data can be established. * * @since 2.7 */ @Parameter( property = "surefire.runOrder", defaultValue = "filesystem" ) private String runOrder; /** * A file containing include patterns. Blank lines, or lines starting with # are ignored. If {@code includes} are * also specified, these patterns are appended. Example with path, simple and regex includes:
* */test/*
* **/NotIncludedByDefault.java
* %regex[.*Test.*|.*Not.*]
*/ @Parameter( property = "surefire.includesFile" ) private File includesFile; /** * A file containing exclude patterns. Blank lines, or lines starting with # are ignored. If {@code excludes} are * also specified, these patterns are appended. Example with path, simple and regex excludes:
* */test/*
* **/DontRunTest.*
* %regex[.*Test.*|.*Not.*]
*/ @Parameter( property = "surefire.excludesFile" ) private File excludesFile; /** * Set to error/failure count in order to skip remaining tests. * Due to race conditions in parallel/forked execution this may not be fully guaranteed.
* Enable with system property -Dsurefire.skipAfterFailureCount=1 or any number greater than zero. * Defaults to "0".
* See the prerequisites and limitations in documentation:
* * http://maven.apache.org/plugins/maven-surefire-plugin/examples/skip-after-failure.html * * @since 2.19 */ @Parameter( property = "surefire.skipAfterFailureCount", defaultValue = "0" ) private int skipAfterFailureCount; /** * After the plugin process is shutdown by sending SIGTERM signal (CTRL+C), SHUTDOWN command is received by every * forked JVM. By default (shutdown=testset) forked JVM would not continue with new test which means that * the current test may still continue to run.
* The parameter can be configured with other two values "exit" and "kill".
* Using "exit" forked JVM executes System.exit(1) after the plugin process has received SIGTERM signal.
* Using "kill" the JVM executes Runtime.halt(1) and kills itself. * * @since 2.19 */ @Parameter( property = "surefire.shutdown", defaultValue = "testset" ) private String shutdown; protected int getRerunFailingTestsCount() { return rerunFailingTestsCount; } protected void handleSummary( RunResult summary, Exception firstForkException ) throws MojoExecutionException, MojoFailureException { assertNoException( firstForkException ); SurefireHelper.reportExecution( this, summary, getLog() ); } private void assertNoException( Exception firstForkException ) throws MojoFailureException { if ( firstForkException != null ) { throw new MojoFailureException( firstForkException.getMessage(), firstForkException ); } } protected boolean isSkipExecution() { return isSkip() || isSkipTests() || isSkipExec(); } protected String getPluginName() { return "surefire"; } protected String[] getDefaultIncludes() { return new String[]{ "**/Test*.java", "**/*Test.java", "**/*TestCase.java" }; } // now for the implementation of the field accessors public boolean isSkipTests() { return skipTests; } public void setSkipTests( boolean skipTests ) { this.skipTests = skipTests; } /** * @noinspection deprecation */ public boolean isSkipExec() { return skipExec; } /** * @noinspection deprecation */ public void setSkipExec( boolean skipExec ) { this.skipExec = skipExec; } public boolean isSkip() { return skip; } public void setSkip( boolean skip ) { this.skip = skip; } public boolean isTestFailureIgnore() { return testFailureIgnore; } public void setTestFailureIgnore( boolean testFailureIgnore ) { this.testFailureIgnore = testFailureIgnore; } public File getBasedir() { return basedir; } public void setBasedir( File basedir ) { this.basedir = basedir; } public File getTestClassesDirectory() { return testClassesDirectory; } public void setTestClassesDirectory( File testClassesDirectory ) { this.testClassesDirectory = testClassesDirectory; } public File getClassesDirectory() { return classesDirectory; } public void setClassesDirectory( File classesDirectory ) { this.classesDirectory = classesDirectory; } public File getReportsDirectory() { return reportsDirectory; } public void setReportsDirectory( File reportsDirectory ) { this.reportsDirectory = reportsDirectory; } public String getTest() { return test; } public boolean isUseSystemClassLoader() { return useSystemClassLoader; } public void setUseSystemClassLoader( boolean useSystemClassLoader ) { this.useSystemClassLoader = useSystemClassLoader; } public boolean isUseManifestOnlyJar() { return useManifestOnlyJar; } public void setUseManifestOnlyJar( boolean useManifestOnlyJar ) { this.useManifestOnlyJar = useManifestOnlyJar; } public Boolean getFailIfNoSpecifiedTests() { return failIfNoSpecifiedTests; } public void setFailIfNoSpecifiedTests( boolean failIfNoSpecifiedTests ) { this.failIfNoSpecifiedTests = failIfNoSpecifiedTests; } public int getSkipAfterFailureCount() { return skipAfterFailureCount; } public String getShutdown() { return shutdown; } public boolean isPrintSummary() { return printSummary; } public void setPrintSummary( boolean printSummary ) { this.printSummary = printSummary; } public String getReportFormat() { return reportFormat; } public void setReportFormat( String reportFormat ) { this.reportFormat = reportFormat; } public boolean isUseFile() { return useFile; } public void setUseFile( boolean useFile ) { this.useFile = useFile; } public String getDebugForkedProcess() { return debugForkedProcess; } public void setDebugForkedProcess( String debugForkedProcess ) { this.debugForkedProcess = debugForkedProcess; } public int getForkedProcessTimeoutInSeconds() { return forkedProcessTimeoutInSeconds; } public void setForkedProcessTimeoutInSeconds( int forkedProcessTimeoutInSeconds ) { this.forkedProcessTimeoutInSeconds = forkedProcessTimeoutInSeconds; } public double getParallelTestsTimeoutInSeconds() { return parallelTestsTimeoutInSeconds; } public void setParallelTestsTimeoutInSeconds( double parallelTestsTimeoutInSeconds ) { this.parallelTestsTimeoutInSeconds = parallelTestsTimeoutInSeconds; } public double getParallelTestsTimeoutForcedInSeconds() { return parallelTestsTimeoutForcedInSeconds; } public void setParallelTestsTimeoutForcedInSeconds( double parallelTestsTimeoutForcedInSeconds ) { this.parallelTestsTimeoutForcedInSeconds = parallelTestsTimeoutForcedInSeconds; } public void setTest( String test ) { this.test = test; } @Override public List getIncludes() { return includes; } @Override public void setIncludes( List includes ) { this.includes = includes; } public File[] getSuiteXmlFiles() { return suiteXmlFiles.clone(); } @SuppressWarnings( "UnusedDeclaration" ) public void setSuiteXmlFiles( File[] suiteXmlFiles ) { this.suiteXmlFiles = suiteXmlFiles.clone(); } public String getRunOrder() { return runOrder; } @SuppressWarnings( "UnusedDeclaration" ) public void setRunOrder( String runOrder ) { this.runOrder = runOrder; } @Override public File getIncludesFile() { return includesFile; } @Override public File getExcludesFile() { return excludesFile; } @Override protected final List suiteXmlFiles() { return hasSuiteXmlFiles() ? Arrays.asList( suiteXmlFiles ) : Collections.emptyList(); } @Override protected final boolean hasSuiteXmlFiles() { return suiteXmlFiles != null && suiteXmlFiles.length != 0; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy