0

SoapUI テスト ケースを Allure と統合してレポートを生成しようとしています。Maven プロジェクトがあり、soapui maven プラグインを使用してテスト ケースを実行しています。テスト ケースは正常に実行され、JUnit レポートは生成されますが、魅力的な結果はありません。私のpomをチェックしてください。魅力プラグインの間違った使い方があるかもしれません。

<?xml version='1.0' encoding='UTF-8'?><project xmlns:1='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'>

<name>SOAPUI Tests</name>
<version>1.0</version>
<modelVersion>4.0.0</modelVersion>
<groupId>soapui-tests</groupId>
<artifactId>soapui-tests</artifactId>
<description>SoapUI Integration Tests</description>

<properties>
 <allure.version>1.4.19</allure.version>
 <allure.maven.version>2.4</allure.maven.version>
 <surefire.version>2.18.1</surefire.version>
 <aspectj.version>1.7.4</aspectj.version>
 <soapui.version>4.6.1</soapui.version>
</properties>

<dependencies>
    <dependency>
        <groupId>ru.yandex.qatools.allure</groupId>
        <artifactId>allure-junit-adaptor</artifactId>
        <version>${allure.version}</version>
    </dependency>
    <dependency>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
        <version>${surefire.version}</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>com.smartbear.soapui</groupId>
            <artifactId>soapui-maven-plugin</artifactId>
            <version>${soapui.version}</version>

            <configuration>
                <outputFolder>${basedir}/target/soapui-results</outputFolder>
                <junitReport>true</junitReport>
                <exportAll>true</exportAll >
                <printReport>true</printReport>
                <testFailIgnore>true</testFailIgnore>
            </configuration>

            <dependencies>
                <dependency>
                    <groupId>com.sun.mail</groupId>
                    <artifactId>javax.mail</artifactId>
                    <version>1.5.0-b01</version>
                </dependency>
            </dependencies>

            <executions>
                <execution>
                    <id>x_project.xml</id>
                    <phase>process-test-classes</phase>
                    <goals>
                        <goal>test</goal>
                    </goals>
                    <configuration>
                        <projectFile>x_project.xml</projectFile>
                    </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>${surefire.version}</version>
            <configuration>
                <testFailureIgnore>true</testFailureIgnore>
                <argLine>
                    -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar
                </argLine>
                <properties>
                    <property>
                        <name>listener</name>
                        <value>ru.yandex.qatools.allure.junit.AllureRunListener</value>
                    </property>
                </properties>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjweaver</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

<reporting>
    <excludeDefaults>true</excludeDefaults>
    <plugins>
        <plugin>
            <groupId>ru.yandex.qatools.allure</groupId>
            <artifactId>allure-maven-plugin</artifactId>
            <version>${allure.maven.version}</version>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>${surefire.version}</version>
        </plugin>
    </plugins>
</reporting>

mnv テスト サイト コマンドは、次のエラーを返します。

[エラー] プロジェクト soapui-tests で目標 org.apache.maven.plugins:maven-site-plugin:3.3:site (default-site) を実行できませんでした: ページ生成中のエラー: Maven レポートのレンダリング エラー: レポートを生成できませんでした: InvocationTargetException: 魅力的な結果が見つかりませんでした -> [ヘルプ 1]

4

2 に答える 2

0

pom.xml でわかるように、テスト結果に非標準の出力フォルダーを使用しています${basedir}/target/soapui-resultsallure.results.directoryそのため、プロパティを構成して、allure プラグインにテスト結果を探す場所を伝える必要があります。

于 2016-02-17T09:25:29.373 に答える