我正在使用JunitReport任务,使用maven生成HTML格式的junit报告。
我在pom.xml中添加了以下项目以生成HTML
中的测试报告<plugin>
<!-- Extended Maven antrun plugin -->
<!-- https://maven-antrun-extended-plugin.dev.java.net/ -->
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<executions>
<execution>
<id>test-reports</id>
<phase>test</phase>
<configuration>
<tasks>
<junitreport todir="target/surefire-reports">
<fileset dir="target/surefire-reports">
<include name="**/*.xml" />
</fileset>
<report format="noframes" todir="target/surefire-reports" />
</junitreport>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-trax</artifactId>
<version>1.8.0</version>
</dependency>
</dependencies>
</plugin>
html报告名称总是显示为junit-noframes.html。因为我生成了更多的html报告,所以每个html报告都以相同的名称生成junit-noframes.html。我想给自定义html报告名称。
如何更改html报告名称?
文档说:
noframes格式不使用重定向,生成一个名为junit-noframes.html的文件。
并没有提供解决方法。但是,您可以像使用ANT一样使用参数,因此可以使用以下命令:
<report format="noframes" todir="${report.location}" />
有几种设置参数的方法,可以从命令行、环境变量或build.properties
文件。
在我看来,这个元素不允许您更改XSLT转换的输出文件名,但是,如果您可以编写自定义XSLT样式表并使用扩展函数,或者如果您可以配置ANT使用XSLT 2.0处理器并使用xsl:result-document
,则可以强制使用输出文件名。但是,要解决这个问题似乎很麻烦。
如果在您的情况下将它们放在不同的目录中就足够了,那么这是一个简单的方法。
Suntaragali Qa提出的另一个解决方案是,您可以通过将文件移动到带有时间戳的新名称来解决这个问题。
添加:
<tstamp>
<format property="timestamp" pattern="yyyyMMddHHmmss" />
</tstamp>
然后改成
<junitreport todir="target/surefire-reports">
<fileset dir="target/surefire-reports">
<include name="**/*.xml" />
</fileset>
<report
format="noframes"
todir="target/surefire-reports/html"
styledir="target/surefire-reports" />
</junitreport>
<move
file="target/surefire-reports/html/junit-noframes.html"
tofile="target/surefire-reports/html/junit-report-${timestamp}.html" />
我认为第二个解决方案更容易实现,并且使用标准的ANT语法。