OpenSearch/rest-api-spec/test/mget/12_non_existent_index.yaml

41 lines
906 B
YAML
Raw Normal View History

---
"Non-existent index":
- skip:
version: "0 - 0.90.2"
reason: "See https://github.com/elasticsearch/elasticsearch/issues/3267"
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- do:
cluster.health:
wait_for_status: yellow
- do:
mget:
body:
docs:
- { _index: test_2, _type: test, _id: 1}
- is_false: docs.0.exists
- match: { docs.0._index: test_2 }
- match: { docs.0._type: test }
- match: { docs.0._id: 1 }
- do:
mget:
body:
index: test_2
docs:
- { _index: test_1, _type: test, _id: 1}
- is_true: docs.0.exists
- match: { docs.0._index: test_1 }
- match: { docs.0._type: test }
- match: { docs.0._id: 1 }