OpenSearch/rest-api-spec/test/create/55_parent_with_routing.yaml

56 lines
1018 B
YAML
Raw Normal View History

2013-06-26 16:18:14 -04:00
---
"Parent with routing":
2013-06-26 16:18:14 -04:00
- do:
indices.create:
index: test_1
body:
mappings:
test:
_parent: { type: "foo" }
settings:
number_of_shards: 5
number_of_replicas: 0
2013-06-26 16:18:14 -04:00
- do:
cluster.health:
wait_for_status: green
2013-06-26 16:18:14 -04:00
- do:
create:
index: test_1
type: test
id: 1
parent: 5
routing: 4
body: { foo: bar }
- do:
get:
index: test_1
type: test
id: 1
parent: 5
routing: 4
fields: [_parent, _routing]
2013-07-10 08:16:04 -04:00
- match: { _id: "1"}
- match: { fields._parent: "5"}
- match: { fields._routing: "4"}
2013-06-26 16:18:14 -04:00
- do:
catch: missing
get:
index: test_1
type: test
id: 1
parent: 5
- do:
get:
index: test_1
type: test
id: 1
routing: 4