Merge pull request #17933 from rjernst/camelcase4
Remove camelCase support
This commit is contained in:
commit
d12a4bb51d
|
@ -413,7 +413,8 @@ public class ElasticsearchException extends RuntimeException implements ToXConte
|
||||||
if (simpleName.startsWith("Elasticsearch")) {
|
if (simpleName.startsWith("Elasticsearch")) {
|
||||||
simpleName = simpleName.substring("Elasticsearch".length());
|
simpleName = simpleName.substring("Elasticsearch".length());
|
||||||
}
|
}
|
||||||
return Strings.toUnderscoreCase(simpleName);
|
// TODO: do we really need to make the exception name in underscore casing?
|
||||||
|
return toUnderscoreCase(simpleName);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -845,4 +846,39 @@ public class ElasticsearchException extends RuntimeException implements ToXConte
|
||||||
interface FunctionThatThrowsIOException<T, R> {
|
interface FunctionThatThrowsIOException<T, R> {
|
||||||
R apply(T t) throws IOException;
|
R apply(T t) throws IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// lower cases and adds underscores to transitions in a name
|
||||||
|
private static String toUnderscoreCase(String value) {
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
boolean changed = false;
|
||||||
|
for (int i = 0; i < value.length(); i++) {
|
||||||
|
char c = value.charAt(i);
|
||||||
|
if (Character.isUpperCase(c)) {
|
||||||
|
if (!changed) {
|
||||||
|
// copy it over here
|
||||||
|
for (int j = 0; j < i; j++) {
|
||||||
|
sb.append(value.charAt(j));
|
||||||
|
}
|
||||||
|
changed = true;
|
||||||
|
if (i == 0) {
|
||||||
|
sb.append(Character.toLowerCase(c));
|
||||||
|
} else {
|
||||||
|
sb.append('_');
|
||||||
|
sb.append(Character.toLowerCase(c));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
sb.append('_');
|
||||||
|
sb.append(Character.toLowerCase(c));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (changed) {
|
||||||
|
sb.append(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!changed) {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -224,7 +224,7 @@ public class MappingMetaData extends AbstractDiffable<MappingMetaData> {
|
||||||
boolean required = false;
|
boolean required = false;
|
||||||
Map<String, Object> routingNode = (Map<String, Object>) withoutType.get("_routing");
|
Map<String, Object> routingNode = (Map<String, Object>) withoutType.get("_routing");
|
||||||
for (Map.Entry<String, Object> entry : routingNode.entrySet()) {
|
for (Map.Entry<String, Object> entry : routingNode.entrySet()) {
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("required")) {
|
if (fieldName.equals("required")) {
|
||||||
required = lenientNodeBooleanValue(fieldNode);
|
required = lenientNodeBooleanValue(fieldNode);
|
||||||
|
@ -241,7 +241,7 @@ public class MappingMetaData extends AbstractDiffable<MappingMetaData> {
|
||||||
Boolean ignoreMissing = null;
|
Boolean ignoreMissing = null;
|
||||||
Map<String, Object> timestampNode = (Map<String, Object>) withoutType.get("_timestamp");
|
Map<String, Object> timestampNode = (Map<String, Object>) withoutType.get("_timestamp");
|
||||||
for (Map.Entry<String, Object> entry : timestampNode.entrySet()) {
|
for (Map.Entry<String, Object> entry : timestampNode.entrySet()) {
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
enabled = lenientNodeBooleanValue(fieldNode);
|
enabled = lenientNodeBooleanValue(fieldNode);
|
||||||
|
|
|
@ -32,34 +32,28 @@ public class ParseField {
|
||||||
|
|
||||||
private static final DeprecationLogger DEPRECATION_LOGGER = new DeprecationLogger(Loggers.getLogger(ParseField.class));
|
private static final DeprecationLogger DEPRECATION_LOGGER = new DeprecationLogger(Loggers.getLogger(ParseField.class));
|
||||||
|
|
||||||
private final String camelCaseName;
|
private final String name;
|
||||||
private final String underscoreName;
|
|
||||||
private final String[] deprecatedNames;
|
private final String[] deprecatedNames;
|
||||||
private String allReplacedWith = null;
|
private String allReplacedWith = null;
|
||||||
private final String[] allNames;
|
private final String[] allNames;
|
||||||
|
|
||||||
public ParseField(String value, String... deprecatedNames) {
|
public ParseField(String name, String... deprecatedNames) {
|
||||||
camelCaseName = Strings.toCamelCase(value);
|
this.name = name;
|
||||||
underscoreName = Strings.toUnderscoreCase(value);
|
|
||||||
if (deprecatedNames == null || deprecatedNames.length == 0) {
|
if (deprecatedNames == null || deprecatedNames.length == 0) {
|
||||||
this.deprecatedNames = Strings.EMPTY_ARRAY;
|
this.deprecatedNames = Strings.EMPTY_ARRAY;
|
||||||
} else {
|
} else {
|
||||||
final HashSet<String> set = new HashSet<>();
|
final HashSet<String> set = new HashSet<>();
|
||||||
for (String depName : deprecatedNames) {
|
Collections.addAll(set, deprecatedNames);
|
||||||
set.add(Strings.toCamelCase(depName));
|
|
||||||
set.add(Strings.toUnderscoreCase(depName));
|
|
||||||
}
|
|
||||||
this.deprecatedNames = set.toArray(new String[set.size()]);
|
this.deprecatedNames = set.toArray(new String[set.size()]);
|
||||||
}
|
}
|
||||||
Set<String> allNames = new HashSet<>();
|
Set<String> allNames = new HashSet<>();
|
||||||
allNames.add(camelCaseName);
|
allNames.add(name);
|
||||||
allNames.add(underscoreName);
|
|
||||||
Collections.addAll(allNames, this.deprecatedNames);
|
Collections.addAll(allNames, this.deprecatedNames);
|
||||||
this.allNames = allNames.toArray(new String[allNames.size()]);
|
this.allNames = allNames.toArray(new String[allNames.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getPreferredName(){
|
public String getPreferredName(){
|
||||||
return underscoreName;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] getAllNamesIncludedDeprecated() {
|
public String[] getAllNamesIncludedDeprecated() {
|
||||||
|
@ -67,7 +61,7 @@ public class ParseField {
|
||||||
}
|
}
|
||||||
|
|
||||||
public ParseField withDeprecation(String... deprecatedNames) {
|
public ParseField withDeprecation(String... deprecatedNames) {
|
||||||
return new ParseField(this.underscoreName, deprecatedNames);
|
return new ParseField(this.name, deprecatedNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -80,13 +74,13 @@ public class ParseField {
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean match(String currentFieldName, boolean strict) {
|
boolean match(String currentFieldName, boolean strict) {
|
||||||
if (allReplacedWith == null && (currentFieldName.equals(camelCaseName) || currentFieldName.equals(underscoreName))) {
|
if (allReplacedWith == null && currentFieldName.equals(name)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
String msg;
|
String msg;
|
||||||
for (String depName : deprecatedNames) {
|
for (String depName : deprecatedNames) {
|
||||||
if (currentFieldName.equals(depName)) {
|
if (currentFieldName.equals(depName)) {
|
||||||
msg = "Deprecated field [" + currentFieldName + "] used, expected [" + underscoreName + "] instead";
|
msg = "Deprecated field [" + currentFieldName + "] used, expected [" + name + "] instead";
|
||||||
if (allReplacedWith != null) {
|
if (allReplacedWith != null) {
|
||||||
msg = "Deprecated field [" + currentFieldName + "] used, replaced by [" + allReplacedWith + "]";
|
msg = "Deprecated field [" + currentFieldName + "] used, replaced by [" + allReplacedWith + "]";
|
||||||
}
|
}
|
||||||
|
@ -110,10 +104,6 @@ public class ParseField {
|
||||||
return allReplacedWith;
|
return allReplacedWith;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCamelCaseName() {
|
|
||||||
return camelCaseName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String[] getDeprecatedNames() {
|
public String[] getDeprecatedNames() {
|
||||||
return deprecatedNames;
|
return deprecatedNames;
|
||||||
}
|
}
|
||||||
|
|
|
@ -930,85 +930,6 @@ public class Strings {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String toCamelCase(String value) {
|
|
||||||
return toCamelCase(value, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String toCamelCase(String value, StringBuilder sb) {
|
|
||||||
boolean changed = false;
|
|
||||||
for (int i = 0; i < value.length(); i++) {
|
|
||||||
char c = value.charAt(i);
|
|
||||||
//e.g. _name stays as-is, _first_name becomes _firstName
|
|
||||||
if (c == '_' && i > 0) {
|
|
||||||
if (!changed) {
|
|
||||||
if (sb != null) {
|
|
||||||
sb.setLength(0);
|
|
||||||
} else {
|
|
||||||
sb = new StringBuilder();
|
|
||||||
}
|
|
||||||
// copy it over here
|
|
||||||
for (int j = 0; j < i; j++) {
|
|
||||||
sb.append(value.charAt(j));
|
|
||||||
}
|
|
||||||
changed = true;
|
|
||||||
}
|
|
||||||
if (i < value.length() - 1) {
|
|
||||||
sb.append(Character.toUpperCase(value.charAt(++i)));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (changed) {
|
|
||||||
sb.append(c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!changed) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
return sb.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String toUnderscoreCase(String value) {
|
|
||||||
return toUnderscoreCase(value, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String toUnderscoreCase(String value, StringBuilder sb) {
|
|
||||||
boolean changed = false;
|
|
||||||
for (int i = 0; i < value.length(); i++) {
|
|
||||||
char c = value.charAt(i);
|
|
||||||
if (Character.isUpperCase(c)) {
|
|
||||||
if (!changed) {
|
|
||||||
if (sb != null) {
|
|
||||||
sb.setLength(0);
|
|
||||||
} else {
|
|
||||||
sb = new StringBuilder();
|
|
||||||
}
|
|
||||||
// copy it over here
|
|
||||||
for (int j = 0; j < i; j++) {
|
|
||||||
sb.append(value.charAt(j));
|
|
||||||
}
|
|
||||||
changed = true;
|
|
||||||
if (i == 0) {
|
|
||||||
sb.append(Character.toLowerCase(c));
|
|
||||||
} else {
|
|
||||||
sb.append('_');
|
|
||||||
sb.append(Character.toLowerCase(c));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
sb.append('_');
|
|
||||||
sb.append(Character.toLowerCase(c));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (changed) {
|
|
||||||
sb.append(c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!changed) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
return sb.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine whether the given array is empty:
|
* Determine whether the given array is empty:
|
||||||
* i.e. <code>null</code> or of zero length.
|
* i.e. <code>null</code> or of zero length.
|
||||||
|
|
|
@ -64,7 +64,6 @@ import java.util.regex.Pattern;
|
||||||
|
|
||||||
import static java.util.Collections.emptyMap;
|
import static java.util.Collections.emptyMap;
|
||||||
import static java.util.Collections.unmodifiableMap;
|
import static java.util.Collections.unmodifiableMap;
|
||||||
import static org.elasticsearch.common.Strings.toCamelCase;
|
|
||||||
import static org.elasticsearch.common.unit.ByteSizeValue.parseBytesSizeValue;
|
import static org.elasticsearch.common.unit.ByteSizeValue.parseBytesSizeValue;
|
||||||
import static org.elasticsearch.common.unit.SizeValue.parseSizeValue;
|
import static org.elasticsearch.common.unit.SizeValue.parseSizeValue;
|
||||||
import static org.elasticsearch.common.unit.TimeValue.parseTimeValue;
|
import static org.elasticsearch.common.unit.TimeValue.parseTimeValue;
|
||||||
|
@ -77,23 +76,11 @@ public final class Settings implements ToXContent {
|
||||||
public static final Settings EMPTY = new Builder().build();
|
public static final Settings EMPTY = new Builder().build();
|
||||||
private static final Pattern ARRAY_PATTERN = Pattern.compile("(.*)\\.\\d+$");
|
private static final Pattern ARRAY_PATTERN = Pattern.compile("(.*)\\.\\d+$");
|
||||||
|
|
||||||
private final Map<String, String> forcedUnderscoreSettings;
|
|
||||||
private SortedMap<String, String> settings;
|
private SortedMap<String, String> settings;
|
||||||
|
|
||||||
Settings(Map<String, String> settings) {
|
Settings(Map<String, String> settings) {
|
||||||
// we use a sorted map for consistent serialization when using getAsMap()
|
// we use a sorted map for consistent serialization when using getAsMap()
|
||||||
this.settings = Collections.unmodifiableSortedMap(new TreeMap<>(settings));
|
this.settings = Collections.unmodifiableSortedMap(new TreeMap<>(settings));
|
||||||
Map<String, String> forcedUnderscoreSettings = null;
|
|
||||||
for (Map.Entry<String, String> entry : settings.entrySet()) {
|
|
||||||
String toUnderscoreCase = Strings.toUnderscoreCase(entry.getKey());
|
|
||||||
if (!toUnderscoreCase.equals(entry.getKey())) {
|
|
||||||
if (forcedUnderscoreSettings == null) {
|
|
||||||
forcedUnderscoreSettings = new HashMap<>();
|
|
||||||
}
|
|
||||||
forcedUnderscoreSettings.put(toUnderscoreCase, entry.getValue());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.forcedUnderscoreSettings = forcedUnderscoreSettings == null ? emptyMap() : unmodifiableMap(forcedUnderscoreSettings);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -240,11 +227,7 @@ public final class Settings implements ToXContent {
|
||||||
* @return The setting value, <tt>null</tt> if it does not exists.
|
* @return The setting value, <tt>null</tt> if it does not exists.
|
||||||
*/
|
*/
|
||||||
public String get(String setting) {
|
public String get(String setting) {
|
||||||
String retVal = settings.get(setting);
|
return settings.get(setting);
|
||||||
if (retVal != null) {
|
|
||||||
return retVal;
|
|
||||||
}
|
|
||||||
return forcedUnderscoreSettings.get(setting);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -637,12 +620,7 @@ public final class Settings implements ToXContent {
|
||||||
* Returns a setting value based on the setting key.
|
* Returns a setting value based on the setting key.
|
||||||
*/
|
*/
|
||||||
public String get(String key) {
|
public String get(String key) {
|
||||||
String retVal = map.get(key);
|
return map.get(key);
|
||||||
if (retVal != null) {
|
|
||||||
return retVal;
|
|
||||||
}
|
|
||||||
// try camel case version
|
|
||||||
return map.get(toCamelCase(key));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -366,24 +366,16 @@ public final class AnalysisRegistry implements Closeable {
|
||||||
instance = defaultProvider.get(settings, environment, name, defaultSettings);
|
instance = defaultProvider.get(settings, environment, name, defaultSettings);
|
||||||
}
|
}
|
||||||
factories.put(name, instance);
|
factories.put(name, instance);
|
||||||
String camelCase = Strings.toCamelCase(name);
|
|
||||||
if (providerMap.containsKey(camelCase) == false && factories.containsKey(camelCase) == false) {
|
|
||||||
factories.put(camelCase, instance);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Map.Entry<String, AnalysisModule.AnalysisProvider<T>> entry : defaultInstance.entrySet()) {
|
for (Map.Entry<String, AnalysisModule.AnalysisProvider<T>> entry : defaultInstance.entrySet()) {
|
||||||
final String name = entry.getKey();
|
final String name = entry.getKey();
|
||||||
final AnalysisModule.AnalysisProvider<T> provider = entry.getValue();
|
final AnalysisModule.AnalysisProvider<T> provider = entry.getValue();
|
||||||
final String camelCase = Strings.toCamelCase(name);
|
if (factories.containsKey(name) == false) {
|
||||||
if (factories.containsKey(name) == false || (defaultInstance.containsKey(camelCase) == false && factories.containsKey(camelCase) == false)) {
|
|
||||||
final T instance = provider.get(settings, environment, name, defaultSettings);
|
final T instance = provider.get(settings, environment, name, defaultSettings);
|
||||||
if (factories.containsKey(name) == false) {
|
if (factories.containsKey(name) == false) {
|
||||||
factories.put(name, instance);
|
factories.put(name, instance);
|
||||||
}
|
}
|
||||||
if ((defaultInstance.containsKey(camelCase) == false && factories.containsKey(camelCase) == false)) {
|
|
||||||
factories.put(camelCase, instance);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return factories;
|
return factories;
|
||||||
|
|
|
@ -113,7 +113,7 @@ public class DocumentMapperParser {
|
||||||
// parse DocumentMapper
|
// parse DocumentMapper
|
||||||
while(iterator.hasNext()) {
|
while(iterator.hasNext()) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
|
|
||||||
MetadataFieldMapper.TypeParser typeParser = rootTypeParsers.get(fieldName);
|
MetadataFieldMapper.TypeParser typeParser = rootTypeParsers.get(fieldName);
|
||||||
|
|
|
@ -130,7 +130,7 @@ public abstract class Mapper implements ToXContent, Iterable<Mapper> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public TypeParser typeParser(String type) {
|
public TypeParser typeParser(String type) {
|
||||||
return typeParsers.apply(Strings.toUnderscoreCase(type));
|
return typeParsers.apply(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Version indexVersionCreated() {
|
public Version indexVersionCreated() {
|
||||||
|
|
|
@ -105,7 +105,7 @@ public class BooleanFieldMapper extends FieldMapper {
|
||||||
parseField(builder, name, node, parserContext);
|
parseField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -120,7 +120,7 @@ public final class KeywordFieldMapper extends FieldMapper implements AllFieldMap
|
||||||
parseField(builder, name, node, parserContext);
|
parseField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -100,7 +100,7 @@ public class LegacyByteFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -154,7 +154,7 @@ public class LegacyDateFieldMapper extends LegacyNumberFieldMapper {
|
||||||
boolean configuredFormat = false;
|
boolean configuredFormat = false;
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -101,7 +101,7 @@ public class LegacyFloatFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -107,7 +107,7 @@ public class LegacyIntegerFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -107,7 +107,7 @@ public class LegacyLongFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -103,7 +103,7 @@ public class LegacyShortFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -98,7 +98,7 @@ public class LegacyTokenCountFieldMapper extends LegacyIntegerFieldMapper {
|
||||||
LegacyTokenCountFieldMapper.Builder builder = new LegacyTokenCountFieldMapper.Builder(name);
|
LegacyTokenCountFieldMapper.Builder builder = new LegacyTokenCountFieldMapper.Builder(name);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
builder.nullValue(nodeIntegerValue(propNode));
|
builder.nullValue(nodeIntegerValue(propNode));
|
||||||
|
|
|
@ -269,7 +269,7 @@ public class StringFieldMapper extends FieldMapper implements AllFieldMapper.Inc
|
||||||
// the index property and still accepts no/not_analyzed/analyzed
|
// the index property and still accepts no/not_analyzed/analyzed
|
||||||
final Object index = node.remove("index");
|
final Object index = node.remove("index");
|
||||||
if (index != null) {
|
if (index != null) {
|
||||||
final String normalizedIndex = Strings.toUnderscoreCase(index.toString());
|
final String normalizedIndex = index.toString();
|
||||||
switch (normalizedIndex) {
|
switch (normalizedIndex) {
|
||||||
case "analyzed":
|
case "analyzed":
|
||||||
builder.tokenized(true);
|
builder.tokenized(true);
|
||||||
|
@ -304,7 +304,7 @@ public class StringFieldMapper extends FieldMapper implements AllFieldMapper.Inc
|
||||||
parseTextField(builder, fieldName, node, parserContext);
|
parseTextField(builder, fieldName, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -146,7 +146,7 @@ public class TextFieldMapper extends FieldMapper implements AllFieldMapper.Inclu
|
||||||
parseTextField(builder, fieldName, node, parserContext);
|
parseTextField(builder, fieldName, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("position_increment_gap")) {
|
if (propName.equals("position_increment_gap")) {
|
||||||
int newPositionIncrementGap = XContentMapValues.nodeIntegerValue(propNode, -1);
|
int newPositionIncrementGap = XContentMapValues.nodeIntegerValue(propNode, -1);
|
||||||
|
|
|
@ -89,7 +89,7 @@ public class TokenCountFieldMapper extends FieldMapper {
|
||||||
TokenCountFieldMapper.Builder builder = new TokenCountFieldMapper.Builder(name);
|
TokenCountFieldMapper.Builder builder = new TokenCountFieldMapper.Builder(name);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
builder.nullValue(nodeIntegerValue(propNode));
|
builder.nullValue(nodeIntegerValue(propNode));
|
||||||
|
@ -113,7 +113,7 @@ public class TokenCountFieldMapper extends FieldMapper {
|
||||||
|
|
||||||
private NamedAnalyzer analyzer;
|
private NamedAnalyzer analyzer;
|
||||||
|
|
||||||
protected TokenCountFieldMapper(String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType,
|
protected TokenCountFieldMapper(String simpleName, MappedFieldType fieldType, MappedFieldType defaultFieldType,
|
||||||
Settings indexSettings, NamedAnalyzer analyzer, MultiFields multiFields, CopyTo copyTo) {
|
Settings indexSettings, NamedAnalyzer analyzer, MultiFields multiFields, CopyTo copyTo) {
|
||||||
super(simpleName, fieldType, defaultFieldType, indexSettings, multiFields, copyTo);
|
super(simpleName, fieldType, defaultFieldType, indexSettings, multiFields, copyTo);
|
||||||
this.analyzer = analyzer;
|
this.analyzer = analyzer;
|
||||||
|
|
|
@ -86,7 +86,7 @@ public class TypeParsers {
|
||||||
parseField(builder, name, numberNode, parserContext);
|
parseField(builder, name, numberNode, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = numberNode.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = numberNode.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("precision_step")) {
|
if (propName.equals("precision_step")) {
|
||||||
builder.precisionStep(nodeIntegerValue(propNode));
|
builder.precisionStep(nodeIntegerValue(propNode));
|
||||||
|
@ -114,7 +114,7 @@ public class TypeParsers {
|
||||||
|
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
final String propName = Strings.toUnderscoreCase(entry.getKey());
|
final String propName = entry.getKey();
|
||||||
final Object propNode = entry.getValue();
|
final Object propNode = entry.getValue();
|
||||||
if (propName.equals("term_vector")) {
|
if (propName.equals("term_vector")) {
|
||||||
parseTermVector(name, propNode.toString(), builder);
|
parseTermVector(name, propNode.toString(), builder);
|
||||||
|
@ -188,7 +188,7 @@ public class TypeParsers {
|
||||||
final Map<String, Object> properties = nodeMapValue(propNode, "norms");
|
final Map<String, Object> properties = nodeMapValue(propNode, "norms");
|
||||||
for (Iterator<Entry<String, Object>> propsIterator = properties.entrySet().iterator(); propsIterator.hasNext();) {
|
for (Iterator<Entry<String, Object>> propsIterator = properties.entrySet().iterator(); propsIterator.hasNext();) {
|
||||||
Entry<String, Object> entry2 = propsIterator.next();
|
Entry<String, Object> entry2 = propsIterator.next();
|
||||||
final String propName2 = Strings.toUnderscoreCase(entry2.getKey());
|
final String propName2 = entry2.getKey();
|
||||||
final Object propNode2 = entry2.getValue();
|
final Object propNode2 = entry2.getValue();
|
||||||
if (propName2.equals("enabled")) {
|
if (propName2.equals("enabled")) {
|
||||||
builder.omitNorms(!lenientNodeBooleanValue(propNode2));
|
builder.omitNorms(!lenientNodeBooleanValue(propNode2));
|
||||||
|
@ -222,7 +222,7 @@ public class TypeParsers {
|
||||||
parseAnalyzersAndTermVectors(builder, name, fieldNode, parserContext);
|
parseAnalyzersAndTermVectors(builder, name, fieldNode, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
final String propName = Strings.toUnderscoreCase(entry.getKey());
|
final String propName = entry.getKey();
|
||||||
final Object propNode = entry.getValue();
|
final Object propNode = entry.getValue();
|
||||||
if (parseNorms(builder, propName, propNode, parserContext)) {
|
if (parseNorms(builder, propName, propNode, parserContext)) {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
|
@ -237,7 +237,7 @@ public class TypeParsers {
|
||||||
Version indexVersionCreated = parserContext.indexVersionCreated();
|
Version indexVersionCreated = parserContext.indexVersionCreated();
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = fieldNode.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
final String propName = Strings.toUnderscoreCase(entry.getKey());
|
final String propName = entry.getKey();
|
||||||
final Object propNode = entry.getValue();
|
final Object propNode = entry.getValue();
|
||||||
if (propName.equals("store")) {
|
if (propName.equals("store")) {
|
||||||
builder.store(parseStore(name, propNode.toString(), parserContext));
|
builder.store(parseStore(name, propNode.toString(), parserContext));
|
||||||
|
@ -362,7 +362,6 @@ public class TypeParsers {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void parseTermVector(String fieldName, String termVector, FieldMapper.Builder builder) throws MapperParsingException {
|
public static void parseTermVector(String fieldName, String termVector, FieldMapper.Builder builder) throws MapperParsingException {
|
||||||
termVector = Strings.toUnderscoreCase(termVector);
|
|
||||||
if ("no".equals(termVector)) {
|
if ("no".equals(termVector)) {
|
||||||
builder.storeTermVectors(false);
|
builder.storeTermVectors(false);
|
||||||
} else if ("yes".equals(termVector)) {
|
} else if ("yes".equals(termVector)) {
|
||||||
|
|
|
@ -200,7 +200,7 @@ public abstract class BaseGeoPointFieldMapper extends FieldMapper implements Arr
|
||||||
|
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("lat_lon")) {
|
if (propName.equals("lat_lon")) {
|
||||||
deprecationLogger.deprecated(CONTENT_TYPE + " lat_lon parameter is deprecated and will be removed "
|
deprecationLogger.deprecated(CONTENT_TYPE + " lat_lon parameter is deprecated and will be removed "
|
||||||
|
|
|
@ -128,7 +128,7 @@ public class GeoPointFieldMapperLegacy extends BaseGeoPointFieldMapper implement
|
||||||
public static Builder parse(Builder builder, Map<String, Object> node, Mapper.TypeParser.ParserContext parserContext) throws MapperParsingException {
|
public static Builder parse(Builder builder, Map<String, Object> node, Mapper.TypeParser.ParserContext parserContext) throws MapperParsingException {
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals(Names.COERCE)) {
|
if (propName.equals(Names.COERCE)) {
|
||||||
builder.coerce = XContentMapValues.lenientNodeBooleanValue(propNode);
|
builder.coerce = XContentMapValues.lenientNodeBooleanValue(propNode);
|
||||||
|
|
|
@ -163,7 +163,7 @@ public class GeoShapeFieldMapper extends FieldMapper {
|
||||||
Builder builder = new Builder(name);
|
Builder builder = new Builder(name);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (Names.TREE.equals(fieldName)) {
|
if (Names.TREE.equals(fieldName)) {
|
||||||
builder.fieldType().setTree(fieldNode.toString());
|
builder.fieldType().setTree(fieldNode.toString());
|
||||||
|
|
|
@ -161,7 +161,7 @@ public class AllFieldMapper extends MetadataFieldMapper {
|
||||||
parseTextField(builder, builder.name, node, parserContext);
|
parseTextField(builder, builder.name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
builder.enabled(lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED :
|
builder.enabled(lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED :
|
||||||
|
|
|
@ -57,7 +57,7 @@ public class FieldNamesFieldMapper extends MetadataFieldMapper {
|
||||||
|
|
||||||
public static class Defaults {
|
public static class Defaults {
|
||||||
public static final String NAME = FieldNamesFieldMapper.NAME;
|
public static final String NAME = FieldNamesFieldMapper.NAME;
|
||||||
|
|
||||||
public static final boolean ENABLED = true;
|
public static final boolean ENABLED = true;
|
||||||
public static final MappedFieldType FIELD_TYPE = new FieldNamesFieldType();
|
public static final MappedFieldType FIELD_TYPE = new FieldNamesFieldType();
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ public class FieldNamesFieldMapper extends MetadataFieldMapper {
|
||||||
enabled(index);
|
enabled(index);
|
||||||
return super.index(index);
|
return super.index(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder enabled(boolean enabled) {
|
public Builder enabled(boolean enabled) {
|
||||||
this.enabled = enabled;
|
this.enabled = enabled;
|
||||||
return this;
|
return this;
|
||||||
|
@ -110,7 +110,7 @@ public class FieldNamesFieldMapper extends MetadataFieldMapper {
|
||||||
|
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
builder.enabled(lenientNodeBooleanValue(fieldNode));
|
builder.enabled(lenientNodeBooleanValue(fieldNode));
|
||||||
|
@ -286,12 +286,12 @@ public class FieldNamesFieldMapper extends MetadataFieldMapper {
|
||||||
if (includeDefaults == false && fieldType().isEnabled() == Defaults.ENABLED) {
|
if (includeDefaults == false && fieldType().isEnabled() == Defaults.ENABLED) {
|
||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.startObject(NAME);
|
builder.startObject(NAME);
|
||||||
if (includeDefaults || fieldType().isEnabled() != Defaults.ENABLED) {
|
if (includeDefaults || fieldType().isEnabled() != Defaults.ENABLED) {
|
||||||
builder.field("enabled", fieldType().isEnabled());
|
builder.field("enabled", fieldType().isEnabled());
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.endObject();
|
builder.endObject();
|
||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,7 +120,7 @@ public class ParentFieldMapper extends MetadataFieldMapper {
|
||||||
Builder builder = new Builder(parserContext.type());
|
Builder builder = new Builder(parserContext.type());
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("type")) {
|
if (fieldName.equals("type")) {
|
||||||
builder.type(fieldNode.toString());
|
builder.type(fieldNode.toString());
|
||||||
|
|
|
@ -91,7 +91,7 @@ public class RoutingFieldMapper extends MetadataFieldMapper {
|
||||||
Builder builder = new Builder(parserContext.mapperService().fullName(NAME));
|
Builder builder = new Builder(parserContext.mapperService().fullName(NAME));
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("required")) {
|
if (fieldName.equals("required")) {
|
||||||
builder.required(lenientNodeBooleanValue(fieldNode));
|
builder.required(lenientNodeBooleanValue(fieldNode));
|
||||||
|
|
|
@ -115,7 +115,7 @@ public class SourceFieldMapper extends MetadataFieldMapper {
|
||||||
|
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
builder.enabled(lenientNodeBooleanValue(fieldNode));
|
builder.enabled(lenientNodeBooleanValue(fieldNode));
|
||||||
|
|
|
@ -104,7 +104,7 @@ public class TTLFieldMapper extends MetadataFieldMapper {
|
||||||
Builder builder = new Builder();
|
Builder builder = new Builder();
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
EnabledAttributeMapper enabledState = lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED;
|
EnabledAttributeMapper enabledState = lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED;
|
||||||
|
|
|
@ -131,7 +131,7 @@ public class TimestampFieldMapper extends MetadataFieldMapper {
|
||||||
Boolean ignoreMissing = null;
|
Boolean ignoreMissing = null;
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
EnabledAttributeMapper enabledState = lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED;
|
EnabledAttributeMapper enabledState = lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED;
|
||||||
|
|
|
@ -144,7 +144,7 @@ public class LegacyIpFieldMapper extends LegacyNumberFieldMapper {
|
||||||
parseNumberField(builder, name, node, parserContext);
|
parseNumberField(builder, name, node, parserContext);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
Object propNode = entry.getValue();
|
Object propNode = entry.getValue();
|
||||||
if (propName.equals("null_value")) {
|
if (propName.equals("null_value")) {
|
||||||
if (propNode == null) {
|
if (propNode == null) {
|
||||||
|
|
|
@ -85,7 +85,7 @@ public class DynamicTemplate implements ToXContent {
|
||||||
String matchPattern = MatchType.SIMPLE.toString();
|
String matchPattern = MatchType.SIMPLE.toString();
|
||||||
|
|
||||||
for (Map.Entry<String, Object> entry : conf.entrySet()) {
|
for (Map.Entry<String, Object> entry : conf.entrySet()) {
|
||||||
String propName = Strings.toUnderscoreCase(entry.getKey());
|
String propName = entry.getKey();
|
||||||
if ("match".equals(propName)) {
|
if ("match".equals(propName)) {
|
||||||
match = entry.getValue().toString();
|
match = entry.getValue().toString();
|
||||||
} else if ("path_match".equals(propName)) {
|
} else if ("path_match".equals(propName)) {
|
||||||
|
|
|
@ -175,7 +175,7 @@ public class ObjectMapper extends Mapper implements AllFieldMapper.IncludeInAll,
|
||||||
parseNested(name, node, builder);
|
parseNested(name, node, builder);
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (parseObjectOrDocumentTypeProperties(fieldName, fieldNode, parserContext, builder)) {
|
if (parseObjectOrDocumentTypeProperties(fieldName, fieldNode, parserContext, builder)) {
|
||||||
iterator.remove();
|
iterator.remove();
|
||||||
|
|
|
@ -138,7 +138,7 @@ public class RootObjectMapper extends ObjectMapper {
|
||||||
Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator();
|
Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator();
|
||||||
while (iterator.hasNext()) {
|
while (iterator.hasNext()) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (parseObjectOrDocumentTypeProperties(fieldName, fieldNode, parserContext, builder)
|
if (parseObjectOrDocumentTypeProperties(fieldName, fieldNode, parserContext, builder)
|
||||||
|| processField(builder, fieldName, fieldNode, parserContext.indexVersionCreated())) {
|
|| processField(builder, fieldName, fieldNode, parserContext.indexVersionCreated())) {
|
||||||
|
|
|
@ -28,56 +28,60 @@ import static org.hamcrest.collection.IsArrayContainingInAnyOrder.arrayContainin
|
||||||
|
|
||||||
public class ParseFieldTests extends ESTestCase {
|
public class ParseFieldTests extends ESTestCase {
|
||||||
public void testParse() {
|
public void testParse() {
|
||||||
String[] values = new String[]{"foo_bar", "fooBar"};
|
String name = "foo_bar";
|
||||||
ParseField field = new ParseField(randomFrom(values));
|
ParseField field = new ParseField(name);
|
||||||
String[] deprecated = new String[]{"barFoo", "bar_foo"};
|
String[] deprecated = new String[]{"barFoo", "bar_foo", "Foobar"};
|
||||||
ParseField withDeprecations = field.withDeprecation("Foobar", randomFrom(deprecated));
|
ParseField withDeprecations = field.withDeprecation(deprecated);
|
||||||
assertThat(field, not(sameInstance(withDeprecations)));
|
assertThat(field, not(sameInstance(withDeprecations)));
|
||||||
assertThat(field.match(randomFrom(values), false), is(true));
|
assertThat(field.match(name, false), is(true));
|
||||||
assertThat(field.match("foo bar", false), is(false));
|
assertThat(field.match("foo bar", false), is(false));
|
||||||
assertThat(field.match(randomFrom(deprecated), false), is(false));
|
for (String deprecatedName : deprecated) {
|
||||||
assertThat(field.match("barFoo", false), is(false));
|
assertThat(field.match(deprecatedName, false), is(false));
|
||||||
|
}
|
||||||
|
|
||||||
assertThat(withDeprecations.match(randomFrom(values), false), is(true));
|
assertThat(withDeprecations.match(name, false), is(true));
|
||||||
assertThat(withDeprecations.match("foo bar", false), is(false));
|
assertThat(withDeprecations.match("foo bar", false), is(false));
|
||||||
assertThat(withDeprecations.match(randomFrom(deprecated), false), is(true));
|
for (String deprecatedName : deprecated) {
|
||||||
assertThat(withDeprecations.match("barFoo", false), is(true));
|
assertThat(withDeprecations.match(deprecatedName, false), is(true));
|
||||||
|
}
|
||||||
|
|
||||||
// now with strict mode
|
// now with strict mode
|
||||||
assertThat(field.match(randomFrom(values), true), is(true));
|
assertThat(field.match(name, true), is(true));
|
||||||
assertThat(field.match("foo bar", true), is(false));
|
assertThat(field.match("foo bar", true), is(false));
|
||||||
assertThat(field.match(randomFrom(deprecated), true), is(false));
|
for (String deprecatedName : deprecated) {
|
||||||
assertThat(field.match("barFoo", true), is(false));
|
assertThat(field.match(deprecatedName, true), is(false));
|
||||||
|
}
|
||||||
|
|
||||||
assertThat(withDeprecations.match(randomFrom(values), true), is(true));
|
assertThat(withDeprecations.match(name, true), is(true));
|
||||||
assertThat(withDeprecations.match("foo bar", true), is(false));
|
assertThat(withDeprecations.match("foo bar", true), is(false));
|
||||||
IllegalArgumentException e = expectThrows(IllegalArgumentException.class,
|
for (String deprecatedName : deprecated) {
|
||||||
() -> withDeprecations.match(randomFrom(deprecated), true));
|
IllegalArgumentException e = expectThrows(IllegalArgumentException.class, () -> {
|
||||||
assertThat(e.getMessage(), containsString("used, expected [foo_bar] instead"));
|
withDeprecations.match(deprecatedName, true);
|
||||||
e = expectThrows(IllegalArgumentException.class, () -> withDeprecations.match("barFoo", true));
|
});
|
||||||
assertThat(e.getMessage(), containsString("Deprecated field [barFoo] used, expected [foo_bar] instead"));
|
assertThat(e.getMessage(), containsString("used, expected [foo_bar] instead"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testAllDeprecated() {
|
public void testAllDeprecated() {
|
||||||
String[] values = new String[]{"like_text", "likeText"};
|
String name = "like_text";
|
||||||
|
|
||||||
boolean withDeprecatedNames = randomBoolean();
|
boolean withDeprecatedNames = randomBoolean();
|
||||||
String[] deprecated = new String[]{"text", "same_as_text"};
|
String[] deprecated = new String[]{"text", "same_as_text"};
|
||||||
String[] allValues;
|
String[] allValues;
|
||||||
if (withDeprecatedNames) {
|
if (withDeprecatedNames) {
|
||||||
String[] newArray = new String[values.length + deprecated.length];
|
String[] newArray = new String[1 + deprecated.length];
|
||||||
System.arraycopy(values, 0, newArray, 0, values.length);
|
newArray[0] = name;
|
||||||
System.arraycopy(deprecated, 0, newArray, values.length, deprecated.length);
|
System.arraycopy(deprecated, 0, newArray, 1, deprecated.length);
|
||||||
allValues = newArray;
|
allValues = newArray;
|
||||||
} else {
|
} else {
|
||||||
allValues = values;
|
allValues = new String[] {name};
|
||||||
}
|
}
|
||||||
|
|
||||||
ParseField field;
|
ParseField field;
|
||||||
if (withDeprecatedNames) {
|
if (withDeprecatedNames) {
|
||||||
field = new ParseField(randomFrom(values)).withDeprecation(deprecated).withAllDeprecated("like");
|
field = new ParseField(name).withDeprecation(deprecated).withAllDeprecated("like");
|
||||||
} else {
|
} else {
|
||||||
field = new ParseField(randomFrom(values)).withAllDeprecated("like");
|
field = new ParseField(name).withAllDeprecated("like");
|
||||||
}
|
}
|
||||||
|
|
||||||
// strict mode off
|
// strict mode off
|
||||||
|
@ -94,6 +98,6 @@ public class ParseFieldTests extends ESTestCase {
|
||||||
assertThat(parseField.getAllNamesIncludedDeprecated(), arrayContainingInAnyOrder("terms", "in"));
|
assertThat(parseField.getAllNamesIncludedDeprecated(), arrayContainingInAnyOrder("terms", "in"));
|
||||||
|
|
||||||
parseField = new ParseField("more_like_this", "mlt");
|
parseField = new ParseField("more_like_this", "mlt");
|
||||||
assertThat(parseField.getAllNamesIncludedDeprecated(), arrayContainingInAnyOrder("more_like_this", "moreLikeThis", "mlt"));
|
assertThat(parseField.getAllNamesIncludedDeprecated(), arrayContainingInAnyOrder("more_like_this", "mlt"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,16 +28,6 @@ import java.io.IOException;
|
||||||
import static org.hamcrest.Matchers.containsString;
|
import static org.hamcrest.Matchers.containsString;
|
||||||
|
|
||||||
public class StringsTests extends ESTestCase {
|
public class StringsTests extends ESTestCase {
|
||||||
public void testToCamelCase() {
|
|
||||||
assertEquals("foo", Strings.toCamelCase("foo"));
|
|
||||||
assertEquals("fooBar", Strings.toCamelCase("fooBar"));
|
|
||||||
assertEquals("FooBar", Strings.toCamelCase("FooBar"));
|
|
||||||
assertEquals("fooBar", Strings.toCamelCase("foo_bar"));
|
|
||||||
assertEquals("fooBarFooBar", Strings.toCamelCase("foo_bar_foo_bar"));
|
|
||||||
assertEquals("fooBar", Strings.toCamelCase("foo_bar_"));
|
|
||||||
assertEquals("_foo", Strings.toCamelCase("_foo"));
|
|
||||||
assertEquals("_fooBar", Strings.toCamelCase("_foo_bar_"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testSubstring() {
|
public void testSubstring() {
|
||||||
assertEquals(null, Strings.substring(null, 0, 1000));
|
assertEquals(null, Strings.substring(null, 0, 1000));
|
||||||
|
|
|
@ -36,16 +36,7 @@ import static org.hamcrest.Matchers.is;
|
||||||
import static org.hamcrest.Matchers.notNullValue;
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
import static org.hamcrest.Matchers.nullValue;
|
import static org.hamcrest.Matchers.nullValue;
|
||||||
|
|
||||||
/**
|
|
||||||
*/
|
|
||||||
public class SettingsTests extends ESTestCase {
|
public class SettingsTests extends ESTestCase {
|
||||||
public void testCamelCaseSupport() {
|
|
||||||
Settings settings = Settings.builder()
|
|
||||||
.put("test.camelCase", "bar")
|
|
||||||
.build();
|
|
||||||
assertThat(settings.get("test.camelCase"), equalTo("bar"));
|
|
||||||
assertThat(settings.get("test.camel_case"), equalTo("bar"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testLoadFromDelimitedString() {
|
public void testLoadFromDelimitedString() {
|
||||||
Settings settings = Settings.builder()
|
Settings settings = Settings.builder()
|
||||||
|
|
|
@ -42,7 +42,7 @@ public class ObjectParserTests extends ESTestCase {
|
||||||
"{\n"
|
"{\n"
|
||||||
+ " \"test\" : \"foo\",\n"
|
+ " \"test\" : \"foo\",\n"
|
||||||
+ " \"test_number\" : 2,\n"
|
+ " \"test_number\" : 2,\n"
|
||||||
+ " \"testArray\": [1,2,3,4]\n"
|
+ " \"test_array\": [1,2,3,4]\n"
|
||||||
+ "}");
|
+ "}");
|
||||||
class TestStruct {
|
class TestStruct {
|
||||||
public String test;
|
public String test;
|
||||||
|
@ -68,8 +68,6 @@ public class ObjectParserTests extends ESTestCase {
|
||||||
assertEquals(s.ints, Arrays.asList(1, 2, 3, 4));
|
assertEquals(s.ints, Arrays.asList(1, 2, 3, 4));
|
||||||
assertEquals(objectParser.toString(), "ObjectParser{name='foo', fields=["
|
assertEquals(objectParser.toString(), "ObjectParser{name='foo', fields=["
|
||||||
+ "FieldParser{preferred_name=test, supportedTokens=[VALUE_STRING], type=STRING}, "
|
+ "FieldParser{preferred_name=test, supportedTokens=[VALUE_STRING], type=STRING}, "
|
||||||
+ "FieldParser{preferred_name=test_number, supportedTokens=[VALUE_STRING, VALUE_NUMBER], type=INT}, "
|
|
||||||
+ "FieldParser{preferred_name=test_array, supportedTokens=[START_ARRAY, VALUE_STRING, VALUE_NUMBER], type=INT_ARRAY}, "
|
|
||||||
+ "FieldParser{preferred_name=test_array, supportedTokens=[START_ARRAY, VALUE_STRING, VALUE_NUMBER], type=INT_ARRAY}, "
|
+ "FieldParser{preferred_name=test_array, supportedTokens=[START_ARRAY, VALUE_STRING, VALUE_NUMBER], type=INT_ARRAY}, "
|
||||||
+ "FieldParser{preferred_name=test_number, supportedTokens=[VALUE_STRING, VALUE_NUMBER], type=INT}]}");
|
+ "FieldParser{preferred_name=test_number, supportedTokens=[VALUE_STRING, VALUE_NUMBER], type=INT}]}");
|
||||||
}
|
}
|
||||||
|
|
|
@ -170,33 +170,6 @@ public class AnalysisServiceTests extends ESTestCase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testCameCaseOverride() throws IOException {
|
|
||||||
Settings settings = Settings.builder().put(Environment.PATH_HOME_SETTING.getKey(), createTempDir().toString()).build();
|
|
||||||
Settings indexSettings = Settings.builder()
|
|
||||||
.put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT)
|
|
||||||
.put("index.analysis.filter.wordDelimiter.type", "word_delimiter")
|
|
||||||
.put("index.analysis.filter.wordDelimiter.split_on_numerics", false)
|
|
||||||
.put("index.analysis.analyzer.custom_analyzer.tokenizer", "whitespace")
|
|
||||||
.putArray("index.analysis.analyzer.custom_analyzer.filter", "lowercase", "wordDelimiter")
|
|
||||||
.put("index.analysis.analyzer.custom_analyzer_1.tokenizer", "whitespace")
|
|
||||||
.putArray("index.analysis.analyzer.custom_analyzer_1.filter", "lowercase", "word_delimiter").build();
|
|
||||||
IndexSettings idxSettings = IndexSettingsModule.newIndexSettings("index", indexSettings);
|
|
||||||
AnalysisService analysisService = new AnalysisRegistry(null, new Environment(settings)).build(idxSettings);
|
|
||||||
|
|
||||||
TokenFilterFactory word_delimiter = analysisService.tokenFilter("word_delimiter");
|
|
||||||
TokenFilterFactory override = analysisService.tokenFilter("wordDelimiter");
|
|
||||||
assertNotEquals(word_delimiter.name(), override.name());
|
|
||||||
assertNotSame(analysisService.tokenFilter("wordDelimiter"), analysisService.tokenFilter("word_delimiter"));
|
|
||||||
assertSame(analysisService.tokenFilter("porterStem"), analysisService.tokenFilter("porter_stem"));
|
|
||||||
|
|
||||||
//unconfigured
|
|
||||||
IndexSettings idxSettings1 = IndexSettingsModule.newIndexSettings("index", Settings.builder()
|
|
||||||
.put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT).build());
|
|
||||||
AnalysisService analysisService1 = new AnalysisRegistry(null, new Environment(settings)).build(idxSettings1);
|
|
||||||
assertSame(analysisService1.tokenFilter("wordDelimiter"), analysisService1.tokenFilter("word_delimiter"));
|
|
||||||
assertSame(analysisService1.tokenFilter("porterStem"), analysisService1.tokenFilter("porter_stem"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testBuiltInAnalyzersAreCached() throws IOException {
|
public void testBuiltInAnalyzersAreCached() throws IOException {
|
||||||
Settings settings = Settings.builder().put(Environment.PATH_HOME_SETTING.getKey(), createTempDir().toString()).build();
|
Settings settings = Settings.builder().put(Environment.PATH_HOME_SETTING.getKey(), createTempDir().toString()).build();
|
||||||
Settings indexSettings = Settings.builder()
|
Settings indexSettings = Settings.builder()
|
||||||
|
|
|
@ -158,27 +158,6 @@ public class HasParentQueryBuilderTests extends AbstractQueryTestCase<HasParentQ
|
||||||
|
|
||||||
HasParentQueryBuilder queryBuilder = (HasParentQueryBuilder) parseQuery(builder.string(), ParseFieldMatcher.EMPTY);
|
HasParentQueryBuilder queryBuilder = (HasParentQueryBuilder) parseQuery(builder.string(), ParseFieldMatcher.EMPTY);
|
||||||
assertEquals("foo", queryBuilder.type());
|
assertEquals("foo", queryBuilder.type());
|
||||||
|
|
||||||
boolean score = randomBoolean();
|
|
||||||
String key = RandomPicks.randomFrom(random(), Arrays.asList("score_mode", "scoreMode"));
|
|
||||||
builder = XContentFactory.jsonBuilder().prettyPrint();
|
|
||||||
builder.startObject();
|
|
||||||
builder.startObject("has_parent");
|
|
||||||
builder.field("query");
|
|
||||||
new TermQueryBuilder("a", "a").toXContent(builder, ToXContent.EMPTY_PARAMS);
|
|
||||||
builder.field(key, score ? "score": "none");
|
|
||||||
builder.field("parent_type", "foo");
|
|
||||||
builder.endObject();
|
|
||||||
builder.endObject();
|
|
||||||
try {
|
|
||||||
parseQuery(builder.string());
|
|
||||||
fail(key + " is deprecated");
|
|
||||||
} catch (IllegalArgumentException ex) {
|
|
||||||
assertEquals("Deprecated field [" + key + "] used, replaced by [score]", ex.getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
queryBuilder = (HasParentQueryBuilder) parseQuery(builder.string(), ParseFieldMatcher.EMPTY);
|
|
||||||
assertEquals(score, queryBuilder.score());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testToQueryInnerQueryType() throws IOException {
|
public void testToQueryInnerQueryType() throws IOException {
|
||||||
|
|
|
@ -387,9 +387,6 @@ public class MatchQueryBuilderTests extends AbstractQueryTestCase<MatchQueryBuil
|
||||||
public void testLegacyFuzzyMatchQuery() throws IOException {
|
public void testLegacyFuzzyMatchQuery() throws IOException {
|
||||||
MatchQueryBuilder expectedQB = new MatchQueryBuilder("message", "to be or not to be");
|
MatchQueryBuilder expectedQB = new MatchQueryBuilder("message", "to be or not to be");
|
||||||
String type = randomFrom("fuzzy_match", "match_fuzzy");
|
String type = randomFrom("fuzzy_match", "match_fuzzy");
|
||||||
if (randomBoolean()) {
|
|
||||||
type = Strings.toCamelCase(type);
|
|
||||||
}
|
|
||||||
String json = "{\n" +
|
String json = "{\n" +
|
||||||
" \"" + type + "\" : {\n" +
|
" \"" + type + "\" : {\n" +
|
||||||
" \"message\" : {\n" +
|
" \"message\" : {\n" +
|
||||||
|
|
|
@ -74,13 +74,12 @@ public class PrefixQueryBuilderTests extends AbstractQueryTestCase<PrefixQueryBu
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testBlendedRewriteMethod() throws IOException {
|
public void testBlendedRewriteMethod() throws IOException {
|
||||||
for (String rewrite : Arrays.asList("top_terms_blended_freqs_10", "topTermsBlendedFreqs10")) {
|
String rewrite = "top_terms_blended_freqs_10";
|
||||||
Query parsedQuery = parseQuery(prefixQuery("field", "val").rewrite(rewrite).buildAsBytes()).toQuery(createShardContext());
|
Query parsedQuery = parseQuery(prefixQuery("field", "val").rewrite(rewrite).buildAsBytes()).toQuery(createShardContext());
|
||||||
assertThat(parsedQuery, instanceOf(PrefixQuery.class));
|
assertThat(parsedQuery, instanceOf(PrefixQuery.class));
|
||||||
PrefixQuery prefixQuery = (PrefixQuery) parsedQuery;
|
PrefixQuery prefixQuery = (PrefixQuery) parsedQuery;
|
||||||
assertThat(prefixQuery.getPrefix(), equalTo(new Term("field", "val")));
|
assertThat(prefixQuery.getPrefix(), equalTo(new Term("field", "val")));
|
||||||
assertThat(prefixQuery.getRewriteMethod(), instanceOf(MultiTermQuery.TopTermsBlendedFreqScoringRewrite.class));
|
assertThat(prefixQuery.getRewriteMethod(), instanceOf(MultiTermQuery.TopTermsBlendedFreqScoringRewrite.class));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testFromJson() throws IOException {
|
public void testFromJson() throws IOException {
|
||||||
|
@ -94,4 +93,4 @@ public class PrefixQueryBuilderTests extends AbstractQueryTestCase<PrefixQueryBu
|
||||||
assertEquals(json, 2.0, parsed.boost(), 0.00001);
|
assertEquals(json, 2.0, parsed.boost(), 0.00001);
|
||||||
assertEquals(json, "user", parsed.fieldName());
|
assertEquals(json, "user", parsed.fieldName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,16 +76,6 @@ public class ScriptParameterParserTests extends ESTestCase {
|
||||||
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
||||||
assertThat(paramParser.lang(), nullValue());
|
assertThat(paramParser.lang(), nullValue());
|
||||||
|
|
||||||
parser = XContentHelper.createParser(new BytesArray("{ \"scriptFile\" : \"scriptValue\" }"));
|
|
||||||
token = parser.nextToken();
|
|
||||||
while (token != Token.VALUE_STRING) {
|
|
||||||
token = parser.nextToken();
|
|
||||||
}
|
|
||||||
paramParser = new ScriptParameterParser();
|
|
||||||
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
|
||||||
assertThat(paramParser.lang(), nullValue());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testTokenDefaultIndexed() throws IOException {
|
public void testTokenDefaultIndexed() throws IOException {
|
||||||
|
@ -98,16 +88,6 @@ public class ScriptParameterParserTests extends ESTestCase {
|
||||||
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
||||||
assertThat(paramParser.lang(), nullValue());
|
assertThat(paramParser.lang(), nullValue());
|
||||||
|
|
||||||
parser = XContentHelper.createParser(new BytesArray("{ \"scriptId\" : \"scriptValue\" }"));
|
|
||||||
token = parser.nextToken();
|
|
||||||
while (token != Token.VALUE_STRING) {
|
|
||||||
token = parser.nextToken();
|
|
||||||
}
|
|
||||||
paramParser = new ScriptParameterParser();
|
|
||||||
assertThat(paramParser.token(parser.currentName(), parser.currentToken(), parser, ParseFieldMatcher.STRICT), equalTo(true));
|
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
|
||||||
assertThat(paramParser.lang(), nullValue());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testTokenDefaultNotFound() throws IOException {
|
public void testTokenDefaultNotFound() throws IOException {
|
||||||
|
@ -562,14 +542,6 @@ public class ScriptParameterParserTests extends ESTestCase {
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
||||||
assertThat(paramParser.lang(), nullValue());
|
assertThat(paramParser.lang(), nullValue());
|
||||||
assertThat(config.isEmpty(), equalTo(true));
|
assertThat(config.isEmpty(), equalTo(true));
|
||||||
|
|
||||||
config = new HashMap<>();
|
|
||||||
config.put("scriptFile", "scriptValue");
|
|
||||||
paramParser = new ScriptParameterParser();
|
|
||||||
paramParser.parseConfig(config, true, ParseFieldMatcher.STRICT);
|
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.FILE);
|
|
||||||
assertThat(paramParser.lang(), nullValue());
|
|
||||||
assertThat(config.isEmpty(), equalTo(true));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testConfigDefaultIndexed() throws IOException {
|
public void testConfigDefaultIndexed() throws IOException {
|
||||||
|
@ -580,14 +552,6 @@ public class ScriptParameterParserTests extends ESTestCase {
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
||||||
assertThat(paramParser.lang(), nullValue());
|
assertThat(paramParser.lang(), nullValue());
|
||||||
assertThat(config.isEmpty(), equalTo(true));
|
assertThat(config.isEmpty(), equalTo(true));
|
||||||
|
|
||||||
config = new HashMap<>();
|
|
||||||
config.put("scriptId", "scriptValue");
|
|
||||||
paramParser = new ScriptParameterParser();
|
|
||||||
paramParser.parseConfig(config, true, ParseFieldMatcher.STRICT);
|
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
|
||||||
assertThat(paramParser.lang(), nullValue());
|
|
||||||
assertThat(config.isEmpty(), equalTo(true));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testConfigDefaultIndexedNoRemove() throws IOException {
|
public void testConfigDefaultIndexedNoRemove() throws IOException {
|
||||||
|
@ -599,15 +563,6 @@ public class ScriptParameterParserTests extends ESTestCase {
|
||||||
assertThat(paramParser.lang(), nullValue());
|
assertThat(paramParser.lang(), nullValue());
|
||||||
assertThat(config.size(), equalTo(1));
|
assertThat(config.size(), equalTo(1));
|
||||||
assertThat((String) config.get("script_id"), equalTo("scriptValue"));
|
assertThat((String) config.get("script_id"), equalTo("scriptValue"));
|
||||||
|
|
||||||
config = new HashMap<>();
|
|
||||||
config.put("scriptId", "scriptValue");
|
|
||||||
paramParser = new ScriptParameterParser();
|
|
||||||
paramParser.parseConfig(config, false, ParseFieldMatcher.STRICT);
|
|
||||||
assertDefaultParameterValue(paramParser, "scriptValue", ScriptType.STORED);
|
|
||||||
assertThat(paramParser.lang(), nullValue());
|
|
||||||
assertThat(config.size(), equalTo(1));
|
|
||||||
assertThat((String) config.get("scriptId"), equalTo("scriptValue"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testConfigDefaultNotFound() throws IOException {
|
public void testConfigDefaultNotFound() throws IOException {
|
||||||
|
|
|
@ -43,8 +43,6 @@ import static org.hamcrest.Matchers.containsInAnyOrder;
|
||||||
import static org.hamcrest.Matchers.containsString;
|
import static org.hamcrest.Matchers.containsString;
|
||||||
import static org.hamcrest.Matchers.notNullValue;
|
import static org.hamcrest.Matchers.notNullValue;
|
||||||
|
|
||||||
/**
|
|
||||||
*/
|
|
||||||
public class SearchModuleTests extends ModuleTestCase {
|
public class SearchModuleTests extends ModuleTestCase {
|
||||||
|
|
||||||
public void testDoubleRegister() {
|
public void testDoubleRegister() {
|
||||||
|
@ -120,67 +118,38 @@ public class SearchModuleTests extends ModuleTestCase {
|
||||||
"bool",
|
"bool",
|
||||||
"boosting",
|
"boosting",
|
||||||
"common",
|
"common",
|
||||||
"constantScore",
|
|
||||||
"constant_score",
|
"constant_score",
|
||||||
"disMax",
|
|
||||||
"dis_max",
|
"dis_max",
|
||||||
"exists",
|
"exists",
|
||||||
"fieldMaskingSpan",
|
|
||||||
"field_masking_span",
|
"field_masking_span",
|
||||||
"functionScore",
|
|
||||||
"function_score",
|
"function_score",
|
||||||
"fuzzy",
|
"fuzzy",
|
||||||
"geoBoundingBox",
|
|
||||||
"geoDistance",
|
|
||||||
"geoDistanceRange",
|
|
||||||
"geoPolygon",
|
|
||||||
"geoShape",
|
|
||||||
"geo_bounding_box",
|
"geo_bounding_box",
|
||||||
"geo_distance",
|
"geo_distance",
|
||||||
"geo_distance_range",
|
"geo_distance_range",
|
||||||
"geo_polygon",
|
"geo_polygon",
|
||||||
"geo_shape",
|
"geo_shape",
|
||||||
"geohashCell",
|
|
||||||
"geohash_cell",
|
"geohash_cell",
|
||||||
"hasChild",
|
|
||||||
"hasParent",
|
|
||||||
"has_child",
|
"has_child",
|
||||||
"has_parent",
|
"has_parent",
|
||||||
"ids",
|
"ids",
|
||||||
"indices",
|
"indices",
|
||||||
"match",
|
"match",
|
||||||
"matchAll",
|
|
||||||
"matchNone",
|
|
||||||
"matchPhrase",
|
|
||||||
"matchPhrasePrefix",
|
|
||||||
"match_all",
|
"match_all",
|
||||||
"match_none",
|
"match_none",
|
||||||
"match_phrase",
|
"match_phrase",
|
||||||
"match_phrase_prefix",
|
"match_phrase_prefix",
|
||||||
"moreLikeThis",
|
|
||||||
"more_like_this",
|
"more_like_this",
|
||||||
"multiMatch",
|
|
||||||
"multi_match",
|
"multi_match",
|
||||||
"nested",
|
"nested",
|
||||||
"parentId",
|
|
||||||
"parent_id",
|
"parent_id",
|
||||||
"percolate",
|
"percolate",
|
||||||
"prefix",
|
"prefix",
|
||||||
"queryString",
|
|
||||||
"query_string",
|
"query_string",
|
||||||
"range",
|
"range",
|
||||||
"regexp",
|
"regexp",
|
||||||
"script",
|
"script",
|
||||||
"simpleQueryString",
|
|
||||||
"simple_query_string",
|
"simple_query_string",
|
||||||
"spanContaining",
|
|
||||||
"spanFirst",
|
|
||||||
"spanMulti",
|
|
||||||
"spanNear",
|
|
||||||
"spanNot",
|
|
||||||
"spanOr",
|
|
||||||
"spanTerm",
|
|
||||||
"spanWithin",
|
|
||||||
"span_containing",
|
"span_containing",
|
||||||
"span_first",
|
"span_first",
|
||||||
"span_multi",
|
"span_multi",
|
||||||
|
@ -198,12 +167,9 @@ public class SearchModuleTests extends ModuleTestCase {
|
||||||
};
|
};
|
||||||
|
|
||||||
private static final String[] DEPRECATED_QUERIES = new String[] {
|
private static final String[] DEPRECATED_QUERIES = new String[] {
|
||||||
"fuzzyMatch",
|
|
||||||
"fuzzy_match",
|
"fuzzy_match",
|
||||||
"geoBbox",
|
|
||||||
"geo_bbox",
|
"geo_bbox",
|
||||||
"in",
|
"in",
|
||||||
"matchFuzzy",
|
|
||||||
"match_fuzzy",
|
"match_fuzzy",
|
||||||
"mlt"
|
"mlt"
|
||||||
};
|
};
|
||||||
|
|
|
@ -794,26 +794,26 @@ public class HighlighterSearchIT extends ESIntegTestCase {
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("foo")
|
.startObject("foo")
|
||||||
.field("type", "text")
|
.field("type", "text")
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.field("store", true)
|
.field("store", true)
|
||||||
.field("analyzer", "english")
|
.field("analyzer", "english")
|
||||||
.startObject("fields")
|
.startObject("fields")
|
||||||
.startObject("plain")
|
.startObject("plain")
|
||||||
.field("type", "text")
|
.field("type", "text")
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.field("analyzer", "standard")
|
.field("analyzer", "standard")
|
||||||
.endObject()
|
.endObject()
|
||||||
.endObject()
|
.endObject()
|
||||||
.endObject()
|
.endObject()
|
||||||
.startObject("bar")
|
.startObject("bar")
|
||||||
.field("type", "text")
|
.field("type", "text")
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.field("store", true)
|
.field("store", true)
|
||||||
.field("analyzer", "english")
|
.field("analyzer", "english")
|
||||||
.startObject("fields")
|
.startObject("fields")
|
||||||
.startObject("plain")
|
.startObject("plain")
|
||||||
.field("type", "text")
|
.field("type", "text")
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.field("analyzer", "standard")
|
.field("analyzer", "standard")
|
||||||
.endObject()
|
.endObject()
|
||||||
.endObject()
|
.endObject()
|
||||||
|
@ -981,10 +981,10 @@ public class HighlighterSearchIT extends ESIntegTestCase {
|
||||||
|
|
||||||
public XContentBuilder type1TermVectorMapping() throws IOException {
|
public XContentBuilder type1TermVectorMapping() throws IOException {
|
||||||
return XContentFactory.jsonBuilder().startObject().startObject("type1")
|
return XContentFactory.jsonBuilder().startObject().startObject("type1")
|
||||||
.startObject("_all").field("store", true).field("termVector", "with_positions_offsets").endObject()
|
.startObject("_all").field("store", true).field("term_vector", "with_positions_offsets").endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("field1").field("type", "text").field("termVector", "with_positions_offsets").endObject()
|
.startObject("field1").field("type", "text").field("term_vector", "with_positions_offsets").endObject()
|
||||||
.startObject("field2").field("type", "text").field("termVector", "with_positions_offsets").endObject()
|
.startObject("field2").field("type", "text").field("term_vector", "with_positions_offsets").endObject()
|
||||||
.endObject()
|
.endObject()
|
||||||
.endObject().endObject();
|
.endObject().endObject();
|
||||||
}
|
}
|
||||||
|
@ -1365,7 +1365,7 @@ public class HighlighterSearchIT extends ESIntegTestCase {
|
||||||
.putArray("index.analysis.filter.synonym.synonyms", "quick => fast");
|
.putArray("index.analysis.filter.synonym.synonyms", "quick => fast");
|
||||||
|
|
||||||
assertAcked(prepareCreate("test").setSettings(builder.build()).addMapping("type1", type1TermVectorMapping())
|
assertAcked(prepareCreate("test").setSettings(builder.build()).addMapping("type1", type1TermVectorMapping())
|
||||||
.addMapping("type2", "_all", "store=true,termVector=with_positions_offsets",
|
.addMapping("type2", "_all", "store=true,term_vector=with_positions_offsets",
|
||||||
"field4", "type=text,term_vector=with_positions_offsets,analyzer=synonym",
|
"field4", "type=text,term_vector=with_positions_offsets,analyzer=synonym",
|
||||||
"field3", "type=text,analyzer=synonym"));
|
"field3", "type=text,analyzer=synonym"));
|
||||||
ensureGreen();
|
ensureGreen();
|
||||||
|
|
|
@ -1615,7 +1615,7 @@ public class SearchQueryIT extends ESIntegTestCase {
|
||||||
.put("index.analysis.analyzer.index.filter", "lowercase")
|
.put("index.analysis.analyzer.index.filter", "lowercase")
|
||||||
.put("index.analysis.analyzer.search.type", "custom")
|
.put("index.analysis.analyzer.search.type", "custom")
|
||||||
.put("index.analysis.analyzer.search.tokenizer", "standard")
|
.put("index.analysis.analyzer.search.tokenizer", "standard")
|
||||||
.putArray("index.analysis.analyzer.search.filter", "lowercase", "keyword_repeat", "porterStem", "unique_stem")
|
.putArray("index.analysis.analyzer.search.filter", "lowercase", "keyword_repeat", "porter_stem", "unique_stem")
|
||||||
.put("index.analysis.filter.unique_stem.type", "unique")
|
.put("index.analysis.filter.unique_stem.type", "unique")
|
||||||
.put("index.analysis.filter.unique_stem.only_on_same_position", true));
|
.put("index.analysis.filter.unique_stem.only_on_same_position", true));
|
||||||
assertAcked(builder.addMapping("test", "text", "type=text,analyzer=index,search_analyzer=search"));
|
assertAcked(builder.addMapping("test", "text", "type=text,analyzer=index,search_analyzer=search"));
|
||||||
|
|
|
@ -465,7 +465,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
.put("index.analysis.filter.my_shingle.min_shingle_size", 2)
|
.put("index.analysis.filter.my_shingle.min_shingle_size", 2)
|
||||||
.put("index.analysis.filter.my_shingle.max_shingle_size", 2));
|
.put("index.analysis.filter.my_shingle.max_shingle_size", 2));
|
||||||
XContentBuilder mapping = XContentFactory.jsonBuilder().startObject().startObject("type1")
|
XContentBuilder mapping = XContentFactory.jsonBuilder().startObject().startObject("type1")
|
||||||
.startObject("_all").field("store", true).field("termVector", "with_positions_offsets").endObject()
|
.startObject("_all").field("store", true).field("term_vector", "with_positions_offsets").endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("body").field("type", "text").field("analyzer", "body").endObject()
|
.startObject("body").field("type", "text").field("analyzer", "body").endObject()
|
||||||
.startObject("body_reverse").field("type", "text").field("analyzer", "reverse").endObject()
|
.startObject("body_reverse").field("type", "text").field("analyzer", "reverse").endObject()
|
||||||
|
@ -510,7 +510,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
XContentBuilder mapping = XContentFactory.jsonBuilder().startObject().startObject("type1")
|
XContentBuilder mapping = XContentFactory.jsonBuilder().startObject().startObject("type1")
|
||||||
.startObject("_all")
|
.startObject("_all")
|
||||||
.field("store", true)
|
.field("store", true)
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.endObject()
|
.endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("body").
|
.startObject("body").
|
||||||
|
@ -625,7 +625,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
return Files.readAllLines(PathUtils.get(Suggest.class.getResource("/config/names.txt").toURI()), StandardCharsets.UTF_8);
|
return Files.readAllLines(PathUtils.get(Suggest.class.getResource("/config/names.txt").toURI()), StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testSizePararm() throws IOException {
|
public void testSizeParam() throws IOException {
|
||||||
CreateIndexRequestBuilder builder = prepareCreate("test").setSettings(Settings.builder()
|
CreateIndexRequestBuilder builder = prepareCreate("test").setSettings(Settings.builder()
|
||||||
.put(SETTING_NUMBER_OF_SHARDS, 1)
|
.put(SETTING_NUMBER_OF_SHARDS, 1)
|
||||||
.put("index.analysis.analyzer.reverse.tokenizer", "standard")
|
.put("index.analysis.analyzer.reverse.tokenizer", "standard")
|
||||||
|
@ -644,7 +644,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
.startObject("type1")
|
.startObject("type1")
|
||||||
.startObject("_all")
|
.startObject("_all")
|
||||||
.field("store", true)
|
.field("store", true)
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.endObject()
|
.endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("body")
|
.startObject("body")
|
||||||
|
@ -712,7 +712,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
|
|
||||||
XContentBuilder mapping = XContentFactory.jsonBuilder()
|
XContentBuilder mapping = XContentFactory.jsonBuilder()
|
||||||
.startObject().startObject("type1")
|
.startObject().startObject("type1")
|
||||||
.startObject("_all").field("store", true).field("termVector", "with_positions_offsets").endObject()
|
.startObject("_all").field("store", true).field("term_vector", "with_positions_offsets").endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("body").field("type", "text").field("analyzer", "body").endObject()
|
.startObject("body").field("type", "text").field("analyzer", "body").endObject()
|
||||||
.startObject("bigram").field("type", "text").field("analyzer", "bigram").endObject()
|
.startObject("bigram").field("type", "text").field("analyzer", "bigram").endObject()
|
||||||
|
@ -911,7 +911,7 @@ public class SuggestSearchTests extends ESIntegTestCase {
|
||||||
.startObject("type1")
|
.startObject("type1")
|
||||||
.startObject("_all")
|
.startObject("_all")
|
||||||
.field("store", true)
|
.field("store", true)
|
||||||
.field("termVector", "with_positions_offsets")
|
.field("term_vector", "with_positions_offsets")
|
||||||
.endObject()
|
.endObject()
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
.startObject("body")
|
.startObject("body")
|
||||||
|
|
|
@ -86,9 +86,9 @@ public class RestReindexAction extends AbstractBaseReindexRestHandler<ReindexReq
|
||||||
destParser.declareString(IndexRequest::index, new ParseField("index"));
|
destParser.declareString(IndexRequest::index, new ParseField("index"));
|
||||||
destParser.declareString(IndexRequest::type, new ParseField("type"));
|
destParser.declareString(IndexRequest::type, new ParseField("type"));
|
||||||
destParser.declareString(IndexRequest::routing, new ParseField("routing"));
|
destParser.declareString(IndexRequest::routing, new ParseField("routing"));
|
||||||
destParser.declareString(IndexRequest::opType, new ParseField("opType"));
|
destParser.declareString(IndexRequest::opType, new ParseField("op_type"));
|
||||||
destParser.declareString(IndexRequest::setPipeline, new ParseField("pipeline"));
|
destParser.declareString(IndexRequest::setPipeline, new ParseField("pipeline"));
|
||||||
destParser.declareString((s, i) -> s.versionType(VersionType.fromString(i)), new ParseField("versionType"));
|
destParser.declareString((s, i) -> s.versionType(VersionType.fromString(i)), new ParseField("version_type"));
|
||||||
|
|
||||||
// These exist just so the user can get a nice validation error:
|
// These exist just so the user can get a nice validation error:
|
||||||
destParser.declareString(IndexRequest::timestamp, new ParseField("timestamp"));
|
destParser.declareString(IndexRequest::timestamp, new ParseField("timestamp"));
|
||||||
|
|
|
@ -99,7 +99,7 @@ public class SizeFieldMapper extends MetadataFieldMapper {
|
||||||
Builder builder = new Builder(parserContext.mapperService().fullName(NAME), parserContext.indexVersionCreated());
|
Builder builder = new Builder(parserContext.mapperService().fullName(NAME), parserContext.indexVersionCreated());
|
||||||
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> iterator = node.entrySet().iterator(); iterator.hasNext();) {
|
||||||
Map.Entry<String, Object> entry = iterator.next();
|
Map.Entry<String, Object> entry = iterator.next();
|
||||||
String fieldName = Strings.toUnderscoreCase(entry.getKey());
|
String fieldName = entry.getKey();
|
||||||
Object fieldNode = entry.getValue();
|
Object fieldNode = entry.getValue();
|
||||||
if (fieldName.equals("enabled")) {
|
if (fieldName.equals("enabled")) {
|
||||||
builder.enabled(lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED);
|
builder.enabled(lenientNodeBooleanValue(fieldNode) ? EnabledAttributeMapper.ENABLED : EnabledAttributeMapper.DISABLED);
|
||||||
|
|
|
@ -65,7 +65,7 @@ import static org.hamcrest.Matchers.greaterThan;
|
||||||
transportClientRatio = 0.0)
|
transportClientRatio = 0.0)
|
||||||
public class AzureSnapshotRestoreTests extends AbstractAzureWithThirdPartyTestCase {
|
public class AzureSnapshotRestoreTests extends AbstractAzureWithThirdPartyTestCase {
|
||||||
private String getRepositoryPath() {
|
private String getRepositoryPath() {
|
||||||
String testName = "it-".concat(Strings.toUnderscoreCase(getTestName()).replaceAll("_", "-"));
|
String testName = "it-" + getTestName();
|
||||||
return testName.contains(" ") ? Strings.split(testName, " ")[0] : testName;
|
return testName.contains(" ") ? Strings.split(testName, " ")[0] : testName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue