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

29 lines
683 B
YAML
Raw Normal View History

---
"Indexed template":
- do:
indexed_template.create:
id: "1"
body: { "template": { "query": { "match_all": {}}, "size": "{{my_size}}" } }
- match: { _id: "1" }
- do:
indexed_template.get:
id: 1
- match: { template: /.*query\S\S\S\Smatch_all.*/ }
- do:
indexed_template.delete:
id: "1"
- match: { found: true }
- match: { _index: ".scripts" }
- match: { _id: "1" }
- do:
catch: request
indexed_template.create:
id: "1"
body: { "template": { "query": { "match{{}}_all": {}}, "size": "{{my_size}}" } }
- match: { "error": /ElasticsearchIllegalArgumentException\SUnable\sto\sparse.*/ }