我想知道是否有一种方法可以在不传递参数的情况下在step方法中访问示例表行数据?

故事文件:

Given I am logged in
When I create a trade
Then a trade should be created

Examples:
|data1|data2|
|11111|22222|
|33333|44444|

步骤文件:
@When("I create a trade")
public void createTrade(@Named("data1") String data1, @Named("data2") String data2){
    //code to create trade using data1 and data2
}

上面的方法工作正常,但是我想要一种从方法中的示例表访问数据行的方法。 (我之所以要这样做,是因为每个故事的示例表中可能未包含所有列,并且我发现,如果我在step方法中将3 * @Named用作参数,但其中之一是缺少实际示例表中的内容,则无法运行。)
@When("I create a trade")
public void createTrade(){
    //check if there is a data1 column, if so get value and do something
    //check if there is a data2 column, if so get value and do something
}

谢谢你的帮助

最佳答案

您可以实现一个新的参数转换器,然后将该表作为对象传递。
例如,在我们的项目中,我们构建了ExamplesTableConverter(注意:有一个我们未测试的盒装JBehave转换器):

public class ExamplesTableConverter extends ParameterConverters.ExamplesTableConverter {
private final ExamplesTableFactory factory;
private static final String ROW_SEPARATOR = "\n";
private static final String FIELD_SEPARATOR = "|";

public ExamplesTableConverter(){
    this(new ExamplesTableFactory());
}

public ExamplesTableConverter(ExamplesTableFactory factory){
    this.factory = factory;
}

@Override
public boolean accept(Type type) {
    if (type instanceof Class<?>){
        return ExamplesTable.class.isAssignableFrom((Class<?>) type);
    }
    return false;  //To change body of implemented methods use File | Settings | File Templates.
}

@Override
public Object convertValue(String tableAsString, Type type) {
    System.out.println(tableAsString);
    String[] rows = tableAsString.split(ROW_SEPARATOR);
    StringBuffer resultString = new StringBuffer();
    resultString.append(rows[0]);
    resultString.append(ROW_SEPARATOR);

    for(int i=1; i<rows.length; i++){
        String originRow = rows[i];
        List<String> rowValues = TableUtils.parseRow(originRow, FIELD_SEPARATOR, true);

        String translatedRow = translateRow(rowValues);
        resultString.append(translatedRow);
        resultString.append(ROW_SEPARATOR);
    }
    System.out.println(resultString.toString());
    Object table = factory.createExamplesTable(resultString.toString());
    return table;
    //return null;
}

private String translateRow(List<String> rowValues) {
    StringBuffer result = new StringBuffer(FIELD_SEPARATOR);

    for(String field : rowValues){
        try{
        result.append(translate(field));
        result.append(FIELD_SEPARATOR);}
        catch (LocalizationException e){
            e.printStackTrace();
            //Need do something here to handle exception
        }
    }
    return result.toString();
}

}

那么您需要将该转换器添加到您的配置中:
configuration.parameterConverters().addConverters(new ExamplesTableConverter());

创建使用它的方法
@When("create parameters of type $param1 from the next table: $table")
public void doThis(@Named("param1") String param1, @Named("table") ExamplesTable table)

最后,在故事中使用它:
When create parameters of type type1 from the next table:
|FirstName|LastName|
|Donald|Duck|

这将允许您迭代表。

以下博客文章也可以为您提供帮助
Simpler JBehave Examples Table Processing

09-25 15:39