当一些测试失败时,Donut报告(donut-maven-plugin)没有生成

时间:2018-01-05 14:58:54

标签: bdd cucumber-jvm

我正在使用Donut报告(donut-maven-plugin)来汇总使用github.temyers团队的cucumber-jvm-parallel-plugin运行的并行黄瓜测试的报告。

这是我的POM代码段:

<profiles>
    <profile>
        <id>TestSuite1</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
            <app.config>//src//test//java//envConfig//localGridConfig.properties</app.config>
            <test.tag>@android</test.tag>
            <dummy.tag>@dummy</dummy.tag>
            <device.name>browserstack.ios</device.name>
            <!--<target.env>browserStackEnv</target.env>-->
        </properties>
    </profile>

    <profile>
        <id>TestSuite2</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <properties>
            <app.config>//src//test//java//envConfig//sauceLabsGridConfigAndroid.properties</app.config>
        </properties>
    </profile>

    <profile>
        <id>TestSuite3</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <properties>
            <app.config>//src//test//java//envConfig//sauceLabsGridConfigIOS.properties</app.config>
        </properties>
    </profile>

</profiles>
<build>
    <!--<sourceDirectory>src</sourceDirectory>-->
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-failsafe-plugin</artifactId>
            <version>2.20</version>
            <configuration>
                <parallel>methods</parallel>
                <threadCount>5</threadCount>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19</version>
            <configuration>
                <forkCount>5</forkCount>
                <reuseForks>true</reuseForks>
                <includes>
                    <include>**/Parallel*IT.class</include>
                </includes>
                <systemPropertyVariables>
                    <deviceName>${device.name}</deviceName>
                    <targetEnv>${target.env}</targetEnv>
                </systemPropertyVariables>
            </configuration>
        </plugin>


        <plugin>
            <groupId>com.github.temyers</groupId>
            <artifactId>cucumber-jvm-parallel-plugin</artifactId>
            <version>4.2.0</version>
            <executions>
                <execution>
                    <id>generateRunners</id>
                    <phase>generate-test-sources</phase>
                    <!--<phase>validate</phase>-->
                    <goals>
                        <goal>generateRunners</goal>
                    </goals>
                    <configuration>
                        <!-- Mandatory -->
                        <!-- List of package names to scan for glue code. -->
                        <glue>
                            <package>stepDefs</package>
                        </glue>
                        <!-- These are optional, with the default values -->
                        <!-- Where to output the generated tests -->
                        <outputDirectory>${project.build.directory}/cucumber-parallel/html</outputDirectory>
                        <!--<outputDirectory>${project.build.directory}/generated-test-sources/cucumber</outputDirectory>-->
                        <!-- The directory, which must be in the root of the runtime classpath, containing your feature files.  -->
                        <featuresDirectory>src/main/resources/features/</featuresDirectory>
                        <!-- Directory where the cucumber report files shall be written  -->
                        <!--<cucumberOutputDir>target/cucumber-parallel</cucumberOutputDir>-->
                        <cucumberOutputDir>target/cucumber-parallel</cucumberOutputDir>
                        <!-- List of cucumber plugins. When none are provided the json formatter is used. For more
                             advanced usage see section about configuring cucumber plugins -->
                        <format>json,html,rerun</format>

                        <plugins>
                            <plugin>
                                <name>json</name>
                                <extension>json</extension>
                                <!--Optional output directory. Overrides cucumberOutputDirectory. Usefull when different
                                    plugins create files with the same extension-->
                                <outputDirectory>${project.build.directory}/cucumber-parallel/json</outputDirectory>
                            </plugin>
                            <!--<plugin>-->
                            <!--<name>com.example.CustomHtmlFormatter</name>-->
                            <!--<extension>html</extension>-->
                            <!--</plugin>-->
                            <plugin>
                                <name>com.cucumber.listener.ExtentCucumberFormatter</name>
                                <extension>html</extension>
                            </plugin>
                        </plugins>
                        <customVmTemplate>
                            src/main/resources/cucumber-extents-report-runner.java.vm
                        </customVmTemplate>
                        <!-- CucumberOptions.strict property -->
                        <strict>true</strict>
                        <!-- CucumberOptions.monochrome property -->
                        <monochrome>true</monochrome>
                        <!-- The tags to run, maps to CucumberOptions.tags property. Default is no tags. -->
                        <tags>
                            <tag>
                                <!--${dummy.tag}-->
                            </tag>
                        </tags>
                        <!-- Generate TestNG runners instead of JUnit ones. -->
                        <useTestNG>false</useTestNG>
                        <!-- The naming scheme to use for the generated test classes.  One of 'simple' or 'feature-title' -->
                        <namingScheme>simple</namingScheme>
                        <!-- The class naming pattern to use.  Only required/used if naming scheme is 'pattern'.-->
                        <!--<namingPattern>**/Parallel*IT.class</namingPattern>-->
                        <namingPattern>Parallel{c}IT</namingPattern>

                        <!-- One of [SCENARIO, FEATURE]. SCENARIO generates one runner per scenario.  FEATURE generates a runner per feature. -->
                        <parallelScheme>SCENARIO</parallelScheme>
                        <!--<parallelScheme>FEATURE</parallelScheme> &lt;!&ndash;Using Feature for accomodating Scenario Outline &ndash;&gt;-->

                        <!-- Specify a custom template for the generated sources (this is a path relative to the project base directory) -->
                        <!--<customVmTemplate>src/test/resources/cucumber-custom-runner.vm</customVmTemplate>-->
                        <!-- Specify a custom package name for generated sources. Default is no package.-->
                        <packageName>
                        </packageName>

                    </configuration>
                </execution>
            </executions>
        </plugin>

        <!-- Cucumber report merger

        -->
        <plugin>
            <groupId>report.donut</groupId>
            <artifactId>donut-maven-plugin</artifactId>
            <version>0.0.6</version>
            <executions>
                <execution>
                    <id>execution</id>
                    <phase>post-integration-test</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                    <configuration>
                        <sourceDirectory>${project.build.directory}/cucumber-parallel</sourceDirectory>
                        <outputDirectory>${project.build.directory}/TrackMergeReport</outputDirectory>
                        <timestamp>${maven.build.timestamp}</timestamp>
                        <template>default</template>
                        <projectName>NativeAppsAutomation</projectName>
                        <!-- optional -->
                        <customAttributes>
                            <customAttribute>
                                <name>App Name</name>
                                <!--<value>${app.name}</value>-->
                                <value>smartphone.editor.beta</value>
                            </customAttribute>
                            <customAttribute>
                                <name>Device Name</name>
                                <!--<value>${app.name}</value>-->
                                <value>${device.name}</value>

                            </customAttribute>

                            <customAttribute>
                                <name>Target Env</name>
                                <value>${target.env}</value>
                            </customAttribute>
                        </customAttributes>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>

注意: - 没有关于尝试在maven运行日志中生成Donut报告的痕迹/提及(当其中一个测试失败时): - 我使用 mvn clean verify mvn clean integration-test 来运行框架

   Run 1: PASS
  Run 2: PASS
  Run 3: Can't locate an element by this strategy: Locator map: 
- native content: "By.chained({By.xpath: //*[contains(@text,'rints')]})" 
- html content: "By.cssSelector: div[data-id='print'] > .caption"


Tests run: 51, Failures: 0, Errors: 9, Skipped: 5

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 13:49 min
[INFO] Finished at: 2018-01-05T14:54:50+01:00
[INFO] Final Memory: 27M/306M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test
     项目NativeAppsAutomation-project上的

(default-test):有测试   故障。       [错误]       [错误]请参阅/../target/surefire-reports   对于个人测试结果。       [错误] - &gt; [帮助1]

注意到 - 单个普通黄瓜报告(json,Html,xml)正在target / cucumber-parallel文件夹中生成,如同所有通过&amp;运行失败或所有失败。 enter image description here 然而,当所有测试通过时,Donut汇总报告就会生成,

0 个答案:

没有答案
相关问题