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

28 lines
576 B
YAML
Raw Normal View History

2013-07-23 13:26:22 -04:00
---
"Basic tests for suggest API":
2013-07-23 14:10:59 -04:00
- skip:
version: "0 - 0.90.2"
reason: "Suggest is broken on 0.90.2 - see #3246"
2013-07-23 13:26:22 -04:00
- do:
index:
index: test
type: test
id: testing_document
body:
body: Amsterdam meetup
- do:
indices.refresh: {}
- 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}