如何在eclipse中将项目作为TestNG Suite运行时生成Allure xml?

时间:2015-05-22 15:13:12

标签: java maven testng allure

我用Google搜索了这个问题。我发现的结果表明我需要运行maven / ant构建来生成xml。

我的项目是Maven& TestNG项目。但是在调试时我们在eclipse中使用“Run as TestNG Suite”选项。

我已将以下代码添加到我的testng.xml中。

<listeners>
    <listener class-name="ru.yandex.qatools.allure.testng.AllureTestListener" />
</listeners>

这会在project \ target \ site \ allure-maven-plugin \ data目录中生成UUID-testsuite.xml,但报告只包含套件标题,不会显示其他数据。

据我所知,为了使@Step和@Attachment注释工作,我们需要在配置中正确启用AspectJ。我不知道如何在testng.xml文件中执行此操作。

如果我在这里遗漏了什么,请告诉我。

1 个答案:

答案 0 :(得分:2)

假设您在测试代码中定义了@Step和@Attachment方法,您只需要在pom.xml文件中添加aspectjweaver依赖项。请参阅此Allure github wiki page

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.14</version>
            <configuration>
                <testFailureIgnore>false</testFailureIgnore>
                <argLine>
                    -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar
                </argLine>
                <!--only for 1.3.* TestNG adapters. Since 1.4.0.RC4, the listener adds via ServiceLoader-->
                <properties>
                    <property>
                        <name>listener</name>
                        <value>ru.yandex.qatools.allure.testng.AllureTestListener</value>
                    </property>
                </properties>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjweaver</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

maven-surefire-plugin将使用listener

调用testng
<properties>
   <property>
      <name>listener</name>
      <value>ru.yandex.qatools.allure.testng.AllureTestListener</value>
   </property>
</properties>

并将aspectj设置作为jvm参数传递:

- javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar

另外,您可以参考此example project以获得更清晰的信息。