forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added integration tests for match_only_text replicating text field in…
…teg tests Signed-off-by: Rishabh Maurya <[email protected]>
- Loading branch information
1 parent
b765a36
commit 40e205e
Showing
19 changed files
with
2,684 additions
and
0 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
...yamlRestTest/resources/rest-api-spec/test/search.query/11_match_field_match_only_text.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# integration tests for queries with specific analysis chains | ||
|
||
"match query with stacked stems": | ||
# Tests the match query stemmed tokens are "stacked" on top of the unstemmed | ||
# versions in the same position. | ||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
settings: | ||
number_of_shards: 1 | ||
number_of_replicas: 1 | ||
analysis: | ||
analyzer: | ||
index: | ||
tokenizer: standard | ||
filter: [lowercase] | ||
search: | ||
rest_total_hits_as_int: true | ||
tokenizer: standard | ||
filter: [lowercase, keyword_repeat, porter_stem, unique_stem] | ||
filter: | ||
unique_stem: | ||
type: unique | ||
only_on_same_position: true | ||
mappings: | ||
properties: | ||
text: | ||
type: match_only_text | ||
analyzer: index | ||
search_analyzer: search | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 1 | ||
body: { "text": "the fox runs across the street" } | ||
refresh: true | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
text: | ||
query: fox runs | ||
operator: AND | ||
- match: {hits.total: 1} | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 2 | ||
body: { "text": "run fox run" } | ||
refresh: true | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
text: | ||
query: fox runs | ||
operator: AND | ||
- match: {hits.total: 2} |
138 changes: 138 additions & 0 deletions
138
...mlRestTest/resources/rest-api-spec/test/search.query/20_ngram_search_field_match_only.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
"ngram search": | ||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
settings: | ||
number_of_shards: 1 | ||
number_of_replicas: 0 | ||
analysis: | ||
analyzer: | ||
my_analyzer: | ||
tokenizer: standard | ||
filter: [my_ngram] | ||
filter: | ||
my_ngram: | ||
type: ngram | ||
min: 2, | ||
max: 2 | ||
mappings: | ||
properties: | ||
text: | ||
type: match_only_text | ||
analyzer: my_analyzer | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 1 | ||
body: { "text": "foo bar baz" } | ||
refresh: true | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
text: | ||
query: foa | ||
- match: {hits.total: 1} | ||
|
||
--- | ||
"testNGramCopyField": | ||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
settings: | ||
number_of_shards: 1 | ||
number_of_replicas: 0 | ||
max_ngram_diff: 9 | ||
analysis: | ||
analyzer: | ||
my_ngram_analyzer: | ||
tokenizer: my_ngram_tokenizer | ||
tokenizer: | ||
my_ngram_tokenizer: | ||
type: ngram | ||
min: 1, | ||
max: 10 | ||
token_chars: [] | ||
mappings: | ||
properties: | ||
origin: | ||
type: match_only_text | ||
copy_to: meta | ||
meta: | ||
type: match_only_text | ||
analyzer: my_ngram_analyzer | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 1 | ||
body: { "origin": "C.A1234.5678" } | ||
refresh: true | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
meta: | ||
query: 1234 | ||
- match: {hits.total: 1} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
meta: | ||
query: 1234.56 | ||
- match: {hits.total: 1} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
meta: | ||
query: A1234 | ||
- match: {hits.total: 1} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
term: | ||
meta: | ||
value: a1234 | ||
- match: {hits.total: 0} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
meta: | ||
query: A1234 | ||
analyzer: my_ngram_analyzer | ||
- match: {hits.total: 1} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
meta: | ||
query: a1234 | ||
analyzer: my_ngram_analyzer | ||
- match: {hits.total: 1} |
134 changes: 134 additions & 0 deletions
134
...resources/rest-api-spec/test/search.query/30_ngram_highligthing_field_match_only_text.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
"ngram highlighting": | ||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
settings: | ||
number_of_shards: 1 | ||
number_of_replicas: 0 | ||
index.max_ngram_diff: 19 | ||
analysis: | ||
tokenizer: | ||
my_ngramt: | ||
type: ngram | ||
min_gram: 1 | ||
max_gram: 20 | ||
token_chars: letter,digit | ||
filter: | ||
my_ngram: | ||
type: ngram | ||
min_gram: 1 | ||
max_gram: 20 | ||
analyzer: | ||
name2_index_analyzer: | ||
tokenizer: whitespace | ||
filter: [my_ngram] | ||
name_index_analyzer: | ||
tokenizer: my_ngramt | ||
name_search_analyzer: | ||
tokenizer: whitespace | ||
mappings: | ||
properties: | ||
name: | ||
type: match_only_text | ||
term_vector: with_positions_offsets | ||
analyzer: name_index_analyzer | ||
search_analyzer: name_search_analyzer | ||
name2: | ||
type: match_only_text | ||
term_vector: with_positions_offsets | ||
analyzer: name2_index_analyzer | ||
search_analyzer: name_search_analyzer | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 1 | ||
refresh: true | ||
body: | ||
name: logicacmg ehemals avinci - the know how company | ||
name2: logicacmg ehemals avinci - the know how company | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name: | ||
query: logica m | ||
highlight: | ||
fields: | ||
- name: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name.0: "<em>logica</em>c<em>m</em>g ehe<em>m</em>als avinci - the know how co<em>m</em>pany"} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name: | ||
query: logica ma | ||
highlight: | ||
fields: | ||
- name: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name.0: "<em>logica</em>cmg ehe<em>ma</em>ls avinci - the know how company"} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name: | ||
query: logica | ||
highlight: | ||
fields: | ||
- name: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name.0: "<em>logica</em>cmg ehemals avinci - the know how company"} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name2: | ||
query: logica m | ||
highlight: | ||
fields: | ||
- name2: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name2.0: "<em>logicacmg</em> <em>ehemals</em> avinci - the know how <em>company</em>"} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name2: | ||
query: logica ma | ||
highlight: | ||
fields: | ||
- name2: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name2.0: "<em>logicacmg</em> <em>ehemals</em> avinci - the know how company"} | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
body: | ||
query: | ||
match: | ||
name2: | ||
query: logica | ||
highlight: | ||
fields: | ||
- name2: {} | ||
- match: {hits.total: 1} | ||
- match: {hits.hits.0.highlight.name2.0: "<em>logicacmg</em> ehemals avinci - the know how company"} |
56 changes: 56 additions & 0 deletions
56
...tTest/resources/rest-api-spec/test/search.query/40_query_string_field_match_only_text.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
"Test query string with snowball": | ||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
mappings: | ||
properties: | ||
field: | ||
type: match_only_text | ||
number: | ||
type: integer | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: 1 | ||
body: { field: foo bar} | ||
|
||
- do: | ||
indices.refresh: | ||
index: [test] | ||
|
||
- do: | ||
indices.validate_query: | ||
index: test | ||
q: field:bars | ||
analyzer: snowball | ||
|
||
- is_true: valid | ||
|
||
- do: | ||
search: | ||
rest_total_hits_as_int: true | ||
index: test | ||
q: field:bars | ||
analyzer: snowball | ||
|
||
- match: {hits.total: 1} | ||
|
||
- do: | ||
explain: | ||
index: test | ||
id: 1 | ||
q: field:bars | ||
analyzer: snowball | ||
|
||
- is_true: matched | ||
|
||
- do: | ||
count: | ||
index: test | ||
q: field:bars | ||
analyzer: snowball | ||
|
||
- match: {count : 1} |
Oops, something went wrong.