2013-07-01 16:03:37 +02:00
|
|
|
---
|
|
|
|
"Routing":
|
|
|
|
|
2014-02-10 12:30:37 +01:00
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
settings:
|
|
|
|
index:
|
|
|
|
number_of_replicas: 0
|
|
|
|
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: green
|
|
|
|
|
2013-07-01 16:03:37 +02:00
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
routing: 5
|
|
|
|
body: { foo: bar }
|
2014-02-10 12:30:37 +01:00
|
|
|
|
2013-07-01 16:03:37 +02:00
|
|
|
- do:
|
|
|
|
mget:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
fields: [_routing]
|
|
|
|
body:
|
|
|
|
docs:
|
|
|
|
- { _id: 1 }
|
|
|
|
- { _id: 1, routing: 4 }
|
|
|
|
- { _id: 1, routing: 5 }
|
|
|
|
|
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._routing: "5" }
|