UT =単体テストIT =統合テスト。すべての統合テストクラスに@Category(IntegrationTest.class)の注釈が付けられています
私の目標は:
mvn clean install
=>実行UTおよびITではない
mvn clean install
-DskipTests = true =>テストは実行されません
mvn clean deploy
=>実行UTおよびITではない
mvn clean test
=>実行UTおよびITではない
mvn clean verify
=>実行UTおよびIT
mvn clean integration-test
=> ITを実行し、UTは実行されません
mvn clean install deploy
=>実行UTおよびITではない
pomプロパティ:
<junit.version>4.12</junit.version>
<surefire-plugin.version>2.18.1</surefire-plugin.version>
<failsafe-plugin.version>2.18.1</failsafe-plugin.version>
コンパイラ:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
単体テスト:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<excludedGroups>com.xpto.IntegrationTest</excludedGroups>
</configuration>
</plugin>
統合テスト:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${failsafe-plugin.version}</version>
<configuration>
<groups>com.xpto.IntegrationTest</groups>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
</goals>
<configuration>
<includes>
<include>**/*.class</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
私の結果は次のとおりです。
mvn clean install
=> OK
mvn clean install
-DskipTests = true => OK
mvn clean deploy
=>実行UTおよびITではない
mvn clean test
=> OK
mvn clean verify
=> NOK ... UTのみが実行されますが、ITも実行する必要があります
mvn clean integration-test
=> NOK ... UTは実行され、実行されるべきではありません。ITは実行されませんが、実行する必要があります
mvn clean install deploy
=> OK
解決策は次のとおりです。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>${surefire.skip}</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
これにより、実行するものを制御できます。
実行中UT and IT's:
mvn clean verify
iTを実行していますが、UTは実行していません
mvn clean verify -Dsurefire.skip=true
実行中UTがITではありません:
mvn clean verify -DskipITs=true
プラグインの命名規則に従う必要があるため、作業が楽になります。
命名規則 maven-surefire-pluginの場合(ユニットテスト)。 命名規則 maven-failsafe-plugin(統合テスト)。