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
|
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
import functools
import os
from typing import Callable, Any
from devtools_testutils import is_live, is_live_and_not_recording, trim_kwargs_from_test_function
from azure.communication.jobrouter._shared.utils import parse_connection_str
class RouterPreparers(object):
@staticmethod
def before_test_execute(
method_name, # type: str
**kwargs # type: Any
):
def __decorator__(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
trim_kwargs_from_test_function(func, kwargs)
first_method = getattr(self, method_name)
first_method()
return func(self, *args, **kwargs)
return wrapper
return __decorator__
@staticmethod
def after_test_execute(
method_name, # type: str
**kwargs # type: Any
):
def __decorator__(func):
@functools.wraps(func)
def wrapper(self, *args, **kwargs):
trim_kwargs_from_test_function(func, kwargs)
first_method = getattr(self, method_name)
try:
return func(self, *args, **kwargs)
except Exception as e:
raise e
finally:
try:
first_method()
except:
print("") # Consume exceptions
return wrapper
return __decorator__
@staticmethod
def router_test_decorator(func: Callable[[], object], **kwargs: Any):
def wrapper(self, *args, **kwargs):
if is_live() or is_live_and_not_recording():
self.connection_string = os.getenv("COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING")
endpoint, _ = parse_connection_str(self.connection_string)
self.resource_name = endpoint.split(".")[0]
else:
self.connection_string = "endpoint=https://sanitized.communication.azure.net/;accesskey=fake==="
self.resource_name = "sanitized"
func(self, *args, **kwargs)
return wrapper
|