OpenSearch/rest-api-spec/test/indices.open/10_basic.yaml

35 lines
520 B
YAML
Raw Normal View History

2013-07-23 21:47:52 -04:00
---
"Basic test for index open/close":
- do:
indices.create:
index: test_index
body:
settings:
number_of_replicas: 0
2013-07-23 21:47:52 -04:00
- do:
cluster.health:
wait_for_status: green
2013-07-23 21:47:52 -04:00
- do:
indices.close:
index: test_index
- do:
catch: forbidden
search:
index: test_index
- do:
indices.open:
index: test_index
- do:
cluster.health:
wait_for_status: green
2013-07-23 21:47:52 -04:00
- do:
search:
index: test_index