Best Python code snippet using pytest-mock
test_decorator_wrappers.py
Source:test_decorator_wrappers.py
...57 assert fm.is_called["exc_handler"]58 assert isinstance(dec_data.func_info.exception, ZeroDivisionError)59 assert dec_data.func_info.result is None60 assert dec_data.func_info.result == result61def test_async_wrapper(dec_data: DecData):62 fm = FakeManager()63 result = asyncio.run(async_wrapper(64 async_func, dec_data, fm, None, None, "exc_handler"65 ))66 assert not fm.is_called["before_handler"]67 assert not fm.is_called["after_handler"]68 assert not fm.is_called["exc_handler"]69 assert dec_data.func_info.exception is None70 assert dec_data.func_info.result == RESULT_FUNC71 assert dec_data.func_info.result == result72 fm.clear_handler_calls()73 result = asyncio.run(async_wrapper(74 async_func, dec_data, fm,75 "before_handler", "after_handler", "exc_handler"76 ))77 assert fm.is_called["before_handler"]78 assert fm.is_called["after_handler"]79 assert not fm.is_called["exc_handler"]80 assert dec_data.func_info.exception is None81 assert dec_data.func_info.result == RESULT_FUNC82 assert dec_data.func_info.result == result83 fm.clear_handler_calls()84 result = asyncio.run(async_wrapper(85 async_func_with_exception, dec_data, fm, None, None, "exc_handler"86 ))87 assert not fm.is_called["before_handler"]88 assert not fm.is_called["after_handler"]89 assert fm.is_called["exc_handler"]90 assert isinstance(dec_data.func_info.exception, ZeroDivisionError)91 assert dec_data.func_info.result is None92 assert dec_data.func_info.result == result93def test_dec_args0_is_func(func):94 assert dec_args0_is_func(dec_args=(func, ))95 assert not dec_args0_is_func(dec_args=tuple())...
jaeger.py
Source:jaeger.py
...23 span_name,24 child_of=opentracing.tracer.active_span,25 )26 @functools.wraps(func)27 async def async_wrapper(*args, **kwargs):28 with _normal_func() as scope:29 for tag_key, tag_value in tags.items():30 scope.span.set_tag(tag_key, tag_value)31 return await func(*args, **kwargs)32 @functools.wraps(func)33 def sync_wrapper(*args, **kwargs):34 with _normal_func() as scope:35 for tag_key, tag_value in tags.items():36 scope.span.set_tag(tag_key, tag_value)37 return func(*args, **kwargs)38 if not inspect.iscoroutinefunction(func):39 return sync_wrapper40 return async_wrapper41 return inner
registration.py
Source:registration.py
...20registered_mutations = {}21def registerMutation(name):22 def decorator(f):23 @wraps(f)24 async def async_wrapper(*args, **kwargs):25 try:26 result = await f(*args, **kwargs)27 return {"success": True, "result": result}28 except PMException as e:29 return {"success": False, "error": str(e)}30 @wraps(f)31 def wrapper(*args, **kwargs):32 try:33 result = f(*args, **kwargs)34 return {"success": True, "result": result}35 except PMException as e:36 return {"success": False, "error": str(e)}37 w = async_wrapper if asyncio.iscoroutinefunction(f) else wrapper38 registered_mutations[name] = w...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!