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

61 lines
1.1 KiB
YAML
Raw Normal View History

2013-06-28 13:44:13 -04:00
---
"Parent with routing":
2013-06-28 13:44:13 -04:00
- do:
indices.create:
index: test_1
body:
mappings:
test:
_parent: { type: "foo" }
- do:
cluster.health:
wait_for_status: yellow
- do:
update:
index: test_1
type: test
id: 1
parent: 5
routing: 4
body:
doc: { foo: baz }
upsert: { foo: bar }
- do:
get:
index: test_1
type: test
id: 1
routing: 4
parent: 5
fields: [_parent, _routing]
2013-07-12 12:26:18 -04:00
- match: { fields._parent: "5"}
- match: { fields._routing: "4"}
2013-06-28 13:44:13 -04:00
- do:
catch: missing
update:
index: test_1
type: test
id: 1
parent: 5
body:
doc: { foo: baz }
- do:
update:
index: test_1
type: test
id: 1
parent: 5
routing: 4
fields: foo
body:
doc: { foo: baz }
2014-01-03 19:21:43 -05:00
- match: { get.fields.foo: [baz] }
2013-06-28 13:44:13 -04:00