web-dev-qa-db-ja.com

Cucumber 1.2.4がステップ定義を見つけられない:「以下のスニペットで欠落しているステップを実装できます」(2016)

UNIXライクなコマンドラインでMavenを使用してCucumberを実行しようとしています(残念ながら、Windowsを使用せざるを得ませんが、cmd.exeでも同じ結果が得られます)。

_mvn clean test -Dcucumber.options="src/test/resources/com/example/sqa/automation_cuke/pages/sample_test.feature"_

結果:

_Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
...
[INFO] --- exec-maven-plugin:1.2.1:Java (default) @ sqa.automation_cuke ---
Feature: My animals Sample
  Sample test to use as basis for conversion

  Scenario: My animals           # sample_test.feature:4
    Given that I have my animals

1 Scenarios (1 undefined)
1 Steps (1 undefined)
0m0.000s


You can implement missing steps with the snippets below:

@Given("^that I have my animals$")
public void that_I_have_my_animals() throws Throwable {
    // Write code here that turns the phrase above into concrete actions
    throw new PendingException();
}
_

私はこれと同様のエラーメッセージのためにすべてのトップのGoogle/SO検索を見てきました。 単一の機能を実行しているときにCucumberがステップを見つけることができない および Cucumberがステップ定義を見つけられない などの多くは、_-r_および-パラメータが必要ですが、_Unknown option: -r_エラーが発生したため、ある時点でCucumberから削除されたようです。

他の多くの回答は、@ CucumberOptionsglueパラメータが正しく定義されていない場合にこのエラーが(奇妙に)発生すると述べています。しかし、私は次の接着剤を試しましたが、どれもうまくいきませんでした:

_sqa.automation_cuke.pages path:sqa.automation_cuke.pages classpath:sqa.automation_cuke.pages com.example.sqa.automation_cuke.pages classpath:com.example.sqa.automation_cuke.pages path:com.example.sqa.automation_cuke.pages C:/development/cucumber-demo/src/main/Java/com/example/sqa/automation_cuke/pages src/main/Java/com/example/sqa/automation_cuke/pages classpath:C:/development/cucumber-demo/src/main/Java/com/example/sqa/automation_cuke/pages classpath:src/main/Java/com/example/sqa/automation_cuke/pages path:src/main/Java/com/example/sqa/automation_cuke/pages C:\\development\\cucumber-demo\\src\\main\\Java\\com\\example\\sqa\\automation_cuke\\pages src\\main\\Java\\com\\example\\sqa\\automation_cuke\\pages classpath:src\\main\\Java\\com\\example\\sqa\\automation_cuke\\pages path:src\\main\\Java\\com\\example\\sqa\\automation_cuke\\pages_

私も試しました:

  • _-Dcucumber.options_で--glueを定義します。
  • ソースコードのディレクトリ構造をsrc/test/Java/example/Automation_cuke、src/main/Java/example/Automation_cuke、src/test/resources/example/automation_cukeなどに変更します。
  • .featureファイルをmain ... resourcesに配置します。
  • @Given("that I have my animals")など、@ Givenのさまざまなテキスト。

これが私のプロジェクト構造です。リソース構造がコードの残りの部分と一致することを確認しました この回答による

cucumber-demo project structure

sample_text.feature:

_Feature: My animals Sample
  Sample test to use as basis for conversion

  Scenario: My animals
    Given that I have my animals
_

MySampleTest.Java:

_package com.example.sqa.automation_cuke.pages;

@RunWith(Cucumber.class)
@CucumberOptions(glue = {"com.example.sqa.automation_cuke.pages"})
public class MySampleTest {

    @Given("^that I have my animals$")
    public void that_I_have_my_animals() throws Throwable {
        // Write code here that turns the phrase above into concrete actions
        System.out.println("MySampleTest.that_I_have_my_animals() ran!");
        new MySample().printMySample();
        throw new PendingException();
    }
}
_

pom.xml:

_<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
    <artifactId>sqa.automation_cuke</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <cucumber-jvm.version>1.2.4</cucumber-jvm.version>
        <Selenium.version>2.53.0</Selenium.version>
        <junit.version>4.12</junit.version>
    </properties>

    <build>

        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>Java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <executableDependency>
                        <groupId>info.cukes</groupId>
                        <artifactId>cucumber-core</artifactId>
                    </executableDependency>
                    <mainClass>cucumber.api.cli.Main</mainClass>
                    <arguments>
                        <argument>--plugin</argument>
                        <argument>junit:target/cucumber-junit-report/allcukes.xml</argument>
                        <argument>--plugin</argument>
                        <argument>pretty</argument>
                        <argument>--plugin</argument>
                        <argument>html:target/cucumber-html-report</argument>
                    </arguments>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>info.cukes</groupId>
                        <artifactId>cucumber-core</artifactId>
                        <version>${cucumber-jvm.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.Selenium</groupId>
            <artifactId>Selenium-Java</artifactId>
            <version>${Selenium.version}</version>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-picocontainer</artifactId>
            <version>${cucumber-jvm.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-core</artifactId>
            <version>${cucumber-jvm.version}</version>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-junit</artifactId>
            <version>${cucumber-jvm.version}</version>
        </dependency>
        <!-- http://mvnrepository.com/artifact/info.cukes/cucumber-Java -->
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-Java</artifactId>
            <version>${cucumber-jvm.version}</version>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.7</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.16</version>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.2</version>
        </dependency>
    </dependencies>
</project>
_

どんな助けでもいただければ幸いです!

5
JaneGoodall

非常に複雑な設定があります。 ゴールの法則 を考えて、再起動して、機能するものを構築します。小さな入門プロジェクトは https://github.com/cucumber/cucumber-Java-skeleton で入手できます。

ダウンロード/クローンして実行

mvn test

これにより、ステップが欠落しているはずですが、いくつかのステップが定義されているはずです。ソースコードを調べて、不足しているステップをsrc/test/Java/skeleton/Stepdefs.Javaに追加します

3
Thomas Sundberg

キュウリのオプションを機能させるには、features属性を設定する必要があります。

キュウリオプションのアノテーションを次のように置き換えます。

@CucumberOptions(features = {"classpath:com/example/sqa/automation_cuke/pages/sample_test.feature"}, glue = {"com.example.sqa.automation_cuke.pages"},

それを機能させる必要があります。そうでない場合は、投稿を更新してください。

更新:

SampleTestStepDefiniton.Java

package com.example.sqa.automation_cuke.pages;

import cucumber.api.Java.en.Given;

public class SampleTestStepDefinition {

    @Given("^that I have my animals$")
    public void that_I_have_my_animals() throws Throwable {
        // Write code here that turns the phrase above into concrete actions
        System.out.println("MySampleTest.that_I_have_my_animals() ran!");   
    }
}

MySampleTest.Java

package com.example.sqa.automation_cuke.pages;

import org.junit.runner.RunWith;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@CucumberOptions(glue = { "com.example.sqa.automation_cuke.pages" }, features = {
        "classpath:com/example/sqa/automation_cuke/pages/sample_test.feature" })
public class MySampleTest {

}

sample_test.feature

Feature: My animals Sample
  Sample test to use as basis for conversion

  Scenario: My animals
    Given that I have my animals

[〜#〜] update [〜#〜]

プロジェクトの問題は、クラスパスでテストクラス(およびステップ定義クラス)を見つけることができないことだと思います。 CLASSPATHシステム変数を定義する必要がある理由がわかりません。それがこの問題の理由である可能性があります。ただし、PATH変数はそのままにして、特定のプロジェクトへの参照を含めないでください。

CLASSPATH変数を削除し、プラグインタグを次のように置き換えてみてください。

 <plugins>
    <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <encoding>utf8</encoding>
            <source>1.7</source>
            <target>1.7</target>
        </configuration>
    </plugin>
     <plugin>
        <groupId>org.Apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
            <execution>
                <goals>
                    <goal>test-jar</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
    <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.18</version>
    </plugin>
</plugins>

Java 8とJava 7.を使用して、複数のウィンドウ環境で実行できます。投稿してください。

4
ritesh.garg