如何通过命令提示符和使用 Maven 的 jenkins 运行单个黄瓜功能文件?

Posted

技术标签:

【中文标题】如何通过命令提示符和使用 Maven 的 jenkins 运行单个黄瓜功能文件?【英文标题】:How to run single cucumber feature files through command prompt and through jenkins using Maven? 【发布时间】:2016-04-18 18:39:40 【问题描述】:

我对 Cucumber / Maven 有点陌生,所以在运行测试用例时需要帮助。 我使用 Cucumber 和 Selenium 在 Eclipse 中开发了一个自动化套件。要运行特定的功能文件/Junit 运行器类,我在 Eclipse 中右键单击文件并运行它。

但是我如何通过命令提示符或 Jenkins 通过给出特定命令来运行 2-3 个功能文件(或)从 50 个功能文件或 JUnit 类中运行 2-3 个 Junit 运行器类?

下面是我在 Eclipse 中的结构包浏览器。

下面是 POM.xml

<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.perspecsys</groupId>
    <artifactId>salesforce</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>salesforce</name>
    <url>http://maven.apache.org</url>

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


    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-java</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-picocontainer</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-junit</artifactId>
            <version>1.1.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.48.2</version>
        </dependency>

    </dependencies>
</project>

【问题讨论】:

【参考方案1】:

您可以使用 cucumber.options 运行单个功能文件,这将覆盖您在 @CucumberOptions 注释中的所有选项:

mvn test -Dcucumber.options="src/test/features/com/perspecsys/salesforce/featurefiles/Account.feature"

编辑(2021 年 6 月): 后续版本删除了 cucumber.options 结构并替换了它。现在实现相同结果的一种方法是使用标签。在您的功能文件顶部放置一个标签(例如@feature_file_name),然后运行以下命令:

mvn test -Dcucumber.filter.tags='@feature_file_name'

【讨论】:

感谢您的帮助。该命令在命令提示符下工作。但是,我如何在 Jenkins 中进行相同的配置?我只想运行包 com.perspecsys.salesforce.featurefiles 以便所有功能文件都在它下执行。你能帮我在 Jenkins 中逐步配置吗? 偶然发现了这个话题。这个答案不再有效。最近的版本弃用了该属性。检查:***.com/questions/64704059/…【参考方案2】:

鉴于您正在使用 Maven,并且您已经为每个功能提供了一个单独的运行器类,您可以使用 Failsafe 插件或 Surefire 插件来传递参数从这样的命令行中,然后选择要运行的运行器。

故障安全版本:

-Dit.test=Account*Test,Login*Test

万无一失的版本:

-Dtest=Account*Test,Login*Test

请注意,您可以使用通配符、传递以逗号分隔的测试列表并引用完整位置并按包过滤。

-Dit.test=com.perpecsys.salesforce.*Test

为此,我通常会使用 Failsafe 插件,因为 Cucumber 测试更像是集成测试(实际上是端到端测试),这就是该插件的用途,而 Surefire 插件旨在运行单元测试。

关于这两个插件的更多信息:

http://maven.apache.org/surefire/maven-failsafe-plugin/examples/single-test.html

http://maven.apache.org/surefire/maven-surefire-plugin/examples/single-test.html

与 Jenkins 完全一样,只需使用 Maven Project 插件创建一个新的 Maven 项目,然后在 Build 部分的 Goal and options 字段下指定 maven 命令,如下所示:

clean verify -Dit.test=Account*Test

https://wiki.jenkins-ci.org/display/JENKINS/Maven+Project+Plugin

或者,如果您不使用 Maven 项目插件,只需将 Invoke *** maven 目标 步骤添加到构建中,然后在其中添加选项。

希望这会有所帮助。

【讨论】:

【参考方案3】:

如果你想硬编码,你可以这样做:

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(
        features="src/test/resources/features/belly.feature"  
        ,glue =  "steps"   //whatever the name of your steps package is
        )
public class RunCukesTest 


【讨论】:

【参考方案4】:

您可以使用 cucumber.options 运行单个功能文件

mvn test -Dcucumber.options="--tags @TestTag"

【讨论】:

如果你在文件的开头写标签,它会运行该文件中的所有功能。 mvn 测试工作正常,但是上面的命令会产生这个错误:未知的生命周期阶段“.options=--tags @TC_3”。您必须以 ::[:]: 格式指定有效的生命周期阶段或目标. @aydinugur 你会如何避免这种情况 @AshokkumarGanesan 是 --tags @mytag 绝对像上面的例子一样用引号引起来,所以 mvn 不会将它视为两个单独的参数【参考方案5】:

我在执行 Maven 时遇到了一些问题,据我了解,大多数人都在使用终端,但只有一个 (@Pedro Lopez) 描述了一个非常重要的点 - 在 Maven 中传递 'CucumberRunner' 类当您将使用控制台、詹金斯或其他东西执行它时使用命令。

同时,也可以使用 POM:

  <build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>$maven-surefire-plugin.version</version>
            <configuration>
                <includes>
                    <exclude>
                        **/CucumberRunner.java
                    </exclude>
                </includes>

这是**/CucumberRunner.java - 您将用作传递所有 Cucumber 选项的 runner 的类(@William 在我的 POM 中提到 'RunCukesTest'CucumberRunner )和当然你可以在 POM 配置之后使用简单的命令,比如mvn test

关于问题的第二部分,我找到了一个非常简单的解决方案。这里可以在 Cucumber 选项部分描述所有内容。

@CucumberOptions(
        features = feature", // here you can pass information about main feature folder that contains all feature files
        plugin = "junit:cucumber-report/junit-report.xml",
        tags = "@Test1, @Test2, ... , @Test999",//here you can pass all list of related tests by tag
        glue = "com.myApp.stepDefinitions"
)

我认为这些信息可以帮助解决未来的一些问题:)

使用 JAVA 实现自动化!

【讨论】:

以上是关于如何通过命令提示符和使用 Maven 的 jenkins 运行单个黄瓜功能文件?的主要内容,如果未能解决你的问题,请参考以下文章

使用maven运行测试后防止数据被删除

Jenk×××使用入门

windows maven命令行 命令怎么使用

从命令提示符运行testng.xml。我有从Maven Project创建的jar。 Surefireplugin并没有解决我的目的

maven--学习--创建web项目

jenkins 自动从svn获取源码通过maven打包后发布到远端tomcat