Skip to content

Commit 1ec1d5b

Browse files
[8.1] Add support for comma-delimited list encoding in query
Co-authored-by: Seth Michael Larson <[email protected]>
1 parent 82c1c40 commit 1ec1d5b

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

elastic_enterprise_search/_async/client/enterprise_search.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import typing as t
1919

20-
from ..._utils import _rewrite_parameters
20+
from ..._utils import _quote_query_form, _rewrite_parameters
2121
from ._base import BaseClient
2222

2323

@@ -94,7 +94,7 @@ async def get_stats(
9494
"""
9595
__query: t.Dict[str, t.Any] = {}
9696
if include is not None:
97-
__query["include"] = include
97+
__query["include"] = _quote_query_form("include", include)
9898
__headers = {"accept": "application/json"}
9999
return await self.perform_request( # type: ignore[return-value]
100100
"GET", "/api/ent/v1/internal/stats", params=__query, headers=__headers

elastic_enterprise_search/_sync/client/enterprise_search.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import typing as t
1919

20-
from ..._utils import _rewrite_parameters
20+
from ..._utils import _quote_query_form, _rewrite_parameters
2121
from ._base import BaseClient
2222

2323

@@ -94,7 +94,7 @@ def get_stats(
9494
"""
9595
__query: t.Dict[str, t.Any] = {}
9696
if include is not None:
97-
__query["include"] = include
97+
__query["include"] = _quote_query_form("include", include)
9898
__headers = {"accept": "application/json"}
9999
return self.perform_request( # type: ignore[return-value]
100100
"GET", "/api/ent/v1/internal/stats", params=__query, headers=__headers

elastic_enterprise_search/_utils.py

+6
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,12 @@ def _quote_query_deep_object(
300300
yield from _quote_query_deep_object(f"{prefix}[{key}]", val)
301301

302302

303+
def _quote_query_form(key: str, value: t.Union[t.List[str], t.Tuple[str, ...]]) -> str:
304+
if not isinstance(value, (tuple, list)):
305+
raise ValueError(f"{key!r} must be of type list or tuple")
306+
return ",".join(map(str, value))
307+
308+
303309
def _merge_kwargs_no_duplicates(
304310
kwargs: t.Dict[str, t.Any], values: t.Dict[str, t.Any]
305311
) -> None:

tests/client/enterprise_search/cassettes/test_get_stats.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ interactions:
5151
connection:
5252
- keep-alive
5353
method: GET
54-
uri: https://my-deployment-c6095a.ent.us-central1.gcp.cloud.es.io/api/ent/v1/internal/stats?include%5B%5D=connectors&include%5B%5D=queues
54+
uri: https://my-deployment-c6095a.ent.us-central1.gcp.cloud.es.io/api/ent/v1/internal/stats?include=connectors,queues
5555
response:
5656
body:
5757
string: '{"connectors":{"alive":true,"pool":{"extract_worker_pool":{"running":true,"queue_depth":0,"size":1,"busy":1,"idle":0,"total_scheduled":1,"total_completed":0},"subextract_worker_pool":{"running":true,"queue_depth":0,"size":0,"busy":0,"idle":0,"total_scheduled":0,"total_completed":0},"publish_worker_pool":{"running":true,"queue_depth":0,"size":0,"busy":0,"idle":0,"total_scheduled":0,"total_completed":0}},"job_store":{"waiting":0,"working":0,"job_types":{"full":0,"incremental":0,"delete":0,"permissions":0}}},"queues":{"engine_destroyer":{"pending":0},"process_crawl":{"pending":0},"mailer":{"pending":0},"failed":[]}}'

tests/server/test_enterprise_search.py

+28
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,33 @@
1616
# under the License.
1717

1818

19+
import pytest
20+
21+
from elastic_enterprise_search import EnterpriseSearch
22+
23+
1924
def test_get_version(ent_search):
2025
assert set(ent_search.get_version()) == {"number", "build_hash", "build_date"}
26+
27+
28+
@pytest.mark.parametrize("include", [["app", "queues"], ("app", "queues")])
29+
def test_get_stats_include(ent_search: EnterpriseSearch, include):
30+
with pytest.raises(ValueError) as e:
31+
ent_search.get_stats(include="queues")
32+
assert str(e.value) == "'include' must be of type list or tuple"
33+
34+
resp = ent_search.get_stats()
35+
assert resp.meta.status == 200
36+
assert set(resp.body.keys()) == {
37+
"app",
38+
"cluster_uuid",
39+
"connectors",
40+
"crawler",
41+
"http",
42+
"product_usage",
43+
"queues",
44+
}
45+
46+
resp = ent_search.get_stats(include=include)
47+
assert resp.meta.status == 200
48+
assert set(resp.body.keys()) == {"app", "queues"}

0 commit comments

Comments
 (0)