OpenSearch/rest-api-spec/test/mget/13_missing_metadata.yaml
Lee Hinman 2cb40fcb17 Rename "exists" to "found" in TermVector and Get responses
- Adds the "created" field to the index action response
- Reverses Delete class' notFound to Found to avoid double negative
2014-01-07 09:47:07 -07:00

52 lines
1.1 KiB
YAML

---
"Missing metadata":
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- do:
cluster.health:
wait_for_status: yellow
- do:
catch: /ActionRequestValidationException.+ id is missing/
mget:
body:
docs:
- { _index: test_1, _type: test}
- do:
catch: /ActionRequestValidationException.+ index is missing/
mget:
body:
docs:
- { _type: test, _id: 1}
- do:
catch: /ActionRequestValidationException.+ no documents to get/
mget:
body:
docs: []
- do:
catch: /ActionRequestValidationException.+ no documents to get/
mget:
body: {}
- do:
mget:
body:
docs:
- { _index: test_1, _id: 1}
- is_true: docs.0.found
- match: { docs.0._index: test_1 }
- match: { docs.0._type: test }
- match: { docs.0._id: "1" }
- match: { docs.0._version: 1 }
- match: { docs.0._source: { foo: bar }}