web-dev-qa-db-ja.com

きゅうり:ステップ定義が見つかりません

私は次の機能ファイルを持っています:MacroValidation.feature

@macroFilter
Feature: Separating out errors and warnings
Scenario: No errors or warnings when separating out error list
    Given I have 0 macros
    When I filter out errors and warnings for Macros
    Then I need to have 0 errors
        And I need to have 0 warnings

私の定義ファイル。

package com.test.definition;

import cucumber.api.Java.After;
import cucumber.api.Java.Before;
import cucumber.api.Java.en.Given;
import cucumber.api.Java.en.Then;
import cucumber.api.Java.en.When;
import cucumber.runtime.Java.StepDefAnnotation;
import Java.util.ArrayList;
import Java.util.Arrays;
import Java.util.List;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.powermock.api.mockito.PowerMockito.doReturn;
import static org.powermock.api.mockito.PowerMockito.mock;
import static org.powermock.api.mockito.PowerMockito.spy;


@StepDefAnnotation
public class MacroValidationStepDefinitions {

private final MacroService macroService = spy(new MacroService());
private final LLRBusList busList = mock(LLRBusList.class);    
private final List<String> errorList = new ArrayList<String>();
private final List<String> warningList = new ArrayList<String>();

@Before({"@macroFilter"})
public void setUp() {
    errorList.addAll(Arrays.asList("error 1, error2, error 3"));
    warningList.addAll(Arrays.asList("warning 1, warning 2, warning 3"));
}

@After({"@macroFilter"})
public void tearDown() {
    errorList.clear();
    warningList.clear();
}

@Given("^I have (\\d+) macros$")
public void i_have_macros(int input) {
    doReturn(input).when(busList).size();
}

@When("^I filtered out errors and warnings for Macros$")
public void i_filtered_out_errors_and_warnings_for_Macros() {
    macroService.separateErrorsAndWarning(busList, errorList, warningList);
}

@Then("^I need to have (\\d+) errors$")
public void  i_need_to_have_errors(int numOfError) {
    if (numOfError == 0) {
        assertTrue(errorList.isEmpty());
    } else {
        assertEquals(errorList.size(), numOfError);
    }
}

@Then("^I need to have (\\d+) warnings$")
public void  i_need_to_have_warnings(int numOfWarnings) {
    if (numOfWarnings == 0) {
        assertTrue(warningList.isEmpty());
    } else {
        assertEquals(warningList.size(), numOfWarnings);
    }
}
}

私のユニットテストクラス。

@CucumberOptions(features = {"classpath:testfiles/MacroValidation.feature"},
                 glue = {"com.macro.definition"},
                 dryRun = false, 
                 monochrome = true,
                 tags = "@macroFilter"
                 )
@RunWith(Cucumber.class)
public class PageMacroValidationTest {
}

テストを実行すると、ファイル定義が実装されていないという警告がログに記録されます。

ログの例:

You can implement missing steps with the snippets below:

@Given("^I have (\\d+) macros$")
public void i_have_macros(int arg1) throws Throwable {
    // Write code here that turns the phrase above into concrete actions
    throw new PendingException();
}

@When("^I filter out errors and warnings for Macros$")
public void i_filter_out_errors_and_warnings_for_Macros() throws Throwable {
    // Write code here that turns the phrase above into concrete actions
    throw new PendingException();
}

@Then("^I need to have (\\d+) errors$")
public void i_need_to_have_errors(int arg1) throws Throwable {
    // Write code here that turns the phrase above into concrete actions
    throw new PendingException();
}

@Then("^I need to have (\\d+) warnings$")
public void i_need_to_have_warnings(int arg1) throws Throwable {
    // Write code here that turns the phrase above into concrete actions
    throw new PendingException();
}

ファイル名は重要ではないと思いますか?

7
Chun ping Wang

Cucumberがステップ定義クラスを見つけていないようです。ユニットテストクラスでは、次のように言います。

 glue = {"com.macro.definition"}

ただし、ステップ定義クラスはcom.test.definitionにあります

その行を次のように変更してみてください。

 glue = {"com.test.definition"}

変更を取得するには、プロジェクトを再構築する必要がある場合があります。

9
Matt Watson

また、キュウリは空白に敏感です。ランナーまたは機能ファイルをきれいにしようとするとスニペットをキャプチャした後、この問題が発生します。

これは、最初のBDDを作成しているときに数時間私を狂わせた例です。フィーチャーファイルとスケルトンランナーを作成し、実行してスニペットをキャプチャしました。次に、機能ファイルをきれいにしました。実行すると、ランナーにエラーが発生しました。

もちろん、私の人間の脳にはすべてがうまく見えたので、次の数時間はここで無駄な研究に費やされ、バージョンとバグリストをチェックしました。最後に、スニペットの最初の2行を比較して、何が違うのかを確認することにしました。

//  @Then("^the test result is = \"([^\"]*)\"$")
//  public void theTestResultIs(String ruleResult) throws Throwable {
    @Then("^the test result is         = \"([^\"]*)\"$")
    public void theTestResultIs(String arg1) throws Throwable {

ドー!

2
JeffInTampa