|
| 1 | +from unittest.mock import AsyncMock, MagicMock, patch |
| 2 | + |
| 3 | +import pytest |
| 4 | +from azure.cosmos import exceptions |
| 5 | + |
| 6 | +from backend.history.cosmosdbservice import CosmosConversationClient |
| 7 | + |
| 8 | + |
| 9 | +# Helper function to create an async iterable |
| 10 | +class AsyncIterator: |
| 11 | + def __init__(self, items): |
| 12 | + self.items = items |
| 13 | + self.index = 0 |
| 14 | + |
| 15 | + def __aiter__(self): |
| 16 | + return self |
| 17 | + |
| 18 | + async def __anext__(self): |
| 19 | + if self.index < len(self.items): |
| 20 | + item = self.items[self.index] |
| 21 | + self.index += 1 |
| 22 | + return item |
| 23 | + else: |
| 24 | + raise StopAsyncIteration |
| 25 | + |
| 26 | + |
| 27 | +@pytest.fixture |
| 28 | +def cosmos_client(): |
| 29 | + return CosmosConversationClient( |
| 30 | + cosmosdb_endpoint="https://fake.endpoint", |
| 31 | + credential="fake_credential", |
| 32 | + database_name="test_db", |
| 33 | + container_name="test_container", |
| 34 | + ) |
| 35 | + |
| 36 | + |
| 37 | +@pytest.mark.asyncio |
| 38 | +async def test_init_invalid_credentials(): |
| 39 | + with patch( |
| 40 | + "azure.cosmos.aio.CosmosClient.__init__", |
| 41 | + side_effect=exceptions.CosmosHttpResponseError( |
| 42 | + status_code=401, message="Unauthorized" |
| 43 | + ), |
| 44 | + ): |
| 45 | + with pytest.raises(ValueError, match="Invalid credentials"): |
| 46 | + CosmosConversationClient( |
| 47 | + cosmosdb_endpoint="https://fake.endpoint", |
| 48 | + credential="fake_credential", |
| 49 | + database_name="test_db", |
| 50 | + container_name="test_container", |
| 51 | + ) |
| 52 | + |
| 53 | + |
| 54 | +@pytest.mark.asyncio |
| 55 | +async def test_init_invalid_endpoint(): |
| 56 | + with patch( |
| 57 | + "azure.cosmos.aio.CosmosClient.__init__", |
| 58 | + side_effect=exceptions.CosmosHttpResponseError( |
| 59 | + status_code=404, message="Not Found" |
| 60 | + ), |
| 61 | + ): |
| 62 | + with pytest.raises(ValueError, match="Invalid CosmosDB endpoint"): |
| 63 | + CosmosConversationClient( |
| 64 | + cosmosdb_endpoint="https://fake.endpoint", |
| 65 | + credential="fake_credential", |
| 66 | + database_name="test_db", |
| 67 | + container_name="test_container", |
| 68 | + ) |
| 69 | + |
| 70 | + |
| 71 | +@pytest.mark.asyncio |
| 72 | +async def test_ensure_success(cosmos_client): |
| 73 | + cosmos_client.database_client.read = AsyncMock() |
| 74 | + cosmos_client.container_client.read = AsyncMock() |
| 75 | + success, message = await cosmos_client.ensure() |
| 76 | + assert success |
| 77 | + assert message == "CosmosDB client initialized successfully" |
| 78 | + |
| 79 | + |
| 80 | +@pytest.mark.asyncio |
| 81 | +async def test_ensure_failure(cosmos_client): |
| 82 | + cosmos_client.database_client.read = AsyncMock(side_effect=Exception) |
| 83 | + success, message = await cosmos_client.ensure() |
| 84 | + assert not success |
| 85 | + assert "CosmosDB database" in message |
| 86 | + |
| 87 | + |
| 88 | +@pytest.mark.asyncio |
| 89 | +async def test_create_conversation(cosmos_client): |
| 90 | + cosmos_client.container_client.upsert_item = AsyncMock(return_value={"id": "123"}) |
| 91 | + response = await cosmos_client.create_conversation("user_1", "Test Conversation") |
| 92 | + assert response["id"] == "123" |
| 93 | + |
| 94 | + |
| 95 | +@pytest.mark.asyncio |
| 96 | +async def test_create_conversation_failure(cosmos_client): |
| 97 | + cosmos_client.container_client.upsert_item = AsyncMock(return_value=None) |
| 98 | + response = await cosmos_client.create_conversation("user_1", "Test Conversation") |
| 99 | + assert not response |
| 100 | + |
| 101 | + |
| 102 | +@pytest.mark.asyncio |
| 103 | +async def test_upsert_conversation(cosmos_client): |
| 104 | + cosmos_client.container_client.upsert_item = AsyncMock(return_value={"id": "123"}) |
| 105 | + response = await cosmos_client.upsert_conversation({"id": "123"}) |
| 106 | + assert response["id"] == "123" |
| 107 | + |
| 108 | + |
| 109 | +@pytest.mark.asyncio |
| 110 | +async def test_delete_conversation(cosmos_client): |
| 111 | + cosmos_client.container_client.read_item = AsyncMock(return_value={"id": "123"}) |
| 112 | + cosmos_client.container_client.delete_item = AsyncMock(return_value=True) |
| 113 | + response = await cosmos_client.delete_conversation("user_1", "123") |
| 114 | + assert response |
| 115 | + |
| 116 | + |
| 117 | +@pytest.mark.asyncio |
| 118 | +async def test_delete_conversation_not_found(cosmos_client): |
| 119 | + cosmos_client.container_client.read_item = AsyncMock(return_value=None) |
| 120 | + response = await cosmos_client.delete_conversation("user_1", "123") |
| 121 | + assert response |
| 122 | + |
| 123 | + |
| 124 | +@pytest.mark.asyncio |
| 125 | +async def test_delete_messages(cosmos_client): |
| 126 | + cosmos_client.get_messages = AsyncMock( |
| 127 | + return_value=[{"id": "msg_1"}, {"id": "msg_2"}] |
| 128 | + ) |
| 129 | + cosmos_client.container_client.delete_item = AsyncMock(return_value=True) |
| 130 | + response = await cosmos_client.delete_messages("conv_1", "user_1") |
| 131 | + assert len(response) == 2 |
| 132 | + |
| 133 | + |
| 134 | +@pytest.mark.asyncio |
| 135 | +async def test_get_conversations(cosmos_client): |
| 136 | + items = [{"id": "conv_1"}, {"id": "conv_2"}] |
| 137 | + cosmos_client.container_client.query_items = MagicMock( |
| 138 | + return_value=AsyncIterator(items) |
| 139 | + ) |
| 140 | + response = await cosmos_client.get_conversations("user_1", 10) |
| 141 | + assert len(response) == 2 |
| 142 | + assert response[0]["id"] == "conv_1" |
| 143 | + assert response[1]["id"] == "conv_2" |
| 144 | + |
| 145 | + |
| 146 | +@pytest.mark.asyncio |
| 147 | +async def test_get_conversation(cosmos_client): |
| 148 | + items = [{"id": "conv_1"}] |
| 149 | + cosmos_client.container_client.query_items = MagicMock( |
| 150 | + return_value=AsyncIterator(items) |
| 151 | + ) |
| 152 | + response = await cosmos_client.get_conversation("user_1", "conv_1") |
| 153 | + assert response["id"] == "conv_1" |
| 154 | + |
| 155 | + |
| 156 | +@pytest.mark.asyncio |
| 157 | +async def test_create_message(cosmos_client): |
| 158 | + cosmos_client.container_client.upsert_item = AsyncMock(return_value={"id": "msg_1"}) |
| 159 | + cosmos_client.get_conversation = AsyncMock(return_value={"id": "conv_1"}) |
| 160 | + cosmos_client.upsert_conversation = AsyncMock() |
| 161 | + response = await cosmos_client.create_message( |
| 162 | + "msg_1", "conv_1", "user_1", {"role": "user", "content": "Hello"} |
| 163 | + ) |
| 164 | + assert response["id"] == "msg_1" |
| 165 | + |
| 166 | + |
| 167 | +@pytest.mark.asyncio |
| 168 | +async def test_update_message_feedback(cosmos_client): |
| 169 | + cosmos_client.container_client.read_item = AsyncMock(return_value={"id": "msg_1"}) |
| 170 | + cosmos_client.container_client.upsert_item = AsyncMock(return_value={"id": "msg_1"}) |
| 171 | + response = await cosmos_client.update_message_feedback( |
| 172 | + "user_1", "msg_1", "positive" |
| 173 | + ) |
| 174 | + assert response["id"] == "msg_1" |
| 175 | + |
| 176 | + |
| 177 | +@pytest.mark.asyncio |
| 178 | +async def test_get_messages(cosmos_client): |
| 179 | + items = [{"id": "msg_1"}, {"id": "msg_2"}] |
| 180 | + cosmos_client.container_client.query_items = MagicMock( |
| 181 | + return_value=AsyncIterator(items) |
| 182 | + ) |
| 183 | + response = await cosmos_client.get_messages("user_1", "conv_1") |
| 184 | + assert len(response) == 2 |
0 commit comments