如何在最新 4.x 版本中将自定义数据类型传递给 cucumber-jvm stepdef
How to pass custom data type to cucumber-jvm stepdef in latest 4.x version
我最近在我的项目中升级到最新的 4.x 版本的 cucumber-jvm 以利用 cucumber 的并行执行功能。但是关于将自定义数据类型作为参数,我现在正面临这个问题。早些时候我们有一个名为 Transformer
的接口,我们可以为自定义数据类型实现它,现在在最新版本中我发现需要实现 TypeRegistryConfigurer
接口。但它并没有像我预期的那样识别出这一步。详情如下:
小黄瓜步骤:
Given user gets random(3,true,true) parameter
步骤定义:
@Given("user gets {random} parameter")
public void paramTest(RandomString randomString) {
System.out.println(randomString.string);
}
随机字符串class:
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));
}
}
TypeRegistryImpl:
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)
);
}
}
您的字符串 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
中使用匹配模式。
我在试用和点击并查看 cucumber-jvm 项目中一些单元测试的一些示例后找到了解决方案。
已修改 StepDef:
@Given("user gets {random} parameter")
public void paramTest(String randomString) {
System.out.println(randomString.string);
}
TypeRegistryConfigurer 实现:
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]));
}
})
);
}
}
我最近在我的项目中升级到最新的 4.x 版本的 cucumber-jvm 以利用 cucumber 的并行执行功能。但是关于将自定义数据类型作为参数,我现在正面临这个问题。早些时候我们有一个名为 Transformer
的接口,我们可以为自定义数据类型实现它,现在在最新版本中我发现需要实现 TypeRegistryConfigurer
接口。但它并没有像我预期的那样识别出这一步。详情如下:
小黄瓜步骤:
Given user gets random(3,true,true) parameter
步骤定义:
@Given("user gets {random} parameter")
public void paramTest(RandomString randomString) {
System.out.println(randomString.string);
}
随机字符串class:
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));
}
}
TypeRegistryImpl:
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)
);
}
}
您的字符串 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
中使用匹配模式。
我在试用和点击并查看 cucumber-jvm 项目中一些单元测试的一些示例后找到了解决方案。
已修改 StepDef:
@Given("user gets {random} parameter")
public void paramTest(String randomString) {
System.out.println(randomString.string);
}
TypeRegistryConfigurer 实现:
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]));
}
})
);
}
}