OpenSearch/plugins/analysis-stempel/rest-api-spec/test/analysis_stempel/20_search.yaml

36 lines
807 B
YAML

# Integration tests for Stempel analysis component
#
---
"Index Stempel content":
- do:
indices.create:
index: test
body:
mappings:
type:
properties:
text:
type: string
analyzer: polish
- do:
cluster.health:
wait_for_status: yellow
- do:
index:
index: test
type: type
id: 1
body: { "text": "studenta był" }
- do:
indices.refresh: {}
- do:
search:
index: test
body:
query:
match:
text: student
- match: { hits.total: 1 }