Merge pull request #16617 from javanna/enhancement/function_score_strict_parsing

Function Score Query: make parsing stricter
This commit is contained in:
Luca Cavanna 2016-02-12 17:45:10 +01:00
commit f589fa8013
6 changed files with 340 additions and 238 deletions

View File

@ -197,22 +197,22 @@ public class FunctionScoreQueryBuilder extends AbstractQueryBuilder<FunctionScor
protected void doXContent(XContentBuilder builder, Params params) throws IOException { protected void doXContent(XContentBuilder builder, Params params) throws IOException {
builder.startObject(NAME); builder.startObject(NAME);
if (query != null) { if (query != null) {
builder.field("query"); builder.field(FunctionScoreQueryParser.QUERY_FIELD.getPreferredName());
query.toXContent(builder, params); query.toXContent(builder, params);
} }
builder.startArray("functions"); builder.startArray(FunctionScoreQueryParser.FUNCTIONS_FIELD.getPreferredName());
for (FilterFunctionBuilder filterFunctionBuilder : filterFunctionBuilders) { for (FilterFunctionBuilder filterFunctionBuilder : filterFunctionBuilders) {
filterFunctionBuilder.toXContent(builder, params); filterFunctionBuilder.toXContent(builder, params);
} }
builder.endArray(); builder.endArray();
builder.field("score_mode", scoreMode.name().toLowerCase(Locale.ROOT)); builder.field(FunctionScoreQueryParser.SCORE_MODE_FIELD.getPreferredName(), scoreMode.name().toLowerCase(Locale.ROOT));
if (boostMode != null) { if (boostMode != null) {
builder.field("boost_mode", boostMode.name().toLowerCase(Locale.ROOT)); builder.field(FunctionScoreQueryParser.BOOST_MODE_FIELD.getPreferredName(), boostMode.name().toLowerCase(Locale.ROOT));
} }
builder.field("max_boost", maxBoost); builder.field(FunctionScoreQueryParser.MAX_BOOST_FIELD.getPreferredName(), maxBoost);
if (minScore != null) { if (minScore != null) {
builder.field("min_score", minScore); builder.field(FunctionScoreQueryParser.MIN_SCORE_FIELD.getPreferredName(), minScore);
} }
printBoostAndQueryName(builder); printBoostAndQueryName(builder);
builder.endObject(); builder.endObject();
@ -358,7 +358,7 @@ public class FunctionScoreQueryBuilder extends AbstractQueryBuilder<FunctionScor
@Override @Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
builder.startObject(); builder.startObject();
builder.field("filter"); builder.field(FunctionScoreQueryParser.FILTER_FIELD.getPreferredName());
filter.toXContent(builder, params); filter.toXContent(builder, params);
scoreFunction.toXContent(builder, params); scoreFunction.toXContent(builder, params);
builder.endObject(); builder.endObject();

View File

@ -19,10 +19,6 @@
package org.elasticsearch.index.query.functionscore; package org.elasticsearch.index.query.functionscore;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.elasticsearch.common.ParseField; import org.elasticsearch.common.ParseField;
import org.elasticsearch.common.ParsingException; import org.elasticsearch.common.ParsingException;
import org.elasticsearch.common.Strings; import org.elasticsearch.common.Strings;
@ -39,6 +35,10 @@ import org.elasticsearch.index.query.QueryParseContext;
import org.elasticsearch.index.query.QueryParser; import org.elasticsearch.index.query.QueryParser;
import org.elasticsearch.index.query.functionscore.weight.WeightBuilder; import org.elasticsearch.index.query.functionscore.weight.WeightBuilder;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/** /**
* Parser for function_score query * Parser for function_score query
*/ */
@ -50,6 +50,13 @@ public class FunctionScoreQueryParser implements QueryParser<FunctionScoreQueryB
static final String MISPLACED_FUNCTION_MESSAGE_PREFIX = "you can either define [functions] array or a single function, not both. "; static final String MISPLACED_FUNCTION_MESSAGE_PREFIX = "you can either define [functions] array or a single function, not both. ";
public static final ParseField WEIGHT_FIELD = new ParseField("weight"); public static final ParseField WEIGHT_FIELD = new ParseField("weight");
public static final ParseField QUERY_FIELD = new ParseField("query");
public static final ParseField FILTER_FIELD = new ParseField("filter");
public static final ParseField FUNCTIONS_FIELD = new ParseField("functions");
public static final ParseField SCORE_MODE_FIELD = new ParseField("score_mode");
public static final ParseField BOOST_MODE_FIELD = new ParseField("boost_mode");
public static final ParseField MAX_BOOST_FIELD = new ParseField("max_boost");
public static final ParseField MIN_SCORE_FIELD = new ParseField("min_score");
private final ScoreFunctionParserMapper functionParserMapper; private final ScoreFunctionParserMapper functionParserMapper;
@ -86,48 +93,69 @@ public class FunctionScoreQueryParser implements QueryParser<FunctionScoreQueryB
while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) { while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) {
if (token == XContentParser.Token.FIELD_NAME) { if (token == XContentParser.Token.FIELD_NAME) {
currentFieldName = parser.currentName(); currentFieldName = parser.currentName();
} else if ("query".equals(currentFieldName)) { } else if (token == XContentParser.Token.START_OBJECT) {
query = parseContext.parseInnerQueryBuilder(); if (parseContext.parseFieldMatcher().match(currentFieldName, QUERY_FIELD)) {
} else if ("score_mode".equals(currentFieldName) || "scoreMode".equals(currentFieldName)) { if (query != null) {
scoreMode = FiltersFunctionScoreQuery.ScoreMode.fromString(parser.text()); throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. [query] is already defined.", FunctionScoreQueryBuilder.NAME);
} else if ("boost_mode".equals(currentFieldName) || "boostMode".equals(currentFieldName)) { }
combineFunction = CombineFunction.fromString(parser.text()); query = parseContext.parseInnerQueryBuilder();
} else if ("max_boost".equals(currentFieldName) || "maxBoost".equals(currentFieldName)) {
maxBoost = parser.floatValue();
} else if ("boost".equals(currentFieldName)) {
boost = parser.floatValue();
} else if ("_name".equals(currentFieldName)) {
queryName = parser.text();
} else if ("min_score".equals(currentFieldName) || "minScore".equals(currentFieldName)) {
minScore = parser.floatValue();
} else if ("functions".equals(currentFieldName)) {
if (singleFunctionFound) {
String errorString = "already found [" + singleFunctionName + "], now encountering [functions].";
handleMisplacedFunctionsDeclaration(parser.getTokenLocation(), errorString);
}
functionArrayFound = true;
currentFieldName = parseFiltersAndFunctions(parseContext, parser, filterFunctionBuilders);
} else {
if (singleFunctionFound) {
throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. already found function [{}], now encountering [{}]. use [functions] array if you want to define several functions.", FunctionScoreQueryBuilder.NAME, singleFunctionName, currentFieldName);
}
if (functionArrayFound) {
String errorString = "already found [functions] array, now encountering [" + currentFieldName + "].";
handleMisplacedFunctionsDeclaration(parser.getTokenLocation(), errorString);
}
singleFunctionFound = true;
singleFunctionName = currentFieldName;
ScoreFunctionBuilder<?> scoreFunction;
if (parseContext.parseFieldMatcher().match(currentFieldName, WEIGHT_FIELD)) {
scoreFunction = new WeightBuilder().setWeight(parser.floatValue());
} else { } else {
// we try to parse a score function. If there is no score if (singleFunctionFound) {
// function for the current field name, throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. already found function [{}], now encountering [{}]. use [functions] array if you want to define several functions.", FunctionScoreQueryBuilder.NAME, singleFunctionName, currentFieldName);
// functionParserMapper.get() will throw an Exception. }
scoreFunction = functionParserMapper.get(parser.getTokenLocation(), currentFieldName).fromXContent(parseContext, parser); if (functionArrayFound) {
String errorString = "already found [functions] array, now encountering [" + currentFieldName + "].";
handleMisplacedFunctionsDeclaration(parser.getTokenLocation(), errorString);
}
singleFunctionFound = true;
singleFunctionName = currentFieldName;
// we try to parse a score function. If there is no score function for the current field name,
// functionParserMapper.get() may throw an Exception.
ScoreFunctionBuilder<?> scoreFunction = functionParserMapper.get(parser.getTokenLocation(), currentFieldName).fromXContent(parseContext, parser);
filterFunctionBuilders.add(new FunctionScoreQueryBuilder.FilterFunctionBuilder(scoreFunction));
}
} else if (token == XContentParser.Token.START_ARRAY) {
if (parseContext.parseFieldMatcher().match(currentFieldName, FUNCTIONS_FIELD)) {
if (singleFunctionFound) {
String errorString = "already found [" + singleFunctionName + "], now encountering [functions].";
handleMisplacedFunctionsDeclaration(parser.getTokenLocation(), errorString);
}
functionArrayFound = true;
currentFieldName = parseFiltersAndFunctions(parseContext, parser, filterFunctionBuilders);
} else {
throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. array [{}] is not supported", FunctionScoreQueryBuilder.NAME, currentFieldName);
}
} else if (token.isValue()) {
if (parseContext.parseFieldMatcher().match(currentFieldName, SCORE_MODE_FIELD)) {
scoreMode = FiltersFunctionScoreQuery.ScoreMode.fromString(parser.text());
} else if (parseContext.parseFieldMatcher().match(currentFieldName, BOOST_MODE_FIELD)) {
combineFunction = CombineFunction.fromString(parser.text());
} else if (parseContext.parseFieldMatcher().match(currentFieldName, MAX_BOOST_FIELD)) {
maxBoost = parser.floatValue();
} else if (parseContext.parseFieldMatcher().match(currentFieldName, AbstractQueryBuilder.BOOST_FIELD)) {
boost = parser.floatValue();
} else if (parseContext.parseFieldMatcher().match(currentFieldName, AbstractQueryBuilder.NAME_FIELD)) {
queryName = parser.text();
} else if (parseContext.parseFieldMatcher().match(currentFieldName, MIN_SCORE_FIELD)) {
minScore = parser.floatValue();
} else {
if (singleFunctionFound) {
throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. already found function [{}], now encountering [{}]. use [functions] array if you want to define several functions.", FunctionScoreQueryBuilder.NAME, singleFunctionName, currentFieldName);
}
if (functionArrayFound) {
String errorString = "already found [functions] array, now encountering [" + currentFieldName + "].";
handleMisplacedFunctionsDeclaration(parser.getTokenLocation(), errorString);
}
if (parseContext.parseFieldMatcher().match(currentFieldName, WEIGHT_FIELD)) {
filterFunctionBuilders.add(new FunctionScoreQueryBuilder.FilterFunctionBuilder(new WeightBuilder().setWeight(parser.floatValue())));
singleFunctionFound = true;
singleFunctionName = currentFieldName;
} else {
throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. field [{}] is not supported", FunctionScoreQueryBuilder.NAME, currentFieldName);
}
} }
filterFunctionBuilders.add(new FunctionScoreQueryBuilder.FilterFunctionBuilder(scoreFunction));
} }
} }
@ -167,21 +195,23 @@ public class FunctionScoreQueryParser implements QueryParser<FunctionScoreQueryB
while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) { while ((token = parser.nextToken()) != XContentParser.Token.END_OBJECT) {
if (token == XContentParser.Token.FIELD_NAME) { if (token == XContentParser.Token.FIELD_NAME) {
currentFieldName = parser.currentName(); currentFieldName = parser.currentName();
} else if (parseContext.parseFieldMatcher().match(currentFieldName, WEIGHT_FIELD)) { } else if (token == XContentParser.Token.START_OBJECT) {
functionWeight = parser.floatValue(); if (parseContext.parseFieldMatcher().match(currentFieldName, FILTER_FIELD)) {
} else {
if ("filter".equals(currentFieldName)) {
filter = parseContext.parseInnerQueryBuilder(); filter = parseContext.parseInnerQueryBuilder();
} else { } else {
if (scoreFunction != null) { if (scoreFunction != null) {
throw new ParsingException(parser.getTokenLocation(), "failed to parse function_score functions. already found [{}], now encountering [{}].", scoreFunction.getName(), currentFieldName); throw new ParsingException(parser.getTokenLocation(), "failed to parse function_score functions. already found [{}], now encountering [{}].", scoreFunction.getName(), currentFieldName);
} }
// do not need to check null here, // do not need to check null here, functionParserMapper does it already
// functionParserMapper throws exception if parser
// non-existent
ScoreFunctionParser functionParser = functionParserMapper.get(parser.getTokenLocation(), currentFieldName); ScoreFunctionParser functionParser = functionParserMapper.get(parser.getTokenLocation(), currentFieldName);
scoreFunction = functionParser.fromXContent(parseContext, parser); scoreFunction = functionParser.fromXContent(parseContext, parser);
} }
} else if (token.isValue()) {
if (parseContext.parseFieldMatcher().match(currentFieldName, WEIGHT_FIELD)) {
functionWeight = parser.floatValue();
} else {
throw new ParsingException(parser.getTokenLocation(), "failed to parse [{}] query. field [{}] is not supported", FunctionScoreQueryBuilder.NAME, currentFieldName);
}
} }
} }
if (functionWeight != null) { if (functionWeight != null) {

View File

@ -501,7 +501,7 @@ public abstract class AbstractQueryTestCase<QB extends AbstractQueryBuilder<QB>>
context.reset(parser); context.reset(parser);
context.parseFieldMatcher(matcher); context.parseFieldMatcher(matcher);
QueryBuilder<?> parseInnerQueryBuilder = context.parseInnerQueryBuilder(); QueryBuilder<?> parseInnerQueryBuilder = context.parseInnerQueryBuilder();
assertTrue(parser.nextToken() == null); assertNull(parser.nextToken());
return parseInnerQueryBuilder; return parseInnerQueryBuilder;
} }

View File

@ -20,7 +20,6 @@
package org.elasticsearch.index.query.functionscore; package org.elasticsearch.index.query.functionscore;
import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.JsonParseException;
import org.apache.lucene.index.Term; import org.apache.lucene.index.Term;
import org.apache.lucene.search.MatchAllDocsQuery; import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.Query; import org.apache.lucene.search.Query;
@ -59,7 +58,6 @@ import java.util.Map;
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder; import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
import static org.elasticsearch.index.query.QueryBuilders.functionScoreQuery; import static org.elasticsearch.index.query.QueryBuilders.functionScoreQuery;
import static org.elasticsearch.index.query.QueryBuilders.termQuery; import static org.elasticsearch.index.query.QueryBuilders.termQuery;
import static org.elasticsearch.test.StreamsUtils.copyToStringFromClasspath;
import static org.hamcrest.Matchers.closeTo; import static org.hamcrest.Matchers.closeTo;
import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.either; import static org.hamcrest.Matchers.either;
@ -72,7 +70,7 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
@Override @Override
protected FunctionScoreQueryBuilder doCreateTestQueryBuilder() { protected FunctionScoreQueryBuilder doCreateTestQueryBuilder() {
FunctionScoreQueryBuilder functionScoreQueryBuilder; FunctionScoreQueryBuilder functionScoreQueryBuilder;
switch(randomIntBetween(0, 3)) { switch (randomIntBetween(0, 3)) {
case 0: case 0:
int numFunctions = randomIntBetween(0, 3); int numFunctions = randomIntBetween(0, 3);
FunctionScoreQueryBuilder.FilterFunctionBuilder[] filterFunctionBuilders = new FunctionScoreQueryBuilder.FilterFunctionBuilder[numFunctions]; FunctionScoreQueryBuilder.FilterFunctionBuilder[] filterFunctionBuilders = new FunctionScoreQueryBuilder.FilterFunctionBuilder[numFunctions];
@ -124,7 +122,7 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
DecayFunctionBuilder decayFunctionBuilder; DecayFunctionBuilder decayFunctionBuilder;
Float offset = randomBoolean() ? null : randomFloat(); Float offset = randomBoolean() ? null : randomFloat();
double decay = randomDouble(); double decay = randomDouble();
switch(randomIntBetween(0, 2)) { switch (randomIntBetween(0, 2)) {
case 0: case 0:
decayFunctionBuilder = new GaussDecayFunctionBuilder(INT_FIELD_NAME, randomFloat(), randomFloat(), offset, decay); decayFunctionBuilder = new GaussDecayFunctionBuilder(INT_FIELD_NAME, randomFloat(), randomFloat(), offset, decay);
break; break;
@ -164,7 +162,7 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
RandomScoreFunctionBuilder randomScoreFunctionBuilder = new RandomScoreFunctionBuilder(); RandomScoreFunctionBuilder randomScoreFunctionBuilder = new RandomScoreFunctionBuilder();
if (randomBoolean()) { if (randomBoolean()) {
randomScoreFunctionBuilder.seed(randomLong()); randomScoreFunctionBuilder.seed(randomLong());
} else if(randomBoolean()) { } else if (randomBoolean()) {
randomScoreFunctionBuilder.seed(randomInt()); randomScoreFunctionBuilder.seed(randomInt());
} else { } else {
randomScoreFunctionBuilder.seed(randomAsciiOfLengthBetween(1, 10)); randomScoreFunctionBuilder.seed(randomAsciiOfLengthBetween(1, 10));
@ -198,140 +196,140 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
public void testIllegalArguments() { public void testIllegalArguments() {
try { try {
new FunctionScoreQueryBuilder((QueryBuilder<?>)null); new FunctionScoreQueryBuilder((QueryBuilder<?>) null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder((ScoreFunctionBuilder)null); new FunctionScoreQueryBuilder((ScoreFunctionBuilder) null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder((FunctionScoreQueryBuilder.FilterFunctionBuilder[])null); new FunctionScoreQueryBuilder((FunctionScoreQueryBuilder.FilterFunctionBuilder[]) null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(null, ScoreFunctionBuilders.randomFunction(123)); new FunctionScoreQueryBuilder(null, ScoreFunctionBuilders.randomFunction(123));
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(new MatchAllQueryBuilder(), (ScoreFunctionBuilder)null); new FunctionScoreQueryBuilder(new MatchAllQueryBuilder(), (ScoreFunctionBuilder) null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(new MatchAllQueryBuilder(), (FunctionScoreQueryBuilder.FilterFunctionBuilder[])null); new FunctionScoreQueryBuilder(new MatchAllQueryBuilder(), (FunctionScoreQueryBuilder.FilterFunctionBuilder[]) null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(null, new FunctionScoreQueryBuilder.FilterFunctionBuilder[0]); new FunctionScoreQueryBuilder(null, new FunctionScoreQueryBuilder.FilterFunctionBuilder[0]);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(QueryBuilders.matchAllQuery(), new FunctionScoreQueryBuilder.FilterFunctionBuilder[]{null}); new FunctionScoreQueryBuilder(QueryBuilders.matchAllQuery(), new FunctionScoreQueryBuilder.FilterFunctionBuilder[]{null});
fail("content of array must not be null"); fail("content of array must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder.FilterFunctionBuilder(null); new FunctionScoreQueryBuilder.FilterFunctionBuilder(null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder.FilterFunctionBuilder(null, ScoreFunctionBuilders.randomFunction(123)); new FunctionScoreQueryBuilder.FilterFunctionBuilder(null, ScoreFunctionBuilders.randomFunction(123));
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder.FilterFunctionBuilder(new MatchAllQueryBuilder(), null); new FunctionScoreQueryBuilder.FilterFunctionBuilder(new MatchAllQueryBuilder(), null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(new MatchAllQueryBuilder()).scoreMode(null); new FunctionScoreQueryBuilder(new MatchAllQueryBuilder()).scoreMode(null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
try { try {
new FunctionScoreQueryBuilder(new MatchAllQueryBuilder()).boostMode(null); new FunctionScoreQueryBuilder(new MatchAllQueryBuilder()).boostMode(null);
fail("must not be null"); fail("must not be null");
} catch(IllegalArgumentException e) { } catch (IllegalArgumentException e) {
//all good //all good
} }
} }
public void testParseFunctionsArray() throws IOException { public void testParseFunctionsArray() throws IOException {
String functionScoreQuery = "{\n" + String functionScoreQuery = "{\n" +
" \"function_score\":{\n" + " \"function_score\":{\n" +
" \"query\":{\n" + " \"query\":{\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field1\":\"value1\"\n" + " \"field1\":\"value1\"\n" +
" }\n" + " }\n" +
" },\n" + " },\n" +
" \"functions\": [\n" + " \"functions\": [\n" +
" {\n" + " {\n" +
" \"random_score\": {\n" + " \"random_score\": {\n" +
" \"seed\":123456\n" + " \"seed\":123456\n" +
" },\n" + " },\n" +
" \"weight\": 3,\n" + " \"weight\": 3,\n" +
" \"filter\": {\n" + " \"filter\": {\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field2\":\"value2\"\n" + " \"field2\":\"value2\"\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" },\n" + " },\n" +
" {\n" + " {\n" +
" \"filter\": {\n" + " \"filter\": {\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field3\":\"value3\"\n" + " \"field3\":\"value3\"\n" +
" }\n" + " }\n" +
" },\n" + " },\n" +
" \"weight\": 9\n" + " \"weight\": 9\n" +
" },\n" + " },\n" +
" {\n" + " {\n" +
" \"gauss\": {\n" + " \"gauss\": {\n" +
" \"field_name\": {\n" + " \"field_name\": {\n" +
" \"origin\":0.5,\n" + " \"origin\":0.5,\n" +
" \"scale\":0.6\n" + " \"scale\":0.6\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" ],\n" + " ],\n" +
" \"boost\" : 3,\n" + " \"boost\" : 3,\n" +
" \"score_mode\" : \"avg\",\n" + " \"score_mode\" : \"avg\",\n" +
" \"boost_mode\" : \"replace\",\n" + " \"boost_mode\" : \"replace\",\n" +
" \"max_boost\" : 10\n" + " \"max_boost\" : 10\n" +
" }\n" + " }\n" +
"}"; "}";
QueryBuilder<?> queryBuilder = parseQuery(functionScoreQuery); QueryBuilder<?> queryBuilder = parseQuery(functionScoreQuery);
//given that we copy part of the decay functions as bytes, we test that fromXContent and toXContent both work no matter what the initial format was //given that we copy part of the decay functions as bytes, we test that fromXContent and toXContent both work no matter what the initial format was
@ -368,31 +366,31 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
assertThat(functionScoreQueryBuilder.maxBoost(), equalTo(10f)); assertThat(functionScoreQueryBuilder.maxBoost(), equalTo(10f));
if (i < XContentType.values().length) { if (i < XContentType.values().length) {
queryBuilder = parseQuery(((AbstractQueryBuilder<?>)queryBuilder).buildAsBytes(XContentType.values()[i])); queryBuilder = parseQuery(((AbstractQueryBuilder<?>) queryBuilder).buildAsBytes(XContentType.values()[i]));
} }
} }
} }
public void testParseSingleFunction() throws IOException { public void testParseSingleFunction() throws IOException {
String functionScoreQuery = "{\n" + String functionScoreQuery = "{\n" +
" \"function_score\":{\n" + " \"function_score\":{\n" +
" \"query\":{\n" + " \"query\":{\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field1\":\"value1\"\n" + " \"field1\":\"value1\"\n" +
" }\n" + " }\n" +
" },\n" + " },\n" +
" \"gauss\": {\n" + " \"gauss\": {\n" +
" \"field_name\": {\n" + " \"field_name\": {\n" +
" \"origin\":0.5,\n" + " \"origin\":0.5,\n" +
" \"scale\":0.6\n" + " \"scale\":0.6\n" +
" }\n" + " }\n" +
" },\n" + " },\n" +
" \"boost\" : 3,\n" + " \"boost\" : 3,\n" +
" \"score_mode\" : \"avg\",\n" + " \"score_mode\" : \"avg\",\n" +
" \"boost_mode\" : \"replace\",\n" + " \"boost_mode\" : \"replace\",\n" +
" \"max_boost\" : 10\n" + " \"max_boost\" : 10\n" +
" }\n" + " }\n" +
"}"; "}";
QueryBuilder<?> queryBuilder = parseQuery(functionScoreQuery); QueryBuilder<?> queryBuilder = parseQuery(functionScoreQuery);
//given that we copy part of the decay functions as bytes, we test that fromXContent and toXContent both work no matter what the initial format was //given that we copy part of the decay functions as bytes, we test that fromXContent and toXContent both work no matter what the initial format was
@ -415,7 +413,7 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
assertThat(functionScoreQueryBuilder.maxBoost(), equalTo(10f)); assertThat(functionScoreQueryBuilder.maxBoost(), equalTo(10f));
if (i < XContentType.values().length) { if (i < XContentType.values().length) {
queryBuilder = parseQuery(((AbstractQueryBuilder<?>)queryBuilder).buildAsBytes(XContentType.values()[i])); queryBuilder = parseQuery(((AbstractQueryBuilder<?>) queryBuilder).buildAsBytes(XContentType.values()[i]));
} }
} }
} }
@ -423,69 +421,69 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
public void testProperErrorMessageWhenTwoFunctionsDefinedInQueryBody() throws IOException { public void testProperErrorMessageWhenTwoFunctionsDefinedInQueryBody() throws IOException {
//without a functions array, we support only a single function, weight can't be associated with the function either. //without a functions array, we support only a single function, weight can't be associated with the function either.
String functionScoreQuery = "{\n" + String functionScoreQuery = "{\n" +
" \"function_score\": {\n" + " \"function_score\": {\n" +
" \"script_score\": {\n" + " \"script_score\": {\n" +
" \"script\": \"5\"\n" + " \"script\": \"5\"\n" +
" },\n" + " },\n" +
" \"weight\": 2\n" + " \"weight\": 2\n" +
" }\n" + " }\n" +
"}"; "}";
try { try {
parseQuery(functionScoreQuery); parseQuery(functionScoreQuery);
fail("parsing should have failed"); fail("parsing should have failed");
} catch(ParsingException e) { } catch (ParsingException e) {
assertThat(e.getMessage(), containsString("use [functions] array if you want to define several functions.")); assertThat(e.getMessage(), containsString("use [functions] array if you want to define several functions."));
} }
} }
public void testProperErrorMessageWhenTwoFunctionsDefinedInFunctionsArray() throws IOException { public void testProperErrorMessageWhenTwoFunctionsDefinedInFunctionsArray() throws IOException {
String functionScoreQuery = "{\n" + String functionScoreQuery = "{\n" +
" \"function_score\":{\n" + " \"function_score\":{\n" +
" \"functions\": [\n" + " \"functions\": [\n" +
" {\n" + " {\n" +
" \"random_score\": {\n" + " \"random_score\": {\n" +
" \"seed\":123456\n" + " \"seed\":123456\n" +
" },\n" + " },\n" +
" \"weight\": 3,\n" + " \"weight\": 3,\n" +
" \"script_score\": {\n" + " \"script_score\": {\n" +
" \"script\": \"_index['text']['foo'].tf()\"\n" + " \"script\": \"_index['text']['foo'].tf()\"\n" +
" },\n" + " },\n" +
" \"filter\": {\n" + " \"filter\": {\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field2\":\"value2\"\n" + " \"field2\":\"value2\"\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" ]\n" + " ]\n" +
" }\n" + " }\n" +
"}"; "}";
try { try {
parseQuery(functionScoreQuery); parseQuery(functionScoreQuery);
fail("parsing should have failed"); fail("parsing should have failed");
} catch(ParsingException e) { } catch (ParsingException e) {
assertThat(e.getMessage(), containsString("failed to parse function_score functions. already found [random_score], now encountering [script_score].")); assertThat(e.getMessage(), containsString("failed to parse function_score functions. already found [random_score], now encountering [script_score]."));
} }
} }
public void testProperErrorMessageWhenMissingFunction() throws IOException { public void testProperErrorMessageWhenMissingFunction() throws IOException {
String functionScoreQuery = "{\n" + String functionScoreQuery = "{\n" +
" \"function_score\":{\n" + " \"function_score\":{\n" +
" \"functions\": [\n" + " \"functions\": [\n" +
" {\n" + " {\n" +
" \"filter\": {\n" + " \"filter\": {\n" +
" \"term\":{\n" + " \"term\":{\n" +
" \"field2\":\"value2\"\n" + " \"field2\":\"value2\"\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" }\n" + " }\n" +
" ]\n" + " ]\n" +
" }\n" + " }\n" +
"}"; "}";
try { try {
parseQuery(functionScoreQuery); parseQuery(functionScoreQuery);
fail("parsing should have failed"); fail("parsing should have failed");
} catch(ParsingException e) { } catch (ParsingException e) {
assertThat(e.getMessage(), containsString("an entry in functions list is missing a function.")); assertThat(e.getMessage(), containsString("an entry in functions list is missing a function."));
} }
} }
@ -493,17 +491,17 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
public void testWeight1fStillProducesWeightFunction() throws IOException { public void testWeight1fStillProducesWeightFunction() 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);
String queryString = jsonBuilder().startObject() String queryString = jsonBuilder().startObject()
.startObject("function_score") .startObject("function_score")
.startArray("functions") .startArray("functions")
.startObject() .startObject()
.startObject("field_value_factor") .startObject("field_value_factor")
.field("field", INT_FIELD_NAME) .field("field", INT_FIELD_NAME)
.endObject() .endObject()
.field("weight", 1.0) .field("weight", 1.0)
.endObject() .endObject()
.endArray() .endArray()
.endObject() .endObject()
.endObject().string(); .endObject().string();
QueryBuilder<?> query = parseQuery(queryString); QueryBuilder<?> query = parseQuery(queryString);
assertThat(query, instanceOf(FunctionScoreQueryBuilder.class)); assertThat(query, instanceOf(FunctionScoreQueryBuilder.class));
FunctionScoreQueryBuilder functionScoreQueryBuilder = (FunctionScoreQueryBuilder) query; FunctionScoreQueryBuilder functionScoreQueryBuilder = (FunctionScoreQueryBuilder) query;
@ -526,11 +524,11 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
public void testProperErrorMessagesForMisplacedWeightsAndFunctions() throws IOException { public void testProperErrorMessagesForMisplacedWeightsAndFunctions() throws IOException {
String query = jsonBuilder().startObject().startObject("function_score") String query = jsonBuilder().startObject().startObject("function_score")
.startArray("functions") .startArray("functions")
.startObject().startObject("script_score").field("script", "3").endObject().endObject() .startObject().startObject("script_score").field("script", "3").endObject().endObject()
.endArray() .endArray()
.field("weight", 2) .field("weight", 2)
.endObject().endObject().string(); .endObject().endObject().string();
try { try {
parseQuery(query); parseQuery(query);
fail("Expect exception here because array of functions and one weight in body is not allowed."); fail("Expect exception here because array of functions and one weight in body is not allowed.");
@ -538,11 +536,11 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
assertThat(e.getMessage(), containsString("you can either define [functions] array or a single function, not both. already found [functions] array, now encountering [weight].")); assertThat(e.getMessage(), containsString("you can either define [functions] array or a single function, not both. already found [functions] array, now encountering [weight]."));
} }
query = jsonBuilder().startObject().startObject("function_score") query = jsonBuilder().startObject().startObject("function_score")
.field("weight", 2) .field("weight", 2)
.startArray("functions") .startArray("functions")
.startObject().endObject() .startObject().endObject()
.endArray() .endArray()
.endObject().endObject().string(); .endObject().endObject().string();
try { try {
parseQuery(query); parseQuery(query);
fail("Expect exception here because array of functions and one weight in body is not allowed."); fail("Expect exception here because array of functions and one weight in body is not allowed.");
@ -552,8 +550,22 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
} }
public void testMalformedThrowsException() throws IOException { public void testMalformedThrowsException() throws IOException {
String json = "{\n" +
" \"function_score\":{\n" +
" \"query\":{\n" +
" \"term\":{\n" +
" \"name.last\":\"banon\"\n" +
" }\n" +
" },\n" +
" \"functions\": [\n" +
" {\n" +
" {\n" +
" }\n" +
" ]\n" +
" }\n" +
"}";
try { try {
parseQuery(copyToStringFromClasspath("/org/elasticsearch/index/query/faulty-function-score-query.json")); parseQuery(json);
fail("Expected JsonParseException"); fail("Expected JsonParseException");
} catch (JsonParseException e) { } catch (JsonParseException e) {
assertThat(e.getMessage(), containsString("Unexpected character ('{")); assertThat(e.getMessage(), containsString("Unexpected character ('{"));
@ -579,31 +591,31 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
public void testFieldValueFactorFactorArray() throws IOException { public void testFieldValueFactorFactorArray() throws IOException {
// don't permit an array of factors // don't permit an array of factors
String querySource = "{" + String querySource = "{" +
" \"function_score\": {" + " \"function_score\": {" +
" \"query\": {" + " \"query\": {" +
" \"match\": {\"name\": \"foo\"}" + " \"match\": {\"name\": \"foo\"}" +
" }," + " }," +
" \"functions\": [" + " \"functions\": [" +
" {" + " {" +
" \"field_value_factor\": {" + " \"field_value_factor\": {" +
" \"field\": \"test\"," + " \"field\": \"test\"," +
" \"factor\": [1.2,2]" + " \"factor\": [1.2,2]" +
" }" + " }" +
" }" + " }" +
" ]" + " ]" +
" }" + " }" +
"}"; "}";
try { try {
parseQuery(querySource); parseQuery(querySource);
fail("parsing should have failed"); fail("parsing should have failed");
} catch(ParsingException e) { } catch (ParsingException e) {
assertThat(e.getMessage(), containsString("[field_value_factor] field 'factor' does not support lists or objects")); assertThat(e.getMessage(), containsString("[field_value_factor] field 'factor' does not support lists or objects"));
} }
} }
public void testFromJson() throws IOException { public void testFromJson() throws IOException {
String json = String json =
"{\n" + "{\n" +
" \"function_score\" : {\n" + " \"function_score\" : {\n" +
" \"query\" : { },\n" + " \"query\" : { },\n" +
" \"functions\" : [ {\n" + " \"functions\" : [ {\n" +
@ -630,4 +642,79 @@ public class FunctionScoreQueryBuilderTests extends AbstractQueryTestCase<Functi
assertEquals(json, 100, parsed.maxBoost(), 0.00001); assertEquals(json, 100, parsed.maxBoost(), 0.00001);
assertEquals(json, 1, parsed.getMinScore(), 0.0001); assertEquals(json, 1, parsed.getMinScore(), 0.0001);
} }
public void testQueryMalformedArrayNotSupported() throws IOException {
String json =
"{\n" +
" \"function_score\" : {\n" +
" \"not_supported\" : []\n" +
" }\n" +
"}";
try {
parseQuery(json);
fail("parse should have failed");
} catch (ParsingException e) {
assertThat(e.getMessage(), containsString("array [not_supported] is not supported"));
}
}
public void testQueryMalformedFieldNotSupported() throws IOException {
String json =
"{\n" +
" \"function_score\" : {\n" +
" \"not_supported\" : \"value\"\n" +
" }\n" +
"}";
try {
parseQuery(json);
fail("parse should have failed");
} catch (ParsingException e) {
assertThat(e.getMessage(), containsString("field [not_supported] is not supported"));
}
}
public void testMalformedQueryFunctionFieldNotSupported() throws IOException {
String json =
"{\n" +
" \"function_score\" : {\n" +
" \"functions\" : [ {\n" +
" \"not_supported\" : 23.0\n" +
" }\n" +
" }\n" +
"}";
try {
parseQuery(json);
fail("parse should have failed");
} catch (ParsingException e) {
assertThat(e.getMessage(), containsString("field [not_supported] is not supported"));
}
}
public void testMalformedQuery() throws IOException {
//verify that an error is thrown rather than setting the query twice (https://github.com/elastic/elasticsearch/issues/16583)
String json =
"{\n" +
" \"function_score\":{\n" +
" \"query\":{\n" +
" \"bool\":{\n" +
" \"must\":{\"match\":{\"field\":\"value\"}}" +
" },\n" +
" \"ignored_field_name\": {\n" +
" {\"match\":{\"field\":\"value\"}}\n" +
" }\n" +
" }\n" +
" }\n" +
" }\n" +
"}";
try {
parseQuery(json);
fail("parse should have failed");
} catch(ParsingException e) {
assertThat(e.getMessage(), containsString("[query] is already defined."));
}
}
} }

View File

@ -368,7 +368,7 @@ public class SearchSourceBuilderTests extends ESTestCase {
parser.nextToken(); // sometimes we move it on the START_OBJECT to test the embedded case parser.nextToken(); // sometimes we move it on the START_OBJECT to test the embedded case
} }
SearchSourceBuilder newBuilder = SearchSourceBuilder.parseSearchSource(parser, parseContext); SearchSourceBuilder newBuilder = SearchSourceBuilder.parseSearchSource(parser, parseContext);
assertNotSame(testBuilder, newBuilder); assertNull(parser.nextToken());
assertEquals(testBuilder, newBuilder); assertEquals(testBuilder, newBuilder);
assertEquals(testBuilder.hashCode(), newBuilder.hashCode()); assertEquals(testBuilder.hashCode(), newBuilder.hashCode());
} }

View File

@ -1,15 +0,0 @@
{
"function_score":{
"query":{
"term":{
"name.last":"banon"
}
},
"functions": {
{
"boost_factor" : 3
}
}
}
}
}