1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
import pytest
from azure.core.exceptions import HttpResponseError
from azure.search.documents import SearchClient
from devtools_testutils import AzureRecordedTestCase, recorded_by_proxy, get_credential
from search_service_preparer import SearchEnvVarPreparer, search_decorator
class TestSearchClient(AzureRecordedTestCase):
@SearchEnvVarPreparer()
@search_decorator(schema="hotel_schema.json", index_batch="hotel_small.json")
@recorded_by_proxy
def test_get_document_count(self, endpoint, index_name):
client = SearchClient(endpoint, index_name, get_credential(), retry_backoff_factor=60)
assert client.get_document_count() == 10
@SearchEnvVarPreparer()
@search_decorator(schema="hotel_schema.json", index_batch="hotel_small.json")
@recorded_by_proxy
def test_get_document(self, endpoint, index_name, index_batch):
client = SearchClient(endpoint, index_name, get_credential(), retry_backoff_factor=60)
for hotel_id in range(1, 11):
result = client.get_document(key=str(hotel_id))
expected = index_batch["value"][hotel_id - 1]
assert result.get("hotelId") == expected.get("hotelId")
assert result.get("hotelName") == expected.get("hotelName")
assert result.get("description") == expected.get("description")
@SearchEnvVarPreparer()
@search_decorator(schema="hotel_schema.json", index_batch="hotel_small.json")
@recorded_by_proxy
def test_get_document_missing(self, endpoint, index_name):
client = SearchClient(endpoint, index_name, get_credential(), retry_backoff_factor=60)
with pytest.raises(HttpResponseError):
client.get_document(key="1000")
|