Облачная функция Я тестирую вызовы abort(410)
и хочу проверить, получен ли правильный код ошибки HTTP в моих модульных тестах.
При простом выполнении запроса я получаю следующую ошибку:
/usr/lib/python3.7/site-packages/werkzeug/exceptions.py:707: in abort
return _aborter(status, *args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <werkzeug.exceptions.Aborter object at 0x7fd474096b00>, code = 410, args = (), kwargs = {}
def __call__(self, code, *args, **kwargs):
if not args and not kwargs and not isinstance(code, integer_types):
raise HTTPException(response=code)
if code not in self.mapping:
raise LookupError('no exception for %r' % code)
> raise self.mapping[code](*args, **kwargs)
E werkzeug.exceptions.Gone: 410 Gone: The requested URL is no longer available on this server and there is no forwarding address. If you followed a link from a foreign page, please contact the author of this page.
/usr/lib/python3.7/site-packages/werkzeug/exceptions.py:687: Gone
Вот мой код для создания пробного запроса:
from unittest.mock import Mock
from cloud_functions import main
data = { ... }
headers = { ... }
req = Mock(get_json=Mock(return_value=data), args=data, headers=headers)
resp = main.my_function(req)