如何使用cucumber-junit设置我的Cucumber功能的路径?

时间:2012-03-12 07:23:33

标签: java cucumber cucumber-jvm cucumber-junit

我尝试使用Java和Maven构建我的第一个可执行规范。我用这种结构创建了一个简单的项目:

specification
|-src
  |-test
    |-java
      |-mypackage
        |-MyFeatureTest.java
    |-resources
      |-MyFeature.feature

在junit测试中MyFeatureTest.java我有这个:

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

@RunWith(Cucumber.class)
public class HomepageTest {
}

现在https://github.com/cucumber/cucumber-jvm/wiki/IDE-support说我应该添加以下行:

@Cucumber.Options(paths={"my/super.feature:34"})

我试图将其修改为

@Cucumber.Options(paths={"src/test/resources/"})

但注释@Cucumber.Options根本不可用。我的pom.xml有这种依赖关系:

<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.10</version>
  <scope>test</scope>
</dependency>
<dependency>
  <groupId>info.cukes</groupId>
  <artifactId>cucumber-java</artifactId>
  <version>1.0.0.RC20</version>
  <scope>test</scope>
</dependency>
<dependency>
  <groupId>info.cukes</groupId>
  <artifactId>cucumber-junit</artifactId>
  <version>1.0.0.RC20</version>
  <scope>test</scope>
</dependency>

我错过了什么吗?

更新我遗漏了一些内容:黄瓜功能文件必须位于子目录src/test/resources/mypackage/中。否则,junit测试将无法获取它。

当我将它们放在同一目录src/main/test/中时,我可以运行我的功能测试,所以它对我来说不是一个阻止器。但我想了解整个设置。

7 个答案:

答案 0 :(得分:17)

看看我的问题here

您可以通过在选项注释中设置要素属性来指定类路径上的位置,如

@Cucumber.Options(features="src/test/resources")

编辑:

新版本代码中的

@CucumberOptions(features="src/test/resources")

答案 1 :(得分:11)

我参加派对已经很晚了(4年!)但是认为这是值得回答的,因为没有人提到classpath评估,上面的解决方案在Maven多模块情况下不起作用。 / p>

classpath选项在Cucumber文档中并不明显(也不在JavaDoc中),我最终从CLI documentation推断它,其中记录了其他位置选项。请参阅文档中的List configuration options部分。

这就是我在Maven多模块项目中运行(从IDE和命令行运行)的原因。

@CucumberOptions(
        features = {"classpath:product"},
        //...
)
public class RunCukesTest extends AbstractTestNGSpringContextTests {

我的要素文件位于

main-project
    sub-module-1
        src/test/java/com/foo/
            RunCukesTest.java
        src/test/resources/product/
            feature_1.feature
            feature_2.feature
    sub-module-2
        ...

我不希望在路径中看到src/test/resources

答案 2 :(得分:7)

您可以使用

@CucumberOptions(
    format = "pretty",
    tags = {"~@Ignore"},
    features = "src/test/resources/com/"  //refer to Feature file
)

扫描包中的所有功能文件

答案 3 :(得分:5)

好的,我只能把它放在星期一早上......我使用的目录布局不正确,我忘了将黄瓜功能放到与我的包结构匹配的子目录中。

确保您还在src/test/resources/中创建了所需的包目录!

答案 4 :(得分:1)

使用后

import cucumber.api.CucumberOptions;

您需要将以下内容添加到您的pom.xml中,否则&#34; mvn test&#34;不管用。而且您只能从IDE运行测试。 请参阅:https://github.com/cucumber/cucumber-java-skeleton/blob/master/pom.xml

<properties>
    <java.version>1.7</java.version>
    <junit.version>4.12</junit.version>
    <cucumber.version>1.2.2</cucumber.version>
    <maven.compiler.version>3.3</maven.compiler.version>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>${maven.compiler.version}</version>
            <configuration>
                <encoding>UTF-8</encoding>
                <source>${java.version}</source>
                <target>${java.version}</target>
                <compilerArgument>-Werror</compilerArgument>
            </configuration>
        </plugin>
    </plugins>
</build>

答案 5 :(得分:1)

或者您可以构建您的cucumberoptions参数,例如在https://cucumber.io/docs/reference/jvm#cli-runner中描述并将其传递给cucumber.api.cli.Main.run()。这是一个小例子:

String arg = "classpath:MyFeature.feature --dry-run";
String[] args = arg.split(" ");
cucumber.api.cli.Main.run(args, Thread.currentThread().getContextClassLoader());

并在JUnit Test中使用它。因此,您不必使用其他参数为每个测试类创建单独的类。

答案 6 :(得分:-5)

将功能文件放在 src / test / java 下的跑步者和步骤文件或 将它放在 src / main / java 下,问题就会得到解决。

别忘了说谢谢。:)