2014-07-14 09:37:55 -04:00
|
|
|
---
|
|
|
|
"Indexed Template query tests":
|
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test
|
|
|
|
type: testtype
|
|
|
|
id: 1
|
|
|
|
body: { "text": "value1_foo" }
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test
|
|
|
|
type: testtype
|
|
|
|
id: 2
|
|
|
|
body: { "text": "value2_foo value3_foo" }
|
|
|
|
- do:
|
|
|
|
indices.refresh: {}
|
|
|
|
|
|
|
|
- do:
|
2014-07-16 05:46:55 -04:00
|
|
|
put_template:
|
2014-07-14 09:37:55 -04:00
|
|
|
id: "1"
|
|
|
|
body: { "template": { "query": { "match" : { "text": "{{my_value}}" } }, "size": "{{my_size}}" } }
|
|
|
|
- match: { _id: "1" }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.refresh: {}
|
|
|
|
|
|
|
|
|
|
|
|
- do:
|
|
|
|
search_template:
|
|
|
|
body: { "template": { "id" : "1" }, "params" : { "my_value" : "value1_foo", "my_size" : 1 } }
|
|
|
|
- match: { hits.total: 1 }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
search_template:
|
|
|
|
body: { "id" : "1", "params" : { "my_value" : "value1_foo", "my_size" : 1 } }
|
|
|
|
- match: { hits.total: 1 }
|
|
|
|
|
2014-09-19 06:47:19 -04:00
|
|
|
- do:
|
|
|
|
catch: /ElasticsearchIllegalArgumentException.Unable.to.find.on.disk.script.simple1/
|
|
|
|
search_template:
|
|
|
|
body: { "template" : "simple1" }
|
|
|
|
|