Includes charset in regular expressions; fixes gh-1603

This commit is contained in:
Marcin Grzejszczak
2021-03-08 12:11:03 +01:00
parent 232e44ad3b
commit f9115dc30d
6 changed files with 133 additions and 36 deletions

View File

@@ -16,6 +16,9 @@
package org.springframework.cloud.contract.spec.internal;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@@ -32,6 +35,8 @@ public class RegexProperty extends DslProperty implements CanBeDynamic {
final Pattern pattern;
String charset = StandardCharsets.UTF_8.name();
private final Class clazz;
public RegexProperty(Object value) {
@@ -109,6 +114,18 @@ public class RegexProperty extends DslProperty implements CanBeDynamic {
String.class);
}
public RegexProperty asString(Charset charset) {
RegexProperty regexProperty = asString();
regexProperty.charset = charset.name();
return regexProperty;
}
public RegexProperty asString(String charset) {
RegexProperty regexProperty = asString();
regexProperty.charset = charset;
return regexProperty;
}
public RegexProperty asBooleanType() {
return new RegexProperty(this.getClientValue(), this.getServerValue(),
Boolean.class);
@@ -139,7 +156,8 @@ public class RegexProperty extends DslProperty implements CanBeDynamic {
else if (Boolean.class.equals(this.clazz)) {
return Boolean.parseBoolean(generatedValue);
}
return generatedValue;
return new String(generatedValue.getBytes(Charset.forName(this.charset)),
this.charset);
}
catch (NumberFormatException ex) {
if (retries > 0) {
@@ -148,6 +166,9 @@ public class RegexProperty extends DslProperty implements CanBeDynamic {
}
throw ex;
}
catch (UnsupportedEncodingException e) {
throw new IllegalStateException(e);
}
}
public Object generateAndEscapeJavaStringIfNeeded() {