0

是否可以在测试仍在执行时生成报告。通过平移

我的 pom.xml 看起来像这样

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">


    <modelVersion>4.0.0</modelVersion>


    <groupId>com.insurance.abc</groupId>
    <artifactId>insurance</artifactId>
    <version>1.0-SNAPSHOT</version>



    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>



    <dependencies>

        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-jbehave</artifactId>
            <version>1.13.0</version>
        </dependency>

        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-core</artifactId>
            <version>1.1.37-rc.6</version>
        </dependency>

    </dependencies>



    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>1.9.1</version>
                <!--<executions>
                    <execution>
                        <id>add-integration-test-source-as-test-sources</id>
                        <phase>generate-test-sources</phase>
                        <goals>
                            <goal>add-test-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>src/it/java</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>-->
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.18</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                   </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>net.serenity-bdd.maven.plugins</groupId>
                <artifactId>serenity-maven-plugin</artifactId>
                <version>1.1.37-rc.6</version>
                <dependencies>
                    <dependency>
                        <groupId>net.serenity-bdd</groupId>
                        <artifactId>serenity-core</artifactId>
                        <version>1.1.37-rc.6</version>
                    </dependency>
                </dependencies>
                 <executions>
                    <execution>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>aggregate</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

如果我设置<phase>post-integration-test</phase>为,<phase>pre-integration-test</phase>那么我的报告在测试之前生成,就是这样。报告中没有测试。你能帮我弄清楚为什么吗?

4

1 回答 1

0

您看到的行为的原因非常简单:在运行测试时,Jbehave 将每个测试的结果保存在target/jbehave/asstoryclass.htmlstoryclass.stats. 当报告生成运行时,它会使用这些文件来生成您的报告target/jbehave/reports。通过在运行测试之前尝试生成报告,您正在生成没有输入的报告。

关于如何达到您想要的结果,我认为Jbehave没有提供任何官方方式。

我不建议这样做,但如果我必须这样做,我会首先尝试添加一个运行报告生成的@AfterStory 步骤,以便在每次故事结束时更新报告。这样做的问题是,即使它有效,每次发生这种情况时,都会重新生成整个报告,随着测试套件中每个故事的运行,报告会变得越来越慢,所以如果你有一个大套件,你最终会添加一些到你的执行时间。然后,您可以更进一步,让您的步骤生成一些自定义的轻量级报告,为您提供一个临时状态报告,该报告附加而不是重新创建可以由 Jbehave 执行后生成的完整报告替换的报告。

于 2017-03-15T11:44:53.580 回答