elasticsearch[patch]: fix integration tests for release (#18980)

pull/18895/merge
Erick Friis 4 months ago committed by GitHub
parent 0d1f6c417c
commit a29e8d8594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,6 @@
"""Test ElasticsearchRetriever functionality."""
import os
import re
import uuid
from typing import Any, Dict
@ -77,11 +78,19 @@ class TestElasticsearchRetriever:
def body_func(query: str) -> Dict:
return {"query": {"match": {text_field: {"query": query}}}}
es_url = os.environ.get("ES_URL", "http://localhost:9200")
cloud_id = os.environ.get("ES_CLOUD_ID")
api_key = os.environ.get("ES_API_KEY")
config = (
{"cloud_id": cloud_id, "api_key": api_key} if cloud_id else {"url": es_url}
)
retriever = ElasticsearchRetriever.from_es_params(
url="http://localhost:9200",
index_name=index_name,
body_func=body_func,
content_field=text_field,
**config, # type: ignore[arg-type]
)
index_test_data(retriever.es_client, index_name, text_field)

Loading…
Cancel
Save