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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
|
# -------------------------------------------------------------------------
# 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 datetime import datetime, timedelta
from azure.core.exceptions import HttpResponseError
from azure.communication.identity import CommunicationIdentityClient
from azure.communication.rooms import (
RoomsClient,
RoomParticipant,
RoomJoinPolicy,
RoleType
)
from azure.communication.rooms._shared.models import CommunicationUserIdentifier
from _shared.utils import get_http_logging_policy
from _shared.testcase import (
CommunicationTestCase,
ResponseReplacerProcessor
)
from helper import URIIdentityReplacer, RequestBodyIdentityReplacer
class RoomsClientTest(CommunicationTestCase):
def __init__(self, method_name):
super(RoomsClientTest, self).__init__(method_name)
def setUp(self):
super(RoomsClientTest, self).setUp()
if not self.is_playback():
self.recording_processors.extend([
ResponseReplacerProcessor(keys=[self._resource_name, "8:acs:[A-Za-z0-9-_]+"]),
URIIdentityReplacer(),
RequestBodyIdentityReplacer()])
# create multiple users users
self.identity_client = CommunicationIdentityClient.from_connection_string(
self.connection_str)
self.users = {
"john" : RoomParticipant(
communication_identifier=CommunicationUserIdentifier(
self.identity_client.create_user().properties["id"]
),
role=RoleType.PRESENTER
),
"fred" : RoomParticipant(
communication_identifier=CommunicationUserIdentifier(
self.identity_client.create_user().properties["id"]
),
role=RoleType.CONSUMER
),
"chris" : RoomParticipant(
communication_identifier=CommunicationUserIdentifier(
self.identity_client.create_user().properties["id"]
),
role=RoleType.ATTENDEE
)
}
self.rooms_client = RoomsClient.from_connection_string(
self.connection_str,
http_logging_policy=get_http_logging_policy()
)
def tearDown(self):
super(RoomsClientTest, self).tearDown()
# delete created users and chat threads
if not self.is_playback():
for user in self.users.values():
self.identity_client.delete_user(user.communication_identifier)
def test_create_room_no_attributes(self):
response = self.rooms_client.create_room()
# delete created room
self.rooms_client.delete_room(room_id=response.id)
@pytest.mark.live_test_only
def test_create_room_only_validFrom(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
response = self.rooms_client.create_room(valid_from=valid_from)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
# verify room is valid for 180 days
valid_until = datetime.utcnow() + timedelta(days=180)
self.assertEqual(valid_until.date(), response.valid_until.date())
@pytest.mark.live_test_only
def test_create_room_only_validUntil(self):
# room attributes
valid_until = datetime.now() + timedelta(weeks=3)
response = self.rooms_client.create_room(valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
self.verify_successful_room_response(response=response, valid_until=valid_until)
@pytest.mark.live_test_only
def test_create_room_only_participants(self):
# add john and chris to room
participants = [
self.users["john"],
self.users["chris"]
]
response = self.rooms_client.create_room(participants=participants)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
self.verify_successful_room_response(response=response, participants=participants)
def test_create_room_validUntil_7Months(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=29)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.create_room(valid_from=valid_from, valid_until=valid_until)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_create_room_validFrom_7Months(self):
# room attributes
valid_from = datetime.now() + timedelta(weeks=29)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.create_room(valid_from=valid_from)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
@pytest.mark.live_test_only
def test_create_room_correct_timerange(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=4)
response = self.rooms_client.create_room(valid_from=valid_from, valid_until=valid_until)
self.verify_successful_room_response(response=response, valid_from=valid_from, valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
def test_create_room_incorrectMri(self):
# room attributes
participants = [
RoomParticipant(
communication_identifier=CommunicationUserIdentifier("wrong_mri"),
role='Attendee'),
self.users["john"]
]
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.create_room(participants=participants)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
@pytest.mark.live_test_only
def test_create_room_open_room(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=4)
room_join_policy = RoomJoinPolicy.COMMUNICATION_SERVICE_USERS
response = self.rooms_client.create_room(valid_from=valid_from, valid_until=valid_until, room_join_policy=room_join_policy)
self.verify_successful_room_response(response=response, valid_from=valid_from, valid_until=valid_until, room_join_policy=room_join_policy)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
@pytest.mark.live_test_only
def test_create_room_all_attributes(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=4)
participants = [
self.users["john"]
]
response = self.rooms_client.create_room(valid_from=valid_from, valid_until=valid_until, participants=participants)
# delete created room
self.rooms_client.delete_room(room_id=response.id)
self.verify_successful_room_response(
response=response, valid_from=valid_from, valid_until=valid_until, participants=participants)
@pytest.mark.live_test_only
def test_get_room(self):
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=2)
# add john to room
participants = [
self.users["john"]
]
# create a room first
create_response = self.rooms_client.create_room(valid_from=valid_from, valid_until=valid_until, participants=participants)
get_response = self.rooms_client.get_room(room_id=create_response.id)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
self.verify_successful_room_response(
response=get_response, valid_from=valid_from, valid_until=valid_until, room_id=create_response.id, participants=participants)
def test_get_invalid_room(self):
# random room id
with pytest.raises(HttpResponseError) as ex:
create_response = self.rooms_client.create_room()
self.rooms_client.delete_room(room_id=create_response.id)
self.rooms_client.get_room(room_id=create_response.id)
# Resource not found
assert str(ex.value.status_code) == "404"
assert ex.value.message is not None
self.rooms_client.delete_room(room_id=create_response.id)
def test_update_room_only_ValidFrom(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_from = datetime.now() + timedelta(weeks=2)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_only_ValidUntil(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_until = datetime.now() + timedelta(weeks=2)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_ValidFrom_7Months(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_from = datetime.now() + timedelta(weeks=29)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_ValidUntil_7Months(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_until = datetime.now() + timedelta(weeks=29)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_incorrect_timerange(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = datetime.now() + timedelta(weeks=29)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from, valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
@pytest.mark.live_test_only
def test_update_room_correct_timerange(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = datetime.now() + timedelta(weeks=4)
update_response = self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from, valid_until=valid_until)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
self.verify_successful_room_response(
response=update_response, valid_from=valid_from, valid_until=valid_until, room_id=create_response.id)
@pytest.mark.live_test_only
def test_update_room_change_open_room_in_past(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# room attributes
valid_from = datetime.now() + timedelta(days=-1)
valid_until = valid_from + timedelta(weeks=4)
room_join_policy = RoomJoinPolicy.COMMUNICATION_SERVICE_USERS
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from, valid_until=valid_until, room_join_policy=room_join_policy)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
@pytest.mark.live_test_only
def test_update_room_change_open_room_in_future(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# room attributes
valid_from = datetime.now() + timedelta(days=3)
valid_until = valid_from + timedelta(weeks=4)
room_join_policy = RoomJoinPolicy.COMMUNICATION_SERVICE_USERS
response = self.rooms_client.update_room(room_id=create_response.id, valid_from=valid_from, valid_until=valid_until, room_join_policy=room_join_policy)
self.verify_successful_room_response(response=response, valid_from=valid_from, valid_until=valid_until, room_join_policy=room_join_policy)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
@pytest.mark.live_test_only
def test_add_participants(self):
# room with no attributes
create_response = self.rooms_client.create_room()
# update room attributes
participants = [
self.users["john"]
]
self.rooms_client.add_participants(room_id=create_response.id, participants=participants)
update_response = self.rooms_client.get_participants(room_id=create_response.id)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
self.assertListEqual(participants, update_response.participants)
@pytest.mark.live_test_only
def test_update_participants(self):
# add john and chris to room
create_participants = [
self.users["john"],
self.users["chris"]
]
create_response = self.rooms_client.create_room(participants=create_participants)
# participants to be updated
self.users["john"].role = RoleType.CONSUMER
self.users["chris"].role = RoleType.CONSUMER
update_participants = [
self.users["john"],
self.users["chris"]
]
self.rooms_client.update_participants(room_id=create_response.id, participants=update_participants)
update_response = self.rooms_client.get_participants(room_id=create_response.id)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
self.assertListEqual(update_participants, update_response.participants)
@pytest.mark.live_test_only
def test_remove_participants(self):
# add john and chris to room
create_participants = [
self.users["john"],
self.users["chris"]
]
create_response = self.rooms_client.create_room(participants=create_participants)
# participants to be removed
removed_participants = [
self.users["john"].communication_identifier
]
self.rooms_client.remove_participants(room_id=create_response.id, communication_identifiers=removed_participants)
update_response = self.rooms_client.get_participants(room_id=create_response.id)
# delete created room
self.rooms_client.delete_room(room_id=create_response.id)
participants = [
self.users["chris"]
]
self.assertListEqual(participants, update_response.participants)
def test_add_participants_incorrectMri(self):
# room with no attributes
create_response = self.rooms_client.create_room()
participants = [
RoomParticipant(
communication_identifier=CommunicationUserIdentifier("wrong_mri"),
role=RoleType.ATTENDEE),
self.users["john"]
]
# update room attributes
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.add_participants(room_id=create_response.id, participants=participants)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_wrongRoleName(self):
# room with no attributes
create_response = self.rooms_client.create_room()
participants = [
RoomParticipant(
communication_identifier=self.users["john"].communication_identifier,
role='Kafka'),
]
# update room attributes
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.add_participants(room_id=create_response.id, participants=participants)
assert str(ex.value.status_code) == "400"
assert ex.value.message is not None
def test_update_room_incorrect_roomId(self):
# try to update room with random room_id
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=78469124725336262)
# assert error is Resource not found
assert str(ex.value.status_code) == "404"
assert ex.value.message is not None
def test_update_room_deleted_room(self):
# create a room -> delete it -> try to update it
create_response = self.rooms_client.create_room()
# delete the room
self.rooms_client.delete_room(room_id=create_response.id)
with pytest.raises(HttpResponseError) as ex:
self.rooms_client.update_room(room_id=create_response.id)
# assert error is Resource not found
assert str(ex.value.status_code) == "404"
assert ex.value.message is not None
def verify_successful_room_response(self, response, valid_from=None, valid_until=None, room_id=None, participants=None, room_join_policy=None):
if room_id is not None:
self.assertEqual(room_id, response.id)
if valid_from is not None:
self.assertEqual(valid_from.replace(tzinfo=None), response.valid_from.replace(tzinfo=None))
if valid_until is not None:
self.assertEqual(valid_until.replace(tzinfo=None), response.valid_until.replace(tzinfo=None))
if participants is not None:
self.assertListEqual(participants, response.participants)
if room_join_policy is not None:
self.assertEqual(room_join_policy, response.room_join_policy)
|