Mavenfail-safe
プラグインを使用して統合テストを実行するプロジェクトがあります。Maven + TestNG
フレームワークの組み合わせを使用しています。プロジェクトの目的のために、以前に TestNG のデフォルトのXML レポートを変更して、プロジェクトのニーズをカスタマイズしました。
上記の要件を、TestNG のインターフェイスを拡張するCustomReporterクラスに実装しました。IReporter
以前にsurefire
プラグインを使用してこれらのテスト メソッドを実行listener mechanism
し、surefire プラグインに を追加すると期待どおりに動作しました。
特定のプロジェクトのニーズのために、フェイルセーフ プラグインに移行する必要があります。そのため、POM ファイルを構成することで、test
フェーズの実行をバイパスしました。surefire
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
次に、以下のように POM ファイルにフェイルセーフ構成を追加しました。
<
plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12</version>
<executions>
<execution>
<id>fail-safe-myplug</id>
<phase>integration-test</phase>
<goals>
<goal>integration-test</goal>
</goals>
<configuration>
<skip>false</skip>
<properties>
<property>
<name>listener</name>
<value>com.CustomXmlReport</value>
</property>
</properties>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
この新しい POM では、failsafe
プラグインを使用した統合テストの呼び出しが失敗します。以下はログです。
Running com.myPack.AppTest
Configuring TestNG with: org.apache.maven.`surefire`.testng.conf.TestNGMapConfigurator@ab50cd
org.apache.maven.surefire.util.`SurefireReflectionException: java.lang.reflect.InvocationTargetException`; nested exception is java.lang.reflect.InvocationTargetException: null
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)
at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)
at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:103)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:74)
Caused by: java.lang.IncompatibleClassChangeError: Expected static method org.testng.reporters.XMLReporterConfig.getTimestampFormat()Ljava/lang/String;
at com.myPack.CustomSuiteResultWriter.getTestResultAttributes(CustomSuiteResultWriter.java:175)
at com.myPack.CustomSuiteResultWriter.addTestResult(CustomSuiteResultWriter.java:138)
at com.myPack.CustomSuiteResultWriter.addTestResults(CustomSuiteResultWriter.java:117)
at com.myPack.CustomSuiteResultWriter.writeAllToBuffer(CustomSuiteResultWriter.java:76)
at com.myPack.CustomSuiteResultWriter.writeSuiteResult(CustomSuiteResultWriter.java:56)
at com.myPack.CustomXmlReportGenerator.writeSuiteToBuffer(CustomXmlReportGenerator.java:102)
at com.myPack.CustomXmlReportGenerator.writeSuite(CustomXmlReportGenerator.java:65)
at com.myPack.CustomXmlReportGenerator.generateReport(CustomXmlReportGenerator.java:42)
at org.testng.TestNG.generateReports(TestNG.java:780)
at org.testng.TestNG.run(TestNG.java:766)
at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:76)
at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestNGDirectoryTestSuite.java:112)
at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:115)
... 9 more
failsafe
フェーズでプラグインを使用してintegration-test
いますが、例外が発生しています
org.apache.maven を使用して TestNG を構成します。surefire
.testng.conf.TestNGMapConfigurator@ab50cd org.apache.maven.surefire.util.`SurefireReflectionException
この問題を解決するには?
surefire
注 :プラグインを使用してテストを実行しようとすると、リスナー メカニズムは期待どおりに動作します。