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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE.txt in the project root for
# license information.
# -------------------------------------------------------------------------
from azure.core.credentials import AccessToken
from azure.communication.chat.aio import (
ChatClient,
CommunicationUserCredential
)
from azure.communication.chat import (
ChatThreadMember,
CommunicationUser
)
from unittest_helpers import mock_response
from azure.core.exceptions import HttpResponseError
from datetime import datetime
from msrest.serialization import TZ_UTC
try:
from unittest.mock import Mock, patch
except ImportError: # python < 3.3
from mock import Mock, patch # type: ignore
import pytest
credential = Mock()
credential.get_token = Mock(return_value=AccessToken("some_token", datetime.now().replace(tzinfo=TZ_UTC)))
@pytest.mark.asyncio
async def test_create_chat_thread():
thread_id = "19:bcaebfba0d314c2aa3e920d38fa3df08@thread.v2"
async def mock_send(*_, **__):
return mock_response(status_code=207, json_payload={"multipleStatus": [{"id": thread_id, "statusCode": 201, "type": "Thread"}]})
chat_client = ChatClient("https://endpoint", credential, transport=Mock(send=mock_send))
topic="test topic"
user = CommunicationUser("8:acs:57b9bac9-df6c-4d39-a73b-26e944adf6ea_9b0110-08007f1041")
members=[ChatThreadMember(
user=user,
display_name='name',
share_history_time=datetime.utcnow()
)]
chat_thread_client = await chat_client.create_chat_thread(topic, members)
assert chat_thread_client.thread_id == thread_id
@pytest.mark.asyncio
async def test_create_chat_thread_raises_error():
async def mock_send(*_, **__):
return mock_response(status_code=400, json_payload={"msg": "some error"})
chat_client = ChatClient("https://endpoint", credential, transport=Mock(send=mock_send))
topic="test topic",
user = CommunicationUser("8:acs:57b9bac9-df6c-4d39-a73b-26e944adf6ea_9b0110-08007f1041")
members=[ChatThreadMember(
user=user,
display_name='name',
share_history_time=datetime.utcnow()
)]
raised = False
try:
await chat_client.create_chat_thread(topic=topic, thread_members=members)
except:
raised = True
assert raised == True
@pytest.mark.asyncio
async def test_delete_chat_thread():
thread_id = "19:bcaebfba0d314c2aa3e920d38fa3df08@thread.v2"
raised = False
async def mock_send(*_, **__):
return mock_response(status_code=204)
chat_client = ChatClient("https://endpoint", credential, transport=Mock(send=mock_send))
raised = False
try:
await chat_client.delete_chat_thread(thread_id)
except:
raised = True
assert raised == False
@pytest.mark.asyncio
async def test_get_chat_thread():
thread_id = "19:bcaebfba0d314c2aa3e920d38fa3df08@thread.v2"
raised = False
async def mock_send(*_, **__):
return mock_response(status_code=200, json_payload={
"id": thread_id,
"created_by": "8:acs:resource_user",
"members": [{"id": "", "display_name": "name", "share_history_time": "1970-01-01T00:00:00Z"}]
})
chat_client = ChatClient("https://endpoint", credential, transport=Mock(send=mock_send))
get_thread_result = None
try:
get_thread_result = await chat_client.get_chat_thread(thread_id)
except:
raised = True
assert raised == False
assert get_thread_result.id == thread_id
@pytest.mark.asyncio
async def test_list_chat_threads():
thread_id = "19:bcaebfba0d314c2aa3e920d38fa3df08@thread.v2"
raised = False
async def mock_send(*_, **__):
return mock_response(status_code=200, json_payload={"value": [{"id": thread_id}]})
chat_client = ChatClient("https://endpoint", credential, transport=Mock(send=mock_send))
chat_thread_infos = None
try:
chat_thread_infos = chat_client.list_chat_threads()
except:
raised = True
assert raised == False
items = []
async for item in chat_thread_infos:
items.append(item)
assert len(items) == 1
assert items[0].id == thread_id
def test_get_thread_client():
thread_id = "19:bcaebfba0d314c2aa3e920d38fa3df08@thread.v2"
chat_client = ChatClient("https://endpoint", credential)
chat_thread_client = chat_client.get_chat_thread_client(thread_id)
assert chat_thread_client.thread_id == thread_id
|