Browse Source

Fixed broken test due to rebase with changes from master.

pull/546/head
Diana Shkolnikov 9 years ago
parent
commit
b0aab1afd3
  1. 139
      test/unit/fixture/search_with_category_filtering.js

139
test/unit/fixture/search_with_category_filtering.js

@ -1,93 +1,86 @@
module.exports = { module.exports = {
'query': { 'query': {
'filtered': { 'bool': {
'query': { 'must': [{
'bool': { 'match': {
'must': [{ 'name.default': {
'query': 'test',
'boost': 1,
'analyzer': 'peliasQueryFullToken'
}
}
}],
'should': [{
'match': {
'phrase.default': {
'query': 'test',
'analyzer': 'peliasPhrase',
'type': 'phrase',
'boost': 1,
'slop': 2
}
}
}, {
'function_score': {
'query': {
'match': { 'match': {
'name.default': { 'phrase.default': {
'query': 'test', 'query': 'test',
'boost': 1, 'analyzer': 'peliasPhrase',
'analyzer': 'peliasIndexOneEdgeGram' 'type': 'phrase',
'slop': 2,
'boost': 1
} }
} }
}], },
'should': [{ 'max_boost': 20,
'score_mode': 'first',
'boost_mode': 'replace',
'functions': [{
'field_value_factor': {
'modifier': 'log1p',
'field': 'popularity',
'missing': 1
},
'weight': 1
}]
}
}, {
'function_score': {
'query': {
'match': { 'match': {
'phrase.default': { 'phrase.default': {
'query': 'test', 'query': 'test',
'analyzer': 'peliasPhrase', 'analyzer': 'peliasPhrase',
'type': 'phrase', 'type': 'phrase',
'boost': 1, 'slop': 2,
'slop': 2 'boost': 1
} }
} }
}, { },
'function_score': { 'max_boost': 20,
'query': { 'score_mode': 'first',
'match': { 'boost_mode': 'replace',
'phrase.default': { 'functions': [{
'query': 'test', 'field_value_factor': {
'analyzer': 'peliasPhrase', 'modifier': 'log1p',
'type': 'phrase', 'field': 'population',
'slop': 2, 'missing': 1
'boost': 1 },
} 'weight': 2
}
},
'max_boost': 20,
'score_mode': 'first',
'boost_mode': 'replace',
'functions': [{
'field_value_factor': {
'modifier': 'log1p',
'field': 'popularity',
'missing': 1
},
'weight': 1
}]
}
}, {
'function_score': {
'query': {
'match': {
'phrase.default': {
'query': 'test',
'analyzer': 'peliasPhrase',
'type': 'phrase',
'slop': 2,
'boost': 1
}
}
},
'max_boost': 20,
'score_mode': 'first',
'boost_mode': 'replace',
'functions': [{
'field_value_factor': {
'modifier': 'log1p',
'field': 'population',
'missing': 1
},
'weight': 2
}]
}
}] }]
} }
}, }],
'filter': { 'filter': [{
'bool': { 'terms': {
'must': [{ 'category': ['retail', 'food']
'terms': {
'category': ['retail','food']
}
}]
} }
} }]
} }
}, },
'sort': [ '_score' ],
'size': 20, 'size': 20,
'track_scores': true 'track_scores': true,
'sort': [
'_score'
]
}; };

Loading…
Cancel
Save