2013-07-01 16:03:37 +02:00
|
|
|
---
|
|
|
|
"Parent":
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
mappings:
|
|
|
|
test:
|
|
|
|
_parent: { type: "foo" }
|
2014-03-10 13:48:17 +01:00
|
|
|
settings:
|
|
|
|
number_of_shards: 5
|
2013-07-01 16:03:37 +02:00
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 4
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 2
|
|
|
|
parent: 5
|
|
|
|
body: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
mget:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
body:
|
|
|
|
docs:
|
|
|
|
- { _id: 1 }
|
2013-07-15 10:31:28 +02:00
|
|
|
- { _id: 1, parent: 5, fields: [ _parent, _routing ] }
|
|
|
|
- { _id: 1, parent: 4, fields: [ _parent, _routing ] }
|
|
|
|
- { _id: 2, parent: 5, fields: [ _parent, _routing ] }
|
2013-07-01 16:03:37 +02:00
|
|
|
|
2014-01-02 13:31:49 -07:00
|
|
|
- is_false: docs.0.found
|
|
|
|
- is_false: docs.1.found
|
2013-07-01 16:03:37 +02:00
|
|
|
|
2014-01-02 13:31:49 -07:00
|
|
|
- is_true: docs.2.found
|
2013-07-01 16:03:37 +02:00
|
|
|
- match: { docs.2._index: test_1 }
|
|
|
|
- match: { docs.2._type: test }
|
2013-07-11 14:04:16 +02:00
|
|
|
- match: { docs.2._id: "1" }
|
|
|
|
- match: { docs.2.fields._parent: "4" }
|
|
|
|
- match: { docs.2.fields._routing: "4" }
|
2013-07-01 16:03:37 +02:00
|
|
|
|
2014-01-02 13:31:49 -07:00
|
|
|
- is_true: docs.3.found
|
2013-07-01 16:03:37 +02:00
|
|
|
- match: { docs.3._index: test_1 }
|
|
|
|
- match: { docs.3._type: test }
|
2013-07-11 14:04:16 +02:00
|
|
|
- match: { docs.3._id: "2" }
|
|
|
|
- match: { docs.3.fields._parent: "5" }
|
|
|
|
- match: { docs.3.fields._routing: "5" }
|