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

35 lines
644 B
YAML
Raw Normal View History

2013-07-23 19:17:51 -04:00
---
"Basic test for aliases":
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
- do:
indices.exists_alias:
name: test_alias
- is_true: ''
- do:
indices.get_alias:
2013-07-23 19:17:51 -04:00
index: test_index
name: test_alias
2013-07-23 19:17:51 -04:00
- match: {test_index.aliases.test_alias: {'index_routing': 'routing_value', 'search_routing': 'routing_value'}}