OpenSearch/rest-api-spec/test/suggest/10_basic.yaml

51 lines
1.1 KiB
YAML

setup:
- skip:
version: "0 - 0.90.2"
reason: "Suggest is broken on 0.90.2 - see #3246"
- do:
index:
index: test
type: test
id: testing_document
body:
body: Amsterdam meetup
- do:
indices.refresh: {}
---
"Basic tests for suggest API - pre v1":
- skip:
version: "1 - 99"
reason: "Standard analyzer uses stopwords"
- do:
suggest:
body:
test_suggestion:
text: "The Amsterdma meetpu"
term:
field: body
- match: {test_suggestion.0.options.0.text: amsterdam}
- match: {test_suggestion.1.options.0.text: meetup}
---
"Basic tests for suggest API - post v1":
- skip:
version: "0 - 0.90.999"
reason: "Standard analyzer ignores stopwords"
- do:
suggest:
body:
test_suggestion:
text: "The Amsterdma meetpu"
term:
field: body
- match: {test_suggestion.1.options.0.text: amsterdam}
- match: {test_suggestion.2.options.0.text: meetup}