Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Restore default metric='_all' to cluster.state() #1143

Merged
merged 6 commits into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions elasticsearch/client/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ def state(self, metric=None, index=None, params=None):
:arg wait_for_timeout: The maximum time to wait for
wait_for_metadata_version before timing out
"""
if index and metric in SKIP_IN_PATH:
metric = "_all"

return self.transport.perform_request(
"GET", _make_path("_cluster", "state", metric, index), params=params
)
Expand Down
27 changes: 27 additions & 0 deletions test_elasticsearch/test_client/test_cluster.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from test_elasticsearch.test_cases import ElasticsearchTestCase


class TestCluster(ElasticsearchTestCase):
def test_stats_without_node_id(self):
self.client.cluster.stats()
self.assert_url_called("GET", "/_cluster/stats")

def test_stats_with_node_id(self):
self.client.cluster.stats("node-1")
self.assert_url_called("GET", "/_cluster/stats/nodes/node-1")

self.client.cluster.stats(node_id="node-2")
self.assert_url_called("GET", "/_cluster/stats/nodes/node-2")

def test_state_with_index_without_metric_defaults_to_all(self):
self.client.cluster.state()
self.assert_url_called("GET", "/_cluster/state")

self.client.cluster.state(metric="cluster_name")
self.assert_url_called("GET", "/_cluster/state/cluster_name")

self.client.cluster.state(index="index-1")
self.assert_url_called("GET", "/_cluster/state/_all/index-1")

self.client.cluster.state(index="index-1", metric="cluster_name")
self.assert_url_called("GET", "/_cluster/state/cluster_name/index-1")
4 changes: 4 additions & 0 deletions test_elasticsearch/test_client/test_indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ def test_passing_empty_value_for_required_param_raises_exception(self):
self.assertRaises(ValueError, self.client.indices.exists, index=None)
self.assertRaises(ValueError, self.client.indices.exists, index=[])
self.assertRaises(ValueError, self.client.indices.exists, index="")

def test_put_mapping_without_index(self):
self.client.indices.put_mapping(doc_type="doc-type", body={})
self.assert_url_called("PUT", "/_all/doc-type/_mapping")
9 changes: 8 additions & 1 deletion test_elasticsearch/test_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from unittest import SkipTest
from elasticsearch.helpers import test
from elasticsearch.helpers.test import ElasticsearchTestCase as BaseTestCase

Expand All @@ -6,6 +7,8 @@

def get_client(**kwargs):
global client
if client is False:
raise SkipTest("No client is available")
if client is not None and not kwargs:
return client

Expand All @@ -16,7 +19,11 @@ def get_client(**kwargs):
new_client = local_get_client(**kwargs)
except ImportError:
# fallback to using vanilla client
new_client = test.get_test_client(**kwargs)
try:
new_client = test.get_test_client(**kwargs)
except SkipTest:
client = False
raise

if not kwargs:
client = new_client
Expand Down
8 changes: 8 additions & 0 deletions utils/templates/overrides/cluster/state
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% extends "base" %}
{% block request %}
if index and metric in SKIP_IN_PATH:
metric = "_all"

{{ super()|trim }}
{% endblock %}