2013-07-01 10:03:37 -04:00
|
|
|
---
|
2014-01-02 13:33:19 -05:00
|
|
|
setup:
|
2013-07-01 10:03:37 -04:00
|
|
|
- skip:
|
|
|
|
version: "0 - 0.90.2"
|
|
|
|
reason: "Parent not supported in exists https://github.com/elasticsearch/elasticsearch/issues/3276"
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
mappings:
|
|
|
|
test:
|
|
|
|
_parent: { type: "foo" }
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
2014-01-02 13:33:19 -05:00
|
|
|
---
|
|
|
|
"Parent":
|
2013-07-01 10:03:37 -04:00
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 5
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
exists:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 5
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
2014-01-02 13:33:19 -05:00
|
|
|
---
|
|
|
|
"Parent omitted pre 1.0":
|
|
|
|
|
|
|
|
- skip:
|
|
|
|
version: "1 - 999"
|
|
|
|
reason: "Pre 1.0 omitting a parent with exists would just use the id for routing, possibly resulting in 404"
|
|
|
|
|
2013-07-01 10:03:37 -04:00
|
|
|
- do:
|
|
|
|
exists:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
2014-01-02 13:33:19 -05:00
|
|
|
|
|
|
|
---
|
|
|
|
"Parent omitted post 1.0":
|
|
|
|
|
|
|
|
- skip:
|
|
|
|
version: "0 - 0.999"
|
|
|
|
reason: "When a parent is specified in the mapping it cannot be omitted"
|
|
|
|
|
|
|
|
- do:
|
|
|
|
catch: request
|
|
|
|
exists:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
|
|
|
|
- is_false: ''
|
|
|
|
|
|
|
|
|