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

39 lines
734 B
YAML
Raw Normal View History

2013-07-23 19:17:51 -04:00
---
"Basic test for aliases":
- skip:
version: "0 - 0.90.0"
reason: "Exists alias not supported before 0.90.1"
2013-07-23 19:17:51 -04:00
- do:
indices.create:
index: test_index
2013-07-23 19:17:51 -04:00
- do:
indices.exists_alias:
name: test_alias
- is_false: ''
- do:
indices.update_aliases:
body:
actions:
- add:
index: test_index
alias: test_alias
routing: routing_value
- is_true: ok
- do:
indices.exists_alias:
name: test_alias
- is_true: ''
- do:
indices.get_alias:
2013-07-23 19:17:51 -04:00
index: test_index
- match: {test_index.aliases.test_alias: {'index_routing': 'routing_value', 'search_routing': 'routing_value'}}