Remove support for strict parsing mode
We return deprecation warnings as response headers, besides logging them. Strict parsing mode stayed around, but was only used in query tests, though we also introduced checks for deprecation warnings there that don't need strict parsing anymore (see #20993). We can then safely remove support for strict parsing mode. The final goal is to remove the ParseFieldMatcher class, but there are many many users of it. This commit prepares the field for the removal, by deprecating ParseFieldMatcher and making it effectively not needed. Strict parsing is removed from ParseFieldMatcher, and strict parsing is replaced in tests where needed with deprecation warnings checks. Note that the setting to enable strict parsing was never ported to the new settings infra hance it cannot be set in production. It is really only used in our own tests. Relates to #19552
This commit is contained in:
parent
38914f17ed
commit
6a27628f12
|
@ -101,14 +101,10 @@ public class ParseField {
|
||||||
/**
|
/**
|
||||||
* @param fieldName
|
* @param fieldName
|
||||||
* the field name to match against this {@link ParseField}
|
* the field name to match against this {@link ParseField}
|
||||||
* @param strict
|
|
||||||
* if true an exception will be thrown if a deprecated field name
|
|
||||||
* is given. If false the deprecated name will be matched but a
|
|
||||||
* message will also be logged to the {@link DeprecationLogger}
|
|
||||||
* @return true if <code>fieldName</code> matches any of the acceptable
|
* @return true if <code>fieldName</code> matches any of the acceptable
|
||||||
* names for this {@link ParseField}.
|
* names for this {@link ParseField}.
|
||||||
*/
|
*/
|
||||||
boolean match(String fieldName, boolean strict) {
|
public boolean match(String fieldName) {
|
||||||
Objects.requireNonNull(fieldName, "fieldName cannot be null");
|
Objects.requireNonNull(fieldName, "fieldName cannot be null");
|
||||||
// if this parse field has not been completely deprecated then try to
|
// if this parse field has not been completely deprecated then try to
|
||||||
// match the preferred name
|
// match the preferred name
|
||||||
|
@ -128,11 +124,7 @@ public class ParseField {
|
||||||
// message to indicate what should be used instead
|
// message to indicate what should be used instead
|
||||||
msg = "Deprecated field [" + fieldName + "] used, replaced by [" + allReplacedWith + "]";
|
msg = "Deprecated field [" + fieldName + "] used, replaced by [" + allReplacedWith + "]";
|
||||||
}
|
}
|
||||||
if (strict) {
|
|
||||||
throw new IllegalArgumentException(msg);
|
|
||||||
} else {
|
|
||||||
DEPRECATION_LOGGER.deprecated(msg);
|
DEPRECATION_LOGGER.deprecated(msg);
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,38 +22,29 @@ package org.elasticsearch.common;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Matcher to use in combination with {@link ParseField} while parsing requests. Matches a {@link ParseField}
|
* Matcher to use in combination with {@link ParseField} while parsing requests.
|
||||||
* against a field name and throw deprecation exception depending on the current value of the {@link #PARSE_STRICT} setting.
|
*
|
||||||
|
* @deprecated This class used to be useful to parse in strict mode and emit errors rather than deprecation warnings. Now that we return
|
||||||
|
* warnings as response headers all the time, it is no longer useful and will soon be removed. The removal is in progress and there is
|
||||||
|
* already no strict mode in fact. Use {@link ParseField} directly.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public class ParseFieldMatcher {
|
public class ParseFieldMatcher {
|
||||||
public static final String PARSE_STRICT = "index.query.parse.strict";
|
public static final ParseFieldMatcher EMPTY = new ParseFieldMatcher(Settings.EMPTY);
|
||||||
public static final ParseFieldMatcher EMPTY = new ParseFieldMatcher(false);
|
public static final ParseFieldMatcher STRICT = new ParseFieldMatcher(Settings.EMPTY);
|
||||||
public static final ParseFieldMatcher STRICT = new ParseFieldMatcher(true);
|
|
||||||
|
|
||||||
private final boolean strict;
|
|
||||||
|
|
||||||
public ParseFieldMatcher(Settings settings) {
|
public ParseFieldMatcher(Settings settings) {
|
||||||
this(settings.getAsBoolean(PARSE_STRICT, false));
|
//we don't do anything with the settings argument, this whole class will be soon removed
|
||||||
}
|
|
||||||
|
|
||||||
public ParseFieldMatcher(boolean strict) {
|
|
||||||
this.strict = strict;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Should deprecated settings be rejected? */
|
|
||||||
public boolean isStrict() {
|
|
||||||
return strict;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Matches a {@link ParseField} against a field name, and throws deprecation exception depending on the current
|
* Matches a {@link ParseField} against a field name,
|
||||||
* value of the {@link #PARSE_STRICT} setting.
|
|
||||||
* @param fieldName the field name found in the request while parsing
|
* @param fieldName the field name found in the request while parsing
|
||||||
* @param parseField the parse field that we are looking for
|
* @param parseField the parse field that we are looking for
|
||||||
* @throws IllegalArgumentException whenever we are in strict mode and the request contained a deprecated field
|
* @throws IllegalArgumentException whenever we are in strict mode and the request contained a deprecated field
|
||||||
* @return true whenever the parse field that we are looking for was found, false otherwise
|
* @return true whenever the parse field that we are looking for was found, false otherwise
|
||||||
*/
|
*/
|
||||||
public boolean match(String fieldName, ParseField parseField) {
|
public boolean match(String fieldName, ParseField parseField) {
|
||||||
return parseField.match(fieldName, strict);
|
return parseField.match(fieldName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@ import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.common.joda.FormatDateTimeFormatter;
|
import org.elasticsearch.common.joda.FormatDateTimeFormatter;
|
||||||
import org.elasticsearch.common.joda.Joda;
|
import org.elasticsearch.common.joda.Joda;
|
||||||
import org.elasticsearch.common.logging.DeprecationLogger;
|
import org.elasticsearch.common.logging.DeprecationLogger;
|
||||||
import org.elasticsearch.common.logging.ESLoggerFactory;
|
|
||||||
import org.elasticsearch.common.logging.Loggers;
|
import org.elasticsearch.common.logging.Loggers;
|
||||||
import org.elasticsearch.common.xcontent.support.XContentMapValues;
|
import org.elasticsearch.common.xcontent.support.XContentMapValues;
|
||||||
import org.elasticsearch.index.analysis.NamedAnalyzer;
|
import org.elasticsearch.index.analysis.NamedAnalyzer;
|
||||||
|
@ -43,7 +42,6 @@ import java.util.Set;
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.isArray;
|
import static org.elasticsearch.common.xcontent.support.XContentMapValues.isArray;
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.lenientNodeBooleanValue;
|
import static org.elasticsearch.common.xcontent.support.XContentMapValues.lenientNodeBooleanValue;
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeFloatValue;
|
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeFloatValue;
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeIntegerValue;
|
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeMapValue;
|
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeMapValue;
|
||||||
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeStringValue;
|
import static org.elasticsearch.common.xcontent.support.XContentMapValues.nodeStringValue;
|
||||||
|
|
||||||
|
@ -59,17 +57,12 @@ public class TypeParsers {
|
||||||
private static final Set<String> BOOLEAN_STRINGS = new HashSet<>(Arrays.asList("true", "false"));
|
private static final Set<String> BOOLEAN_STRINGS = new HashSet<>(Arrays.asList("true", "false"));
|
||||||
|
|
||||||
public static boolean nodeBooleanValue(String name, Object node, Mapper.TypeParser.ParserContext parserContext) {
|
public static boolean nodeBooleanValue(String name, Object node, Mapper.TypeParser.ParserContext parserContext) {
|
||||||
// Hook onto ParseFieldMatcher so that parsing becomes strict when setting index.query.parse.strict
|
|
||||||
if (parserContext.parseFieldMatcher().isStrict()) {
|
|
||||||
return XContentMapValues.nodeBooleanValue(node);
|
|
||||||
} else {
|
|
||||||
// TODO: remove this leniency in 6.0
|
// TODO: remove this leniency in 6.0
|
||||||
if (BOOLEAN_STRINGS.contains(node.toString()) == false) {
|
if (BOOLEAN_STRINGS.contains(node.toString()) == false) {
|
||||||
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [{}] but got [{}]", name, node);
|
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [{}] but got [{}]", name, node);
|
||||||
}
|
}
|
||||||
return XContentMapValues.lenientNodeBooleanValue(node);
|
return XContentMapValues.lenientNodeBooleanValue(node);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private static void parseAnalyzersAndTermVectors(FieldMapper.Builder builder, String name, Map<String, Object> fieldNode, Mapper.TypeParser.ParserContext parserContext) {
|
private static void parseAnalyzersAndTermVectors(FieldMapper.Builder builder, String name, Map<String, Object> fieldNode, Mapper.TypeParser.ParserContext parserContext) {
|
||||||
NamedAnalyzer indexAnalyzer = null;
|
NamedAnalyzer indexAnalyzer = null;
|
||||||
|
@ -211,10 +204,10 @@ public class TypeParsers {
|
||||||
throw new MapperParsingException("[" + propName + "] must not have a [null] value");
|
throw new MapperParsingException("[" + propName + "] must not have a [null] value");
|
||||||
}
|
}
|
||||||
if (propName.equals("store")) {
|
if (propName.equals("store")) {
|
||||||
builder.store(parseStore(name, propNode.toString(), parserContext));
|
builder.store(parseStore(propNode.toString()));
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
} else if (propName.equals("index")) {
|
} else if (propName.equals("index")) {
|
||||||
builder.index(parseIndex(name, propNode.toString(), parserContext));
|
builder.index(parseIndex(name, propNode.toString()));
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
} else if (propName.equals(DOC_VALUES)) {
|
} else if (propName.equals(DOC_VALUES)) {
|
||||||
builder.docValues(nodeBooleanValue(DOC_VALUES, propNode, parserContext));
|
builder.docValues(nodeBooleanValue(DOC_VALUES, propNode, parserContext));
|
||||||
|
@ -346,7 +339,7 @@ public class TypeParsers {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean parseIndex(String fieldName, String index, Mapper.TypeParser.ParserContext parserContext) throws MapperParsingException {
|
private static boolean parseIndex(String fieldName, String index) throws MapperParsingException {
|
||||||
switch (index) {
|
switch (index) {
|
||||||
case "true":
|
case "true":
|
||||||
return true;
|
return true;
|
||||||
|
@ -355,21 +348,14 @@ public class TypeParsers {
|
||||||
case "not_analyzed":
|
case "not_analyzed":
|
||||||
case "analyzed":
|
case "analyzed":
|
||||||
case "no":
|
case "no":
|
||||||
if (parserContext.parseFieldMatcher().isStrict() == false) {
|
|
||||||
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [index] but got [{}]", index);
|
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [index] but got [{}]", index);
|
||||||
return "no".equals(index) == false;
|
return "no".equals(index) == false;
|
||||||
} else {
|
|
||||||
throw new IllegalArgumentException("Can't parse [index] value [" + index + "] for field [" + fieldName + "], expected [true] or [false]");
|
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException("Can't parse [index] value [" + index + "] for field [" + fieldName + "], expected [true] or [false]");
|
throw new IllegalArgumentException("Can't parse [index] value [" + index + "] for field [" + fieldName + "], expected [true] or [false]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean parseStore(String fieldName, String store, Mapper.TypeParser.ParserContext parserContext) throws MapperParsingException {
|
private static boolean parseStore(String store) throws MapperParsingException {
|
||||||
if (parserContext.parseFieldMatcher().isStrict()) {
|
|
||||||
return XContentMapValues.nodeBooleanValue(store);
|
|
||||||
} else {
|
|
||||||
if (BOOLEAN_STRINGS.contains(store) == false) {
|
if (BOOLEAN_STRINGS.contains(store) == false) {
|
||||||
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [store] but got [{}]", store);
|
DEPRECATION_LOGGER.deprecated("Expected a boolean for property [store] but got [{}]", store);
|
||||||
}
|
}
|
||||||
|
@ -381,7 +367,6 @@ public class TypeParsers {
|
||||||
return lenientNodeBooleanValue(store);
|
return lenientNodeBooleanValue(store);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public static void parseCopyFields(Object propNode, FieldMapper.Builder builder) {
|
public static void parseCopyFields(Object propNode, FieldMapper.Builder builder) {
|
||||||
|
|
|
@ -62,9 +62,9 @@ public class GeoBoundingBoxQueryBuilder extends AbstractQueryBuilder<GeoBounding
|
||||||
private static final ParseField TYPE_FIELD = new ParseField("type");
|
private static final ParseField TYPE_FIELD = new ParseField("type");
|
||||||
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
||||||
private static final ParseField COERCE_FIELD =new ParseField("coerce", "normalize")
|
private static final ParseField COERCE_FIELD =new ParseField("coerce", "normalize")
|
||||||
.withAllDeprecated("use field validation_method instead");
|
.withAllDeprecated("validation_method");
|
||||||
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed")
|
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed")
|
||||||
.withAllDeprecated("use field validation_method instead");
|
.withAllDeprecated("validation_method");
|
||||||
private static final ParseField FIELD_FIELD = new ParseField("field");
|
private static final ParseField FIELD_FIELD = new ParseField("field");
|
||||||
private static final ParseField TOP_FIELD = new ParseField("top");
|
private static final ParseField TOP_FIELD = new ParseField("top");
|
||||||
private static final ParseField BOTTOM_FIELD = new ParseField("bottom");
|
private static final ParseField BOTTOM_FIELD = new ParseField("bottom");
|
||||||
|
|
|
@ -66,10 +66,8 @@ public class GeoDistanceQueryBuilder extends AbstractQueryBuilder<GeoDistanceQue
|
||||||
public static final boolean DEFAULT_IGNORE_UNMAPPED = false;
|
public static final boolean DEFAULT_IGNORE_UNMAPPED = false;
|
||||||
|
|
||||||
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
||||||
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed")
|
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed").withAllDeprecated("validation_method");
|
||||||
.withAllDeprecated("use validation_method instead");
|
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize").withAllDeprecated("validation_method");
|
||||||
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize")
|
|
||||||
.withAllDeprecated("use validation_method instead");
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
private static final ParseField OPTIMIZE_BBOX_FIELD = new ParseField("optimize_bbox")
|
private static final ParseField OPTIMIZE_BBOX_FIELD = new ParseField("optimize_bbox")
|
||||||
.withAllDeprecated("no replacement: `optimize_bbox` is no longer supported due to recent improvements");
|
.withAllDeprecated("no replacement: `optimize_bbox` is no longer supported due to recent improvements");
|
||||||
|
|
|
@ -49,10 +49,8 @@ public class GeoPolygonQueryBuilder extends AbstractQueryBuilder<GeoPolygonQuery
|
||||||
*/
|
*/
|
||||||
public static final boolean DEFAULT_IGNORE_UNMAPPED = false;
|
public static final boolean DEFAULT_IGNORE_UNMAPPED = false;
|
||||||
|
|
||||||
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize")
|
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize").withAllDeprecated("validation_method");
|
||||||
.withAllDeprecated("use validation_method instead");
|
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed").withAllDeprecated("validation_method");
|
||||||
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed")
|
|
||||||
.withAllDeprecated("use validation_method instead");
|
|
||||||
private static final ParseField VALIDATION_METHOD = new ParseField("validation_method");
|
private static final ParseField VALIDATION_METHOD = new ParseField("validation_method");
|
||||||
private static final ParseField POINTS_FIELD = new ParseField("points");
|
private static final ParseField POINTS_FIELD = new ParseField("points");
|
||||||
private static final ParseField IGNORE_UNMAPPED_FIELD = new ParseField("ignore_unmapped");
|
private static final ParseField IGNORE_UNMAPPED_FIELD = new ParseField("ignore_unmapped");
|
||||||
|
|
|
@ -74,10 +74,8 @@ public class GeoDistanceSortBuilder extends SortBuilder<GeoDistanceSortBuilder>
|
||||||
private static final ParseField UNIT_FIELD = new ParseField("unit");
|
private static final ParseField UNIT_FIELD = new ParseField("unit");
|
||||||
private static final ParseField DISTANCE_TYPE_FIELD = new ParseField("distance_type");
|
private static final ParseField DISTANCE_TYPE_FIELD = new ParseField("distance_type");
|
||||||
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
private static final ParseField VALIDATION_METHOD_FIELD = new ParseField("validation_method");
|
||||||
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed")
|
private static final ParseField IGNORE_MALFORMED_FIELD = new ParseField("ignore_malformed").withAllDeprecated("validation_method");
|
||||||
.withAllDeprecated("use validation_method instead");
|
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize").withAllDeprecated("validation_method");
|
||||||
private static final ParseField COERCE_FIELD = new ParseField("coerce", "normalize")
|
|
||||||
.withAllDeprecated("use validation_method instead");
|
|
||||||
private static final ParseField SORTMODE_FIELD = new ParseField("mode", "sort_mode");
|
private static final ParseField SORTMODE_FIELD = new ParseField("mode", "sort_mode");
|
||||||
|
|
||||||
private final String fieldName;
|
private final String fieldName;
|
||||||
|
|
|
@ -20,7 +20,6 @@ package org.elasticsearch.common;
|
||||||
|
|
||||||
import org.elasticsearch.test.ESTestCase;
|
import org.elasticsearch.test.ESTestCase;
|
||||||
|
|
||||||
import static org.hamcrest.CoreMatchers.containsString;
|
|
||||||
import static org.hamcrest.CoreMatchers.is;
|
import static org.hamcrest.CoreMatchers.is;
|
||||||
import static org.hamcrest.CoreMatchers.not;
|
import static org.hamcrest.CoreMatchers.not;
|
||||||
import static org.hamcrest.CoreMatchers.sameInstance;
|
import static org.hamcrest.CoreMatchers.sameInstance;
|
||||||
|
@ -33,32 +32,16 @@ public class ParseFieldTests extends ESTestCase {
|
||||||
String[] deprecated = new String[]{"barFoo", "bar_foo", "Foobar"};
|
String[] deprecated = new String[]{"barFoo", "bar_foo", "Foobar"};
|
||||||
ParseField withDeprecations = field.withDeprecation(deprecated);
|
ParseField withDeprecations = field.withDeprecation(deprecated);
|
||||||
assertThat(field, not(sameInstance(withDeprecations)));
|
assertThat(field, not(sameInstance(withDeprecations)));
|
||||||
assertThat(field.match(name, false), is(true));
|
assertThat(field.match(name), is(true));
|
||||||
assertThat(field.match("foo bar", false), is(false));
|
assertThat(field.match("foo bar"), is(false));
|
||||||
for (String deprecatedName : deprecated) {
|
for (String deprecatedName : deprecated) {
|
||||||
assertThat(field.match(deprecatedName, false), is(false));
|
assertThat(field.match(deprecatedName), is(false));
|
||||||
}
|
}
|
||||||
|
|
||||||
assertThat(withDeprecations.match(name, false), is(true));
|
assertThat(withDeprecations.match(name), is(true));
|
||||||
assertThat(withDeprecations.match("foo bar", false), is(false));
|
assertThat(withDeprecations.match("foo bar"), is(false));
|
||||||
for (String deprecatedName : deprecated) {
|
for (String deprecatedName : deprecated) {
|
||||||
assertThat(withDeprecations.match(deprecatedName, false), is(true));
|
assertThat(withDeprecations.match(deprecatedName), is(true));
|
||||||
}
|
|
||||||
|
|
||||||
// now with strict mode
|
|
||||||
assertThat(field.match(name, true), is(true));
|
|
||||||
assertThat(field.match("foo bar", true), is(false));
|
|
||||||
for (String deprecatedName : deprecated) {
|
|
||||||
assertThat(field.match(deprecatedName, true), is(false));
|
|
||||||
}
|
|
||||||
|
|
||||||
assertThat(withDeprecations.match(name, true), is(true));
|
|
||||||
assertThat(withDeprecations.match("foo bar", true), is(false));
|
|
||||||
for (String deprecatedName : deprecated) {
|
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> {
|
|
||||||
withDeprecations.match(deprecatedName, true);
|
|
||||||
});
|
|
||||||
assertThat(e.getMessage(), containsString("used, expected [foo_bar] instead"));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,13 +67,8 @@ public class ParseFieldTests extends ESTestCase {
|
||||||
field = new ParseField(name).withAllDeprecated("like");
|
field = new ParseField(name).withAllDeprecated("like");
|
||||||
}
|
}
|
||||||
|
|
||||||
// strict mode off
|
assertThat(field.match(randomFrom(allValues)), is(true));
|
||||||
assertThat(field.match(randomFrom(allValues), false), is(true));
|
assertThat(field.match("not a field name"), is(false));
|
||||||
assertThat(field.match("not a field name", false), is(false));
|
|
||||||
|
|
||||||
// now with strict mode
|
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> field.match(randomFrom(allValues), true));
|
|
||||||
assertThat(e.getMessage(), containsString(" used, replaced by [like]"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testGetAllNamesIncludedDeprecated() {
|
public void testGetAllNamesIncludedDeprecated() {
|
||||||
|
|
|
@ -22,6 +22,9 @@ import org.elasticsearch.common.ParseField;
|
||||||
import org.elasticsearch.common.ParseFieldMatcher;
|
import org.elasticsearch.common.ParseFieldMatcher;
|
||||||
import org.elasticsearch.common.ParseFieldMatcherSupplier;
|
import org.elasticsearch.common.ParseFieldMatcherSupplier;
|
||||||
import org.elasticsearch.common.ParsingException;
|
import org.elasticsearch.common.ParsingException;
|
||||||
|
import org.elasticsearch.common.logging.DeprecationLogger;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.util.concurrent.ThreadContext;
|
||||||
import org.elasticsearch.common.xcontent.AbstractObjectParser.NoContextParser;
|
import org.elasticsearch.common.xcontent.AbstractObjectParser.NoContextParser;
|
||||||
import org.elasticsearch.common.xcontent.ObjectParser.NamedObjectParser;
|
import org.elasticsearch.common.xcontent.ObjectParser.NamedObjectParser;
|
||||||
import org.elasticsearch.common.xcontent.ObjectParser.ValueType;
|
import org.elasticsearch.common.xcontent.ObjectParser.ValueType;
|
||||||
|
@ -35,6 +38,8 @@ import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
import static org.hamcrest.Matchers.hasItem;
|
||||||
import static org.hamcrest.Matchers.hasSize;
|
import static org.hamcrest.Matchers.hasSize;
|
||||||
|
|
||||||
public class ObjectParserTests extends ESTestCase {
|
public class ObjectParserTests extends ESTestCase {
|
||||||
|
@ -218,8 +223,9 @@ public class ObjectParserTests extends ESTestCase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testDeprecationFail() throws IOException {
|
public void testDeprecationWarnings() throws IOException {
|
||||||
XContentParser parser = createParser(JsonXContent.jsonXContent, "{\"old_test\" : \"foo\"}");
|
try (ThreadContext threadContext = new ThreadContext(Settings.EMPTY)) {
|
||||||
|
DeprecationLogger.setThreadContext(threadContext);
|
||||||
class TestStruct {
|
class TestStruct {
|
||||||
public String test;
|
public String test;
|
||||||
}
|
}
|
||||||
|
@ -228,17 +234,16 @@ public class ObjectParserTests extends ESTestCase {
|
||||||
|
|
||||||
objectParser.declareField((i, v, c) -> v.test = i.text(), new ParseField("test", "old_test"), ObjectParser.ValueType.STRING);
|
objectParser.declareField((i, v, c) -> v.test = i.text(), new ParseField("test", "old_test"), ObjectParser.ValueType.STRING);
|
||||||
|
|
||||||
try {
|
XContentParser parser = createParser(XContentType.JSON.xContent(), "{\"old_test\" : \"foo\"}");
|
||||||
objectParser.parse(parser, s, STRICT_PARSING);
|
|
||||||
fail("deprecated value");
|
|
||||||
} catch (IllegalArgumentException ex) {
|
|
||||||
assertEquals(ex.getMessage(), "Deprecated field [old_test] used, expected [test] instead");
|
|
||||||
|
|
||||||
}
|
|
||||||
assertNull(s.test);
|
|
||||||
parser = createParser(JsonXContent.jsonXContent, "{\"old_test\" : \"foo\"}");
|
|
||||||
objectParser.parse(parser, s, () -> ParseFieldMatcher.EMPTY);
|
objectParser.parse(parser, s, () -> ParseFieldMatcher.EMPTY);
|
||||||
|
|
||||||
assertEquals("foo", s.test);
|
assertEquals("foo", s.test);
|
||||||
|
|
||||||
|
final List<String> warnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
||||||
|
assertThat(warnings, hasSize(1));
|
||||||
|
assertThat(warnings, hasItem(equalTo("Deprecated field [old_test] used, expected [test] instead")));
|
||||||
|
DeprecationLogger.removeThreadContext(threadContext);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFailOnValueType() throws IOException {
|
public void testFailOnValueType() throws IOException {
|
||||||
|
|
|
@ -19,13 +19,8 @@
|
||||||
|
|
||||||
package org.elasticsearch.index.query;
|
package org.elasticsearch.index.query;
|
||||||
|
|
||||||
import org.apache.lucene.search.BooleanClause;
|
|
||||||
import org.apache.lucene.search.BooleanQuery;
|
|
||||||
import org.apache.lucene.search.ConstantScoreQuery;
|
|
||||||
import org.apache.lucene.search.MatchNoDocsQuery;
|
import org.apache.lucene.search.MatchNoDocsQuery;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
import org.apache.lucene.spatial.geopoint.search.GeoPointInBBoxQuery;
|
|
||||||
import org.elasticsearch.Version;
|
|
||||||
import org.elasticsearch.common.geo.GeoPoint;
|
import org.elasticsearch.common.geo.GeoPoint;
|
||||||
import org.elasticsearch.common.geo.GeoUtils;
|
import org.elasticsearch.common.geo.GeoUtils;
|
||||||
import org.elasticsearch.index.mapper.MappedFieldType;
|
import org.elasticsearch.index.mapper.MappedFieldType;
|
||||||
|
@ -40,7 +35,6 @@ import java.io.IOException;
|
||||||
import static org.hamcrest.CoreMatchers.containsString;
|
import static org.hamcrest.CoreMatchers.containsString;
|
||||||
import static org.hamcrest.CoreMatchers.instanceOf;
|
import static org.hamcrest.CoreMatchers.instanceOf;
|
||||||
import static org.hamcrest.CoreMatchers.notNullValue;
|
import static org.hamcrest.CoreMatchers.notNullValue;
|
||||||
import static org.hamcrest.Matchers.equalTo;
|
|
||||||
|
|
||||||
public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBoundingBoxQueryBuilder> {
|
public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBoundingBoxQueryBuilder> {
|
||||||
/** Randomly generate either NaN or one of the two infinity values. */
|
/** Randomly generate either NaN or one of the two infinity values. */
|
||||||
|
@ -118,7 +112,7 @@ public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBo
|
||||||
|
|
||||||
public void testExceptionOnMissingTypes() throws IOException {
|
public void testExceptionOnMissingTypes() throws IOException {
|
||||||
assumeTrue("test runs only when at least a type is registered", getCurrentTypes().length == 0);
|
assumeTrue("test runs only when at least a type is registered", getCurrentTypes().length == 0);
|
||||||
QueryShardException e = expectThrows(QueryShardException.class, () -> super.testToQuery());
|
QueryShardException e = expectThrows(QueryShardException.class, super::testToQuery);
|
||||||
assertEquals("failed to find geo_point field [mapped_geo_point]", e.getMessage());
|
assertEquals("failed to find geo_point field [mapped_geo_point]", e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -412,7 +406,7 @@ public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBo
|
||||||
assertEquals(json, GeoExecType.MEMORY, parsed.type());
|
assertEquals(json, GeoExecType.MEMORY, parsed.type());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromJsonCoerceFails() throws IOException {
|
public void testFromJsonCoerceIsDeprecated() throws IOException {
|
||||||
String json =
|
String json =
|
||||||
"{\n" +
|
"{\n" +
|
||||||
" \"geo_bounding_box\" : {\n" +
|
" \"geo_bounding_box\" : {\n" +
|
||||||
|
@ -426,11 +420,12 @@ public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBo
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
parseQuery(json);
|
||||||
|
assertWarningHeaders("Deprecated field [coerce] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromJsonIgnoreMalformedFails() throws IOException {
|
public void testFromJsonIgnoreMalformedIsDeprecated() throws IOException {
|
||||||
String json =
|
String json =
|
||||||
"{\n" +
|
"{\n" +
|
||||||
" \"geo_bounding_box\" : {\n" +
|
" \"geo_bounding_box\" : {\n" +
|
||||||
|
@ -444,8 +439,8 @@ public class GeoBoundingBoxQueryBuilderTests extends AbstractQueryTestCase<GeoBo
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [ignore_malformed] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -316,7 +316,7 @@ public class GeoDistanceQueryBuilderTests extends AbstractQueryTestCase<GeoDista
|
||||||
assertEquals(json, 12000.0, parsed.distance(), 0.0001);
|
assertEquals(json, 12000.0, parsed.distance(), 0.0001);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testOptimizeBboxFails() throws IOException {
|
public void testOptimizeBboxIsDeprecated() throws IOException {
|
||||||
String json =
|
String json =
|
||||||
"{\n" +
|
"{\n" +
|
||||||
" \"geo_distance\" : {\n" +
|
" \"geo_distance\" : {\n" +
|
||||||
|
@ -329,11 +329,12 @@ public class GeoDistanceQueryBuilderTests extends AbstractQueryTestCase<GeoDista
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [optimize_bbox] used, replaced by [no replacement: " +
|
||||||
|
"`optimize_bbox` is no longer supported due to recent improvements]");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromCoerceFails() throws IOException {
|
public void testFromCoerceIsDeprecated() throws IOException {
|
||||||
String json =
|
String json =
|
||||||
"{\n" +
|
"{\n" +
|
||||||
" \"geo_distance\" : {\n" +
|
" \"geo_distance\" : {\n" +
|
||||||
|
@ -345,11 +346,11 @@ public class GeoDistanceQueryBuilderTests extends AbstractQueryTestCase<GeoDista
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [coerce] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromJsonIgnoreMalformedFails() throws IOException {
|
public void testFromJsonIgnoreMalformedIsDeprecated() throws IOException {
|
||||||
String json =
|
String json =
|
||||||
"{\n" +
|
"{\n" +
|
||||||
" \"geo_distance\" : {\n" +
|
" \"geo_distance\" : {\n" +
|
||||||
|
@ -361,8 +362,8 @@ public class GeoDistanceQueryBuilderTests extends AbstractQueryTestCase<GeoDista
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [ignore_malformed] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -139,8 +139,8 @@ public class GeoPolygonQueryBuilderTests extends AbstractQueryTestCase<GeoPolygo
|
||||||
builder.field("normalize", true); // deprecated
|
builder.field("normalize", true); // deprecated
|
||||||
builder.endObject();
|
builder.endObject();
|
||||||
builder.endObject();
|
builder.endObject();
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(builder.string()));
|
parseQuery(builder.string());
|
||||||
assertEquals("Deprecated field [normalize] used, replaced by [use validation_method instead]", e.getMessage());
|
assertWarningHeaders("Deprecated field [normalize] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testParsingAndToQueryParsingExceptions() throws IOException {
|
public void testParsingAndToQueryParsingExceptions() throws IOException {
|
||||||
|
@ -265,9 +265,8 @@ public class GeoPolygonQueryBuilderTests extends AbstractQueryTestCase<GeoPolygo
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [ignore_malformed] used, replaced by [validation_method]");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromJsonCoerceDeprecated() throws IOException {
|
public void testFromJsonCoerceDeprecated() throws IOException {
|
||||||
|
@ -282,8 +281,8 @@ public class GeoPolygonQueryBuilderTests extends AbstractQueryTestCase<GeoPolygo
|
||||||
" \"boost\" : 1.0\n" +
|
" \"boost\" : 1.0\n" +
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json));
|
parseQuery(json);
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
assertWarningHeaders("Deprecated field [coerce] used, replaced by [validation_method]");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -149,12 +149,9 @@ public class HasParentQueryBuilderTests extends AbstractQueryTestCase<HasParentQ
|
||||||
builder.field("type", "foo"); // deprecated
|
builder.field("type", "foo"); // deprecated
|
||||||
builder.endObject();
|
builder.endObject();
|
||||||
builder.endObject();
|
builder.endObject();
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(builder.string()));
|
HasParentQueryBuilder queryBuilder = (HasParentQueryBuilder) parseQuery(builder.string());
|
||||||
assertEquals("Deprecated field [type] used, expected [parent_type] instead", e.getMessage());
|
|
||||||
|
|
||||||
HasParentQueryBuilder queryBuilder = (HasParentQueryBuilder) parseQuery(builder.string(), ParseFieldMatcher.EMPTY);
|
|
||||||
assertEquals("foo", queryBuilder.type());
|
assertEquals("foo", queryBuilder.type());
|
||||||
checkWarningHeaders("Deprecated field [type] used, expected [parent_type] instead");
|
assertWarningHeaders("Deprecated field [type] used, expected [parent_type] instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testToQueryInnerQueryType() throws IOException {
|
public void testToQueryInnerQueryType() throws IOException {
|
||||||
|
|
|
@ -164,11 +164,8 @@ public class IdsQueryBuilderTests extends AbstractQueryTestCase<IdsQueryBuilder>
|
||||||
IdsQueryBuilder parsed = (IdsQueryBuilder) parseQuery(contentString, ParseFieldMatcher.EMPTY);
|
IdsQueryBuilder parsed = (IdsQueryBuilder) parseQuery(contentString, ParseFieldMatcher.EMPTY);
|
||||||
assertEquals(testQuery, parsed);
|
assertEquals(testQuery, parsed);
|
||||||
|
|
||||||
ParsingException e = expectThrows(ParsingException.class, () -> parseQuery(contentString));
|
parseQuery(contentString);
|
||||||
checkWarningHeaders("Deprecated field [_type] used, expected [type] instead");
|
assertWarningHeaders("Deprecated field [_type] used, expected [type] instead");
|
||||||
assertEquals("Deprecated field [_type] used, expected [type] instead", e.getMessage());
|
|
||||||
assertEquals(3, e.getLineNumber());
|
|
||||||
assertEquals(19, e.getColumnNumber());
|
|
||||||
|
|
||||||
//array of types can also be called types rather than type
|
//array of types can also be called types rather than type
|
||||||
final String contentString2 = "{\n" +
|
final String contentString2 = "{\n" +
|
||||||
|
@ -180,10 +177,7 @@ public class IdsQueryBuilderTests extends AbstractQueryTestCase<IdsQueryBuilder>
|
||||||
parsed = (IdsQueryBuilder) parseQuery(contentString2, ParseFieldMatcher.EMPTY);
|
parsed = (IdsQueryBuilder) parseQuery(contentString2, ParseFieldMatcher.EMPTY);
|
||||||
assertEquals(testQuery, parsed);
|
assertEquals(testQuery, parsed);
|
||||||
|
|
||||||
e = expectThrows(ParsingException.class, () -> parseQuery(contentString2));
|
parseQuery(contentString2);
|
||||||
checkWarningHeaders("Deprecated field [types] used, expected [type] instead");
|
assertWarningHeaders("Deprecated field [types] used, expected [type] instead");
|
||||||
assertEquals("Deprecated field [types] used, expected [type] instead", e.getMessage());
|
|
||||||
assertEquals(3, e.getLineNumber());
|
|
||||||
assertEquals(19, e.getColumnNumber());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -318,13 +318,8 @@ public class MatchQueryBuilderTests extends AbstractQueryTestCase<MatchQueryBuil
|
||||||
|
|
||||||
assertSerialization(qb);
|
assertSerialization(qb);
|
||||||
|
|
||||||
checkWarningHeaders("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]",
|
assertWarningHeaders("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]",
|
||||||
"Deprecated field [slop] used, replaced by [match_phrase query]");
|
"Deprecated field [slop] used, replaced by [match_phrase query]");
|
||||||
|
|
||||||
// Now check with strict parsing an exception is thrown
|
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json, ParseFieldMatcher.STRICT));
|
|
||||||
assertThat(e.getMessage(),
|
|
||||||
containsString("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testLegacyMatchPhraseQuery() throws IOException {
|
public void testLegacyMatchPhraseQuery() throws IOException {
|
||||||
|
@ -351,16 +346,9 @@ public class MatchQueryBuilderTests extends AbstractQueryTestCase<MatchQueryBuil
|
||||||
checkGeneratedJson(json, qb);
|
checkGeneratedJson(json, qb);
|
||||||
|
|
||||||
assertEquals(json, expectedQB, qb);
|
assertEquals(json, expectedQB, qb);
|
||||||
|
|
||||||
assertSerialization(qb);
|
assertSerialization(qb);
|
||||||
|
assertWarningHeaders("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]",
|
||||||
checkWarningHeaders("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]",
|
|
||||||
"Deprecated field [slop] used, replaced by [match_phrase query]");
|
"Deprecated field [slop] used, replaced by [match_phrase query]");
|
||||||
|
|
||||||
// Now check with strict parsing an exception is thrown
|
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> parseQuery(json, ParseFieldMatcher.STRICT));
|
|
||||||
assertThat(e.getMessage(),
|
|
||||||
containsString("Deprecated field [type] used, replaced by [match_phrase and match_phrase_prefix query]"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFuzzinessOnNonStringField() throws Exception {
|
public void testFuzzinessOnNonStringField() throws Exception {
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.lucene.search.PointRangeQuery;
|
||||||
import org.apache.lucene.search.Query;
|
import org.apache.lucene.search.Query;
|
||||||
import org.apache.lucene.search.TermRangeQuery;
|
import org.apache.lucene.search.TermRangeQuery;
|
||||||
import org.elasticsearch.ElasticsearchParseException;
|
import org.elasticsearch.ElasticsearchParseException;
|
||||||
import org.elasticsearch.common.ParseFieldMatcher;
|
|
||||||
import org.elasticsearch.common.ParsingException;
|
import org.elasticsearch.common.ParsingException;
|
||||||
import org.elasticsearch.common.geo.ShapeRelation;
|
import org.elasticsearch.common.geo.ShapeRelation;
|
||||||
import org.elasticsearch.common.lucene.BytesRefs;
|
import org.elasticsearch.common.lucene.BytesRefs;
|
||||||
|
@ -39,7 +38,6 @@ import org.elasticsearch.test.AbstractQueryTestCase;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
import org.joda.time.DateTimeZone;
|
import org.joda.time.DateTimeZone;
|
||||||
import org.joda.time.chrono.ISOChronology;
|
import org.joda.time.chrono.ISOChronology;
|
||||||
import org.locationtech.spatial4j.shape.SpatialRelation;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -388,14 +386,8 @@ public class RangeQueryBuilderTests extends AbstractQueryTestCase<RangeQueryBuil
|
||||||
" }\n" +
|
" }\n" +
|
||||||
"}";
|
"}";
|
||||||
|
|
||||||
// non strict parsing should accept "_name" on top level
|
assertNotNull(parseQuery(deprecatedJson));
|
||||||
assertNotNull(parseQuery(json, ParseFieldMatcher.EMPTY));
|
assertWarningHeaders("Deprecated field [_name] used, replaced by [query name is not supported in short version of range query]");
|
||||||
|
|
||||||
// with strict parsing, ParseField will throw exception
|
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class,
|
|
||||||
() -> parseQuery(deprecatedJson, ParseFieldMatcher.STRICT));
|
|
||||||
assertEquals("Deprecated field [_name] used, replaced by [query name is not supported in short version of range query]",
|
|
||||||
e.getMessage());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testRewriteDateToMatchAll() throws IOException {
|
public void testRewriteDateToMatchAll() throws IOException {
|
||||||
|
|
|
@ -25,8 +25,9 @@ import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
||||||
import org.elasticsearch.common.ParseFieldMatcher;
|
import org.elasticsearch.common.ParseFieldMatcher;
|
||||||
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
|
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
|
||||||
import org.elasticsearch.common.io.stream.Writeable;
|
import org.elasticsearch.common.logging.DeprecationLogger;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.util.concurrent.ThreadContext;
|
||||||
import org.elasticsearch.common.xcontent.ToXContent;
|
import org.elasticsearch.common.xcontent.ToXContent;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
import org.elasticsearch.common.xcontent.XContentFactory;
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
|
@ -66,16 +67,22 @@ import org.elasticsearch.search.SearchModule;
|
||||||
import org.elasticsearch.test.ESTestCase;
|
import org.elasticsearch.test.ESTestCase;
|
||||||
import org.elasticsearch.test.IndexSettingsModule;
|
import org.elasticsearch.test.IndexSettingsModule;
|
||||||
import org.elasticsearch.watcher.ResourceWatcherService;
|
import org.elasticsearch.watcher.ResourceWatcherService;
|
||||||
|
import org.junit.After;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import static java.util.Collections.emptyList;
|
import static java.util.Collections.emptyList;
|
||||||
import static org.elasticsearch.test.EqualsHashCodeTestUtils.checkEqualsAndHashCode;
|
import static org.elasticsearch.test.EqualsHashCodeTestUtils.checkEqualsAndHashCode;
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
import static org.hamcrest.Matchers.hasItem;
|
||||||
|
import static org.hamcrest.Matchers.hasSize;
|
||||||
|
|
||||||
public abstract class AbstractSortTestCase<T extends SortBuilder<T>> extends ESTestCase {
|
public abstract class AbstractSortTestCase<T extends SortBuilder<T>> extends ESTestCase {
|
||||||
|
|
||||||
|
@ -84,6 +91,7 @@ public abstract class AbstractSortTestCase<T extends SortBuilder<T>> extends EST
|
||||||
private static final int NUMBER_OF_TESTBUILDERS = 20;
|
private static final int NUMBER_OF_TESTBUILDERS = 20;
|
||||||
static IndicesQueriesRegistry indicesQueriesRegistry;
|
static IndicesQueriesRegistry indicesQueriesRegistry;
|
||||||
private static ScriptService scriptService;
|
private static ScriptService scriptService;
|
||||||
|
private ThreadContext threadContext;
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void init() throws IOException {
|
public static void init() throws IOException {
|
||||||
|
@ -115,6 +123,39 @@ public abstract class AbstractSortTestCase<T extends SortBuilder<T>> extends EST
|
||||||
indicesQueriesRegistry = null;
|
indicesQueriesRegistry = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void beforeTest() {
|
||||||
|
this.threadContext = new ThreadContext(Settings.EMPTY);
|
||||||
|
DeprecationLogger.setThreadContext(threadContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void afterTest() throws IOException {
|
||||||
|
//Check that there are no unaccounted warning headers. These should be checked with assertWarningHeaders(String...) in the
|
||||||
|
//appropriate test
|
||||||
|
final List<String> warnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
||||||
|
assertNull("unexpected warning headers", warnings);
|
||||||
|
DeprecationLogger.removeThreadContext(this.threadContext);
|
||||||
|
this.threadContext.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void assertWarningHeaders(String... expectedWarnings) {
|
||||||
|
final List<String> actualWarnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
||||||
|
assertThat(actualWarnings, hasSize(expectedWarnings.length));
|
||||||
|
for (String msg : expectedWarnings) {
|
||||||
|
assertThat(actualWarnings, hasItem(equalTo(msg)));
|
||||||
|
}
|
||||||
|
// "clear" current warning headers by setting a new ThreadContext
|
||||||
|
DeprecationLogger.removeThreadContext(this.threadContext);
|
||||||
|
try {
|
||||||
|
this.threadContext.close();
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
this.threadContext = new ThreadContext(Settings.EMPTY);
|
||||||
|
DeprecationLogger.setThreadContext(this.threadContext);
|
||||||
|
}
|
||||||
|
|
||||||
/** Returns random sort that is put under test */
|
/** Returns random sort that is put under test */
|
||||||
protected abstract T createTestItem();
|
protected abstract T createTestItem();
|
||||||
|
|
||||||
|
@ -251,6 +292,6 @@ public abstract class AbstractSortTestCase<T extends SortBuilder<T>> extends EST
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
private T copy(T original) throws IOException {
|
private T copy(T original) throws IOException {
|
||||||
return copyWriteable(original, namedWriteableRegistry,
|
return copyWriteable(original, namedWriteableRegistry,
|
||||||
(Writeable.Reader<T>) namedWriteableRegistry.getReader(SortBuilder.class, original.getWriteableName()));
|
namedWriteableRegistry.getReader(SortBuilder.class, original.getWriteableName()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -267,17 +267,15 @@ public class GeoDistanceSortBuilderTests extends AbstractSortTestCase<GeoDistanc
|
||||||
" } ],\n" +
|
" } ],\n" +
|
||||||
" \"unit\" : \"m\",\n" +
|
" \"unit\" : \"m\",\n" +
|
||||||
" \"distance_type\" : \"sloppy_arc\",\n" +
|
" \"distance_type\" : \"sloppy_arc\",\n" +
|
||||||
" \"mode\" : \"SUM\",\n" +
|
" \"mode\" : \"MAX\",\n" +
|
||||||
" \"coerce\" : true\n" +
|
" \"coerce\" : true\n" +
|
||||||
"}";
|
"}";
|
||||||
XContentParser itemParser = createParser(JsonXContent.jsonXContent, json);
|
XContentParser itemParser = createParser(JsonXContent.jsonXContent, json);
|
||||||
itemParser.nextToken();
|
itemParser.nextToken();
|
||||||
|
|
||||||
QueryParseContext context = new QueryParseContext(indicesQueriesRegistry, itemParser, ParseFieldMatcher.STRICT);
|
QueryParseContext context = new QueryParseContext(indicesQueriesRegistry, itemParser, ParseFieldMatcher.EMPTY);
|
||||||
|
GeoDistanceSortBuilder.fromXContent(context, "");
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> GeoDistanceSortBuilder.fromXContent(context, ""));
|
assertWarningHeaders("Deprecated field [coerce] used, replaced by [validation_method]");
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testIgnoreMalformedIsDeprecated() throws IOException {
|
public void testIgnoreMalformedIsDeprecated() throws IOException {
|
||||||
|
@ -288,17 +286,15 @@ public class GeoDistanceSortBuilderTests extends AbstractSortTestCase<GeoDistanc
|
||||||
" } ],\n" +
|
" } ],\n" +
|
||||||
" \"unit\" : \"m\",\n" +
|
" \"unit\" : \"m\",\n" +
|
||||||
" \"distance_type\" : \"sloppy_arc\",\n" +
|
" \"distance_type\" : \"sloppy_arc\",\n" +
|
||||||
" \"mode\" : \"SUM\",\n" +
|
" \"mode\" : \"MAX\",\n" +
|
||||||
" \"ignore_malformed\" : true\n" +
|
" \"ignore_malformed\" : true\n" +
|
||||||
"}";
|
"}";
|
||||||
XContentParser itemParser = createParser(JsonXContent.jsonXContent, json);
|
XContentParser itemParser = createParser(JsonXContent.jsonXContent, json);
|
||||||
itemParser.nextToken();
|
itemParser.nextToken();
|
||||||
|
|
||||||
QueryParseContext context = new QueryParseContext(indicesQueriesRegistry, itemParser, ParseFieldMatcher.STRICT);
|
QueryParseContext context = new QueryParseContext(indicesQueriesRegistry, itemParser, ParseFieldMatcher.EMPTY);
|
||||||
|
GeoDistanceSortBuilder.fromXContent(context, "");
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> GeoDistanceSortBuilder.fromXContent(context, ""));
|
assertWarningHeaders("Deprecated field [ignore_malformed] used, replaced by [validation_method]");
|
||||||
assertTrue(e.getMessage().startsWith("Deprecated field "));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testSortModeSumIsRejectedInJSON() throws IOException {
|
public void testSortModeSumIsRejectedInJSON() throws IOException {
|
||||||
|
@ -455,8 +451,8 @@ public class GeoDistanceSortBuilderTests extends AbstractSortTestCase<GeoDistanc
|
||||||
sortBuilder.field("unit", "km");
|
sortBuilder.field("unit", "km");
|
||||||
sortBuilder.field("sort_mode", "max");
|
sortBuilder.field("sort_mode", "max");
|
||||||
sortBuilder.endObject();
|
sortBuilder.endObject();
|
||||||
IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> parse(sortBuilder));
|
parse(sortBuilder);
|
||||||
assertEquals("Deprecated field [sort_mode] used, expected [mode] instead", ex.getMessage());
|
assertWarningHeaders("Deprecated field [sort_mode] used, expected [mode] instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
private GeoDistanceSortBuilder parse(XContentBuilder sortBuilder) throws Exception {
|
private GeoDistanceSortBuilder parse(XContentBuilder sortBuilder) throws Exception {
|
||||||
|
|
|
@ -87,7 +87,7 @@ public class MustacheScriptEngineTests extends ESTestCase {
|
||||||
+ "\"params\":{\"template\":\"all\"}"
|
+ "\"params\":{\"template\":\"all\"}"
|
||||||
+ "}";
|
+ "}";
|
||||||
XContentParser parser = createParser(JsonXContent.jsonXContent, templateString);
|
XContentParser parser = createParser(JsonXContent.jsonXContent, templateString);
|
||||||
Script script = Script.parse(parser, new ParseFieldMatcher(false));
|
Script script = Script.parse(parser, ParseFieldMatcher.EMPTY);
|
||||||
CompiledScript compiledScript = new CompiledScript(ScriptType.INLINE, null, "mustache",
|
CompiledScript compiledScript = new CompiledScript(ScriptType.INLINE, null, "mustache",
|
||||||
qe.compile(null, script.getIdOrCode(), Collections.emptyMap()));
|
qe.compile(null, script.getIdOrCode(), Collections.emptyMap()));
|
||||||
ExecutableScript executableScript = qe.executable(compiledScript, script.getParams());
|
ExecutableScript executableScript = qe.executable(compiledScript, script.getParams());
|
||||||
|
@ -103,7 +103,7 @@ public class MustacheScriptEngineTests extends ESTestCase {
|
||||||
+ " }"
|
+ " }"
|
||||||
+ "}";
|
+ "}";
|
||||||
XContentParser parser = createParser(JsonXContent.jsonXContent, templateString);
|
XContentParser parser = createParser(JsonXContent.jsonXContent, templateString);
|
||||||
Script script = Script.parse(parser, new ParseFieldMatcher(false));
|
Script script = Script.parse(parser, ParseFieldMatcher.EMPTY);
|
||||||
CompiledScript compiledScript = new CompiledScript(ScriptType.INLINE, null, "mustache",
|
CompiledScript compiledScript = new CompiledScript(ScriptType.INLINE, null, "mustache",
|
||||||
qe.compile(null, script.getIdOrCode(), Collections.emptyMap()));
|
qe.compile(null, script.getIdOrCode(), Collections.emptyMap()));
|
||||||
ExecutableScript executableScript = qe.executable(compiledScript, script.getParams());
|
ExecutableScript executableScript = qe.executable(compiledScript, script.getParams());
|
||||||
|
|
|
@ -63,7 +63,7 @@ public class TemplateQueryBuilderTests extends AbstractQueryTestCase<TemplateQue
|
||||||
* Instead of having to check them once in every single test, this is done here after each test is run
|
* Instead of having to check them once in every single test, this is done here after each test is run
|
||||||
*/
|
*/
|
||||||
@After void checkWarningHeaders() throws IOException {
|
@After void checkWarningHeaders() throws IOException {
|
||||||
checkWarningHeaders("[template] query is deprecated, use search template api instead");
|
assertWarningHeaders("[template] query is deprecated, use search template api instead");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -187,7 +187,6 @@ public abstract class AbstractQueryTestCase<QB extends AbstractQueryBuilder<QB>>
|
||||||
.put(ScriptService.SCRIPT_AUTO_RELOAD_ENABLED_SETTING.getKey(), false)
|
.put(ScriptService.SCRIPT_AUTO_RELOAD_ENABLED_SETTING.getKey(), false)
|
||||||
.build();
|
.build();
|
||||||
indexSettings = Settings.builder()
|
indexSettings = Settings.builder()
|
||||||
.put(ParseFieldMatcher.PARSE_STRICT, true)
|
|
||||||
.put(IndexMetaData.SETTING_VERSION_CREATED, indexVersionCreated).build();
|
.put(IndexMetaData.SETTING_VERSION_CREATED, indexVersionCreated).build();
|
||||||
|
|
||||||
index = new Index(randomAsciiOfLengthBetween(1, 10), "_na_");
|
index = new Index(randomAsciiOfLengthBetween(1, 10), "_na_");
|
||||||
|
@ -218,18 +217,6 @@ public abstract class AbstractQueryTestCase<QB extends AbstractQueryBuilder<QB>>
|
||||||
DeprecationLogger.setThreadContext(threadContext);
|
DeprecationLogger.setThreadContext(threadContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Check that there are no unaccounted warning headers. These should be checked with {@link #checkWarningHeaders(String...)} in the
|
|
||||||
* appropriate test
|
|
||||||
*/
|
|
||||||
@After
|
|
||||||
public void teardown() throws IOException {
|
|
||||||
final List<String> warnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
|
||||||
assertNull("unexpected warning headers", warnings);
|
|
||||||
DeprecationLogger.removeThreadContext(this.threadContext);
|
|
||||||
this.threadContext.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static SearchContext getSearchContext(String[] types, QueryShardContext context) {
|
private static SearchContext getSearchContext(String[] types, QueryShardContext context) {
|
||||||
TestSearchContext testSearchContext = new TestSearchContext(context) {
|
TestSearchContext testSearchContext = new TestSearchContext(context) {
|
||||||
@Override
|
@Override
|
||||||
|
@ -247,7 +234,14 @@ public abstract class AbstractQueryTestCase<QB extends AbstractQueryBuilder<QB>>
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
public void afterTest() {
|
public void afterTest() throws IOException {
|
||||||
|
//Check that there are no unaccounted warning headers. These should be checked with {@link #checkWarningHeaders(String...)} in the
|
||||||
|
//appropriate test
|
||||||
|
final List<String> warnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
||||||
|
assertNull("unexpected warning headers", warnings);
|
||||||
|
DeprecationLogger.removeThreadContext(this.threadContext);
|
||||||
|
this.threadContext.close();
|
||||||
|
|
||||||
serviceHolder.clientInvocationHandler.delegate = null;
|
serviceHolder.clientInvocationHandler.delegate = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1026,11 +1020,11 @@ public abstract class AbstractQueryTestCase<QB extends AbstractQueryBuilder<QB>>
|
||||||
return query;
|
return query;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void checkWarningHeaders(String... messages) {
|
protected void assertWarningHeaders(String... expectedWarnings) {
|
||||||
final List<String> warnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
final List<String> actualWarnings = threadContext.getResponseHeaders().get(DeprecationLogger.DEPRECATION_HEADER);
|
||||||
assertThat(warnings, hasSize(messages.length));
|
assertThat(actualWarnings, hasSize(expectedWarnings.length));
|
||||||
for (String msg : messages) {
|
for (String msg : expectedWarnings) {
|
||||||
assertThat(warnings, hasItem(equalTo(msg)));
|
assertThat(actualWarnings, hasItem(equalTo(msg)));
|
||||||
}
|
}
|
||||||
// "clear" current warning headers by setting a new ThreadContext
|
// "clear" current warning headers by setting a new ThreadContext
|
||||||
DeprecationLogger.removeThreadContext(this.threadContext);
|
DeprecationLogger.removeThreadContext(this.threadContext);
|
||||||
|
|
Loading…
Reference in New Issue