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

46 lines
788 B
YAML
Raw Normal View History

2013-06-27 11:34:24 +02:00
---
setup:
2013-06-27 11:34:24 +02:00
- do:
indices.create:
index: test_1
body:
mappings:
test:
_parent: { type: "foo" }
- do:
cluster.health:
wait_for_status: yellow
- do:
index:
index: test_1
type: test
id: 1
2013-07-14 15:44:57 +02:00
parent: 中文
2013-06-27 11:34:24 +02:00
body: { foo: bar }
---
"Parent":
2013-06-27 11:34:24 +02:00
- do:
get:
index: test_1
type: test
id: 1
2013-07-14 15:44:57 +02:00
parent: 中文
2013-06-27 11:34:24 +02:00
fields: [_parent, _routing]
2013-07-11 02:21:56 +02:00
- match: { _id: "1"}
2013-07-14 15:44:57 +02:00
- match: { fields._parent: 中文 }
- match: { fields._routing: 中文}
2013-06-27 11:34:24 +02:00
---
"Parent omitted":
- do:
catch: request
get:
index: test_1
type: test
id: 1