OpenSearch/rest-api-spec/test/exists/30_parent.yaml

70 lines
1.2 KiB
YAML
Raw Normal View History

---
setup:
- 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
---
"Parent":
- 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: ''
---
"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"
- do:
exists:
index: test_1
type: test
id: 1
- is_false: ''
---
"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: ''