如何在最新的4.x版本中将自定义数据类型传递给cucumber-jvm stepdef

问题描述 投票:2回答:2

我最近在我的项目中升级到了最新的4.x版本的cucumber-jvm,以便利用黄瓜的并行执行功能。但我现在面临的问题是将自定义数据类型作为参数。之前我们有一个名为Transformer的接口,我们可以为自定义数据类型实现,现在在最新版本中我找到了需要实现的TypeRegistryConfigurer接口。但它并没有像我期望的那样认识到这一步。详情如下:

小黄瓜步骤:

Given user gets random(3,true,true) parameter

StepDefinition:

@Given("user gets {random} parameter")
public void paramTest(RandomString randomString) {
    System.out.println(randomString.string); 
}

RandomString类:

public class RandomString {

public String string;

public RandomString(String string) {
    Matcher m = Pattern.compile("random\\((.?)\\)").matcher(string);
    String t = "";
    while (m.find()) {
        t = m.group(1);
    }
    boolean isAlpha = true, isNum = true;
    if (t.length() > 0) {
        String[] placeholders = t.split(",");
        if (placeholders.length == 3) {
            int count = Integer.parseInt(placeholders[0]);
            isAlpha = Boolean.valueOf(placeholders[1]);
            isNum = Boolean.valueOf(placeholders[2]);
            this.string = string.replaceAll("random(.*)", RandomStringUtils.random(count, isAlpha, isNum));
        }
    }
    this.string = string.replaceAll("random(.*)", RandomStringUtils.random(3, isAlpha, isNum));
}
}

输入RegistryImpl:

public class TypeRegistryConfiguration implements TypeRegistryConfigurer {
    @Override
    public Locale locale() {
        return Locale.ENGLISH;
    }

    @Override
    public void configureTypeRegistry(TypeRegistry typeRegistry) {
        typeRegistry.defineParameterType(new ParameterType<>(
                "random",
                "random([0-9],true|false,true|false)",
                RandomString.class,
                RandomString::new)
        );
    }
}
java cucumber cucumber-jvm
2个回答
3
投票

您的字符串random(3,true,true)与以下模式不匹配:

typeRegistry.defineParameterType(new ParameterType<>(
        "random",
        "random([0-9],true|false,true|false)", 
        RandomString.class,
        RandomString::new)
);

您可以通过创建模式并对其进行测试来验证这一点:

import java.util.regex.Pattern;

class Scratch {
    public static void main(String[] args) {
        Pattern pattern = Pattern.compile("random([0-9],true|false,true|false)");
        // prints out false
        System.out.println(pattern.matcher("random(3,true,true)").matches());
    }
}

您还没有在RandomString中使用匹配模式。


1
投票

我在试用后找到了解决方案并点击并查看了来自cucumber-jvm项目中的一些单元测试的一些示例。

修改后的StepDef:

@Given("user gets {random} parameter")
public void paramTest(String randomString) {
    System.out.println(randomString.string); 
}

类型RegistryConfigurer实现:

import cucumber.api.TypeRegistry;
import cucumber.api.TypeRegistryConfigurer;
import io.cucumber.cucumberexpressions.CaptureGroupTransformer;
import io.cucumber.cucumberexpressions.ParameterType;
import org.apache.commons.lang3.RandomStringUtils;

import java.util.Locale;

public class TypeRegistryConfiguration implements TypeRegistryConfigurer {
    @Override
    public Locale locale() {
        return Locale.ENGLISH;
    }

    @Override
    public void configureTypeRegistry(TypeRegistry typeRegistry) {
        typeRegistry.defineParameterType(new ParameterType<>(
                "random",
                "random\\(([0-9]+),(true|false),(true|false)\\)",
                String.class,
                new CaptureGroupTransformer<>() {
                    @Override
                    public String transform(String[] args) {
                        return RandomStringUtils.random(Integer.parseInt(args[0]), Boolean.valueOf(args[1]), Boolean.valueOf(args[2]));
                    }
                })
        );
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.