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

46 lines
788 B
YAML
Raw Normal View History

2013-06-27 05:34:24 -04:00
---
setup:
2013-06-27 05:34:24 -04: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 09:44:57 -04:00
parent: 中文
2013-06-27 05:34:24 -04:00
body: { foo: bar }
---
"Parent":
2013-06-27 05:34:24 -04:00
- do:
get:
index: test_1
type: test
id: 1
2013-07-14 09:44:57 -04:00
parent: 中文
2013-06-27 05:34:24 -04:00
fields: [_parent, _routing]
2013-07-10 20:21:56 -04:00
- match: { _id: "1"}
2013-07-14 09:44:57 -04:00
- match: { fields._parent: 中文 }
- match: { fields._routing: 中文}
2013-06-27 05:34:24 -04:00
---
"Parent omitted":
- do:
catch: request
get:
index: test_1
type: test
id: 1